Refactoring. Renamed team_id fields to become group_id.
[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('ttTeamHelper');
33 import('ttTimeHelper');
34
35 // Access checks.
36 if (!ttAccessAllowed('manage_advanced_settings')) {
37   header('Location: access_denied.php');
38   exit();
39 }
40 if (!$user->isPluginEnabled('mq')) {
41   header('Location: feature_disabled.php');
42   exit();
43 }
44
45 // Start and end fallback values for the Year dropdown.
46 $yearStart = 2015;
47 $yearEnd = 2030;
48
49 // If values are defined in config - use them.
50 if (defined('MONTHLY_QUOTA_YEAR_START')){
51   $yearStart = (int)MONTHLY_QUOTA_YEAR_START;
52 }
53 if (defined('MONTHLY_QUOTA_YEAR_END')){
54   $yearEnd = (int)MONTHLY_QUOTA_YEAR_END;
55 }
56
57 // Create values for the Year dropdown.
58 $years = array();
59 for ($i = $yearStart; $i <= $yearEnd; $i++) {
60   array_push($years, array('id'=>$i,'name'=>$i));
61 }
62
63 // Get selected year from url parameter.
64 $selectedYear = $request->getParameter('year');
65 if (!$selectedYear or !ttValidInteger($selectedYear)){
66   $selectedYear = date('Y');
67 } else {
68   $selectedYear = (int) $selectedYear;
69 }
70
71 // Months are zero indexed.
72 $months = $i18n->monthNames;
73
74 $quota = new MonthlyQuota();
75
76 if ($request->isPost()){
77   // Validate user input.
78   if (false === ttTimeHelper::postedDurationToMinutes($request->getParameter('workdayHours')))
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     if (false === ttTimeHelper::postedDurationToMinutes($val, 44640/*24*60*31*/))
84       $err->add($i18n->get('error.field'), $months[$i]);
85   }
86   // Finished validating user input.
87
88   if ($err->no()) {
89
90     // Handle workday hours.
91     $workday_minutes = ttTimeHelper::postedDurationToMinutes($request->getParameter('workdayHours'));
92     if ($workday_minutes != $user->workday_minutes) {
93       if (!ttTeamHelper::update($user->group_id, array('name'=>$user->team,'workday_minutes'=>$workday_minutes)))
94         $err->add($i18n->get('error.db'));
95     }
96
97     // Handle monthly quotas for a selected year.
98     $selectedYear = (int) $request->getParameter('year');
99     for ($i = 0; $i < count($months); $i++){
100       $quota_in_minutes = ttTimeHelper::postedDurationToMinutes($request->getParameter($months[$i]), 44640/*24*60*31*/);
101       if (!$quota->update($selectedYear, $i+1, $quota_in_minutes))
102         $err->add($i18n->get('error.db'));
103     }
104
105     if ($err->no()) {
106       // Redisplay the form.
107       header('Location: quotas.php?year='.$selectedYear);
108       exit();
109     }
110   }
111 }
112
113 // Get monthly quotas for the entire year.
114 $monthsData = $quota->get($selectedYear);
115 $workdayHours = ttTimeHelper::toAbsDuration($user->workday_minutes, true);
116
117 $form = new Form('monthlyQuotasForm');
118 $form->addInput(array('type'=>'text', 'name'=>'workdayHours', 'value'=>$workdayHours, 'style'=>'width:60px'));
119 $form->addInput(array('type'=>'combobox','name'=>'year','data'=>$years,'datakeys'=>array('id','name'),'value'=>$selectedYear,'onchange'=>'yearChange(this.value);'));
120 for ($i=0; $i < count($months); $i++) { 
121   $value = "";
122   if (array_key_exists($i+1, $monthsData)){
123     $value = $monthsData[$i+1];
124     $value = ttTimeHelper::toAbsDuration($value, true);
125   }
126   $name = $months[$i];
127   $form->addInput(array('type'=>'text','name'=>$name,'maxlength'=>6,'value'=> $value,'style'=>'width:70px'));
128 }
129
130 $smarty->assign('months', $months);
131 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
132 $smarty->assign('title', $i18n->get('title.monthly_quotas'));
133 $smarty->assign('content_page_name', 'quotas.tpl');
134 $smarty->display('index.tpl');