posaune
[timetracker.git] / quotas.php
1 <?php
2 // +----------------------------------------------------------------------+
3 // | Anuko Time Tracker
4 // +----------------------------------------------------------------------+
5 // | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
6 // +----------------------------------------------------------------------+
7 // | LIBERAL FREEWARE LICENSE: This source code document may be used
8 // | by anyone for any purpose, and freely redistributed alone or in
9 // | combination with other software, provided that the license is obeyed.
10 // |
11 // | There are only two ways to violate the license:
12 // |
13 // | 1. To redistribute this code in source form, with the copyright
14 // |    notice or license removed or altered. (Distributing in compiled
15 // |    forms without embedded copyright notices is permitted).
16 // |
17 // | 2. To redistribute modified versions of this code in *any* form
18 // |    that bears insufficient indications that the modifications are
19 // |    not the work of the original author(s).
20 // |
21 // | This license applies to this document only, not any other software
22 // | that it may be combined with.
23 // |
24 // +----------------------------------------------------------------------+
25 // | Contributors:
26 // | https://www.anuko.com/time_tracker/credits.htm
27 // +----------------------------------------------------------------------+
28
29 require_once('initialize.php');
30 require_once('plugins/MonthlyQuota.class.php');
31 import('form.Form');
32 import('ttTimeHelper');
33
34 // Access checks.
35 if (!ttAccessAllowed('manage_advanced_settings')) {
36   header('Location: access_denied.php');
37   exit();
38 }
39 if (!$user->isPluginEnabled('mq')) {
40   header('Location: feature_disabled.php');
41   exit();
42 }
43
44 // Start and end fallback values for the Year dropdown.
45 $yearStart = 2015;
46 $yearEnd = 2030;
47
48 // If values are defined in config - use them.
49 if (defined('MONTHLY_QUOTA_YEAR_START')){
50   $yearStart = (int)MONTHLY_QUOTA_YEAR_START;
51 }
52 if (defined('MONTHLY_QUOTA_YEAR_END')){
53   $yearEnd = (int)MONTHLY_QUOTA_YEAR_END;
54 }
55
56 // Create values for the Year dropdown.
57 $years = array();
58 for ($i = $yearStart; $i <= $yearEnd; $i++) {
59   array_push($years, array('id'=>$i,'name'=>$i));
60 }
61
62 // Get selected year from url parameter.
63 $selectedYear = $request->getParameter('year');
64 if (!$selectedYear or !ttValidInteger($selectedYear)){
65   $selectedYear = date('Y');
66 } else {
67   $selectedYear = (int) $selectedYear;
68 }
69
70 // Months are zero indexed.
71 $months = $i18n->monthNames;
72
73 $quota = new MonthlyQuota();
74
75 if ($request->isPost()){
76   // Validate user input.
77   $workdayMinutes = ttTimeHelper::postedDurationToMinutes($request->getParameter('workdayHours'));
78   if (false === $workdayMinutes || $workdayMinutes <= 0 )
79     $err->add($i18n->get('error.field'), $i18n->get('form.quota.workday_hours'));
80
81   for ($i = 0; $i < count($months); $i++){
82     $val = $request->getParameter($months[$i]);
83     $monthMinutes = ttTimeHelper::postedDurationToMinutes($val, 44640/*24*60*31*/);
84     if (false === $monthMinutes || $monthMinutes < 0)
85       $err->add($i18n->get('error.field'), $months[$i]);
86   }
87   // Finished validating user input.
88
89   if ($err->no()) {
90
91     // Handle workday hours.
92     $workday_minutes = ttTimeHelper::postedDurationToMinutes($request->getParameter('workdayHours'));
93     if ($workday_minutes != $user->getWorkdayMinutes()) {
94       if (!$user->updateGroup(array('workday_minutes'=>$workday_minutes)))
95         $err->add($i18n->get('error.db'));
96     }
97
98     // Handle monthly quotas for a selected year.
99     $selectedYear = (int) $request->getParameter('year');
100     for ($i = 0; $i < count($months); $i++){
101       $quota_in_minutes = ttTimeHelper::postedDurationToMinutes($request->getParameter($months[$i]), 44640/*24*60*31*/);
102       if (!$quota->update($selectedYear, $i+1, $quota_in_minutes))
103         $err->add($i18n->get('error.db'));
104     }
105
106     if ($err->no()) {
107       // Redisplay the form.
108       header('Location: quotas.php?year='.$selectedYear);
109       exit();
110     }
111   }
112 }
113
114 // Get monthly quotas for the entire year.
115 $monthsData = $quota->get($selectedYear);
116 $workdayHours = ttTimeHelper::toAbsDuration($user->getWorkdayMinutes(), true);
117
118 $form = new Form('monthlyQuotasForm');
119 $form->addInput(array('type'=>'text', 'name'=>'workdayHours', 'value'=>$workdayHours, 'style'=>'width:60px'));
120 $form->addInput(array('type'=>'combobox','name'=>'year','data'=>$years,'datakeys'=>array('id','name'),'value'=>$selectedYear,'onchange'=>'yearChange(this.value);'));
121 for ($i=0; $i < count($months); $i++) { 
122   $value = "";
123   if (array_key_exists($i+1, $monthsData)){
124     $value = $monthsData[$i+1];
125     $value = ttTimeHelper::toAbsDuration($value, true);
126   }
127   $name = $months[$i];
128   $form->addInput(array('type'=>'text','name'=>$name,'maxlength'=>6,'value'=> $value,'style'=>'width:70px'));
129 }
130
131 $smarty->assign('months', $months);
132 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
133 $smarty->assign('title', $i18n->get('title.monthly_quotas'));
134 $smarty->assign('content_page_name', 'quotas.tpl');
135 $smarty->display('index.tpl');