Work in progress on subgroups. Made user list population more robust.
[timetracker.git] / time.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 import('form.Form');
31 import('ttUserHelper');
32 import('ttGroupHelper');
33 import('ttTeamHelper');
34 import('ttClientHelper');
35 import('ttTimeHelper');
36 import('DateAndTime');
37
38 // Access checks.
39 if (!(ttAccessAllowed('track_own_time') || ttAccessAllowed('track_time'))) {
40   header('Location: access_denied.php');
41   exit();
42 }
43 if ($user->behalf_id && (!$user->can('track_time') || !$user->checkBehalfId())) {
44   header('Location: access_denied.php'); // Trying on behalf, but no right or wrong user.
45   exit();
46 }
47 if (!$user->behalf_id && !$user->can('track_own_time') && !$user->adjustBehalfId()) {
48   header('Location: access_denied.php'); // Trying as self, but no right for self, and noone to work on behalf.
49   exit();
50 }
51 // End of access checks.
52
53 // Initialize and store date in session.
54 $cl_date = $request->getParameter('date', @$_SESSION['date']);
55 $selected_date = new DateAndTime(DB_DATEFORMAT, $cl_date);
56 if($selected_date->isError())
57   $selected_date = new DateAndTime(DB_DATEFORMAT);
58 if(!$cl_date)
59   $cl_date = $selected_date->toString(DB_DATEFORMAT);
60 $_SESSION['date'] = $cl_date;
61
62 // Use custom fields plugin if it is enabled.
63 if ($user->isPluginEnabled('cf')) {
64   require_once('plugins/CustomFields.class.php');
65   $custom_fields = new CustomFields($user->group_id);
66   $smarty->assign('custom_fields', $custom_fields);
67 }
68
69 if ($user->isPluginEnabled('mq')){
70   require_once('plugins/MonthlyQuota.class.php');
71   $quota = new MonthlyQuota();
72   $month_quota_minutes = $quota->get($selected_date->mYear, $selected_date->mMonth);
73   $month_total = ttTimeHelper::getTimeForMonth($user->getActiveUser(), $selected_date);
74   $minutes_left = $month_quota_minutes - ttTimeHelper::toMinutes($month_total);
75   
76   $smarty->assign('month_total', $month_total);
77   $smarty->assign('over_quota', $minutes_left < 0);
78   $smarty->assign('quota_remaining', ttTimeHelper::toAbsDuration($minutes_left));
79 }
80
81 // Initialize variables.
82 $cl_start = trim($request->getParameter('start'));
83 $cl_finish = trim($request->getParameter('finish'));
84 $cl_duration = trim($request->getParameter('duration'));
85 $cl_note = trim($request->getParameter('note'));
86 // Custom field.
87 $cl_cf_1 = trim($request->getParameter('cf_1', ($request->isPost() ? null : @$_SESSION['cf_1'])));
88 $_SESSION['cf_1'] = $cl_cf_1;
89 $cl_billable = 1;
90 if ($user->isPluginEnabled('iv')) {
91   if ($request->isPost()) {
92     $cl_billable = $request->getParameter('billable');
93     $_SESSION['billable'] = (int) $cl_billable;
94   } else
95     if (isset($_SESSION['billable']))
96       $cl_billable = $_SESSION['billable'];
97 }
98 $on_behalf_id = $request->getParameter('onBehalfUser', (isset($_SESSION['behalf_id'])? $_SESSION['behalf_id'] : $user->id));
99 $on_behalf_group_id = $request->getParameter('onBehalfGroup', (isset($_SESSION['behalf_group_id'])? $_SESSION['behalf_group_id'] : $user->group_id));
100 $cl_client = $request->getParameter('client', ($request->isPost() ? null : @$_SESSION['client']));
101 $_SESSION['client'] = $cl_client;
102 $cl_project = $request->getParameter('project', ($request->isPost() ? null : @$_SESSION['project']));
103 $_SESSION['project'] = $cl_project;
104 $cl_task = $request->getParameter('task', ($request->isPost() ? null : @$_SESSION['task']));
105 $_SESSION['task'] = $cl_task;
106
107 // Elements of timeRecordForm.
108 $form = new Form('timeRecordForm');
109
110 if (defined('SUBGROUP_DEBUG') && isTrue(SUBGROUP_DEBUG)) {
111 if ($user->can('manage_subgroups')) {
112   $groups = $user->getGroups();
113   if (count($groups) > 1) {
114     $form->addInput(array('type'=>'combobox',
115       'onchange'=>'this.form.submit();',
116       'name'=>'onBehalfGroup',
117       'style'=>'width: 250px;',
118       'value'=>$on_behalf_group_id,
119       'data'=>$groups,
120       'datakeys'=>array('id','name')));
121     $smarty->assign('on_behalf_group_control', 1);
122   }
123 }
124 } // SUBGROUP_DEBUG
125
126 if ($user->can('track_time')) {
127   $rank = $user->getMaxRankForGroup($on_behalf_group_id);
128   if ($user->can('track_own_time'))
129     $options = array('group_id'=>$on_behalf_group_id,'status'=>ACTIVE,'max_rank'=>$rank,'include_self'=>true,'self_first'=>true);
130   else
131     $options = array('group_id'=>$on_behalf_group_id,'status'=>ACTIVE,'max_rank'=>$rank);
132   $user_list = $user->getUsers($options);
133   if (count($user_list) >= 1) {
134     $form->addInput(array('type'=>'combobox',
135       'onchange'=>'this.form.submit();',
136       'name'=>'onBehalfUser',
137       'style'=>'width: 250px;',
138       'value'=>$on_behalf_id,
139       'data'=>$user_list,
140       'datakeys'=>array('id','name')));
141     $smarty->assign('on_behalf_control', 1);
142   }
143 }
144
145 // Dropdown for clients in MODE_TIME. Use all active clients.
146 if (MODE_TIME == $user->tracking_mode && $user->isPluginEnabled('cl')) {
147   $active_clients = ttTeamHelper::getActiveClients($user->group_id, true);
148   $form->addInput(array('type'=>'combobox',
149     'onchange'=>'fillProjectDropdown(this.value);',
150     'name'=>'client',
151     'style'=>'width: 250px;',
152     'value'=>$cl_client,
153     'data'=>$active_clients,
154     'datakeys'=>array('id', 'name'),
155     'empty'=>array(''=>$i18n->get('dropdown.select'))));
156   // Note: in other modes the client list is filtered to relevant clients only. See below.
157 }
158
159 if (MODE_PROJECTS == $user->tracking_mode || MODE_PROJECTS_AND_TASKS == $user->tracking_mode) {
160   // Dropdown for projects assigned to user.
161   $project_list = $user->getAssignedProjects();
162   $form->addInput(array('type'=>'combobox',
163     'onchange'=>'fillTaskDropdown(this.value);',
164     'name'=>'project',
165     'style'=>'width: 250px;',
166     'value'=>$cl_project,
167     'data'=>$project_list,
168     'datakeys'=>array('id','name'),
169     'empty'=>array(''=>$i18n->get('dropdown.select'))));
170
171   // Dropdown for clients if the clients plugin is enabled.
172   if ($user->isPluginEnabled('cl')) {
173     $active_clients = ttTeamHelper::getActiveClients($user->group_id, true);
174     // We need an array of assigned project ids to do some trimming.
175     foreach($project_list as $project)
176       $projects_assigned_to_user[] = $project['id'];
177
178     // Build a client list out of active clients. Use only clients that are relevant to user.
179     // Also trim their associated project list to only assigned projects (to user).
180     foreach($active_clients as $client) {
181       $projects_assigned_to_client = explode(',', $client['projects']);
182       if (is_array($projects_assigned_to_client) && is_array($projects_assigned_to_user))
183         $intersection = array_intersect($projects_assigned_to_client, $projects_assigned_to_user);
184       if ($intersection) {
185         $client['projects'] = implode(',', $intersection);
186         $client_list[] = $client;
187       }
188     }
189     $form->addInput(array('type'=>'combobox',
190       'onchange'=>'fillProjectDropdown(this.value);',
191       'name'=>'client',
192       'style'=>'width: 250px;',
193       'value'=>$cl_client,
194       'data'=>$client_list,
195       'datakeys'=>array('id', 'name'),
196       'empty'=>array(''=>$i18n->get('dropdown.select'))));
197   }
198 }
199
200 if (MODE_PROJECTS_AND_TASKS == $user->tracking_mode) {
201   $task_list = ttTeamHelper::getActiveTasks($user->group_id);
202   $form->addInput(array('type'=>'combobox',
203     'name'=>'task',
204     'style'=>'width: 250px;',
205     'value'=>$cl_task,
206     'data'=>$task_list,
207     'datakeys'=>array('id','name'),
208     'empty'=>array(''=>$i18n->get('dropdown.select'))));
209 }
210
211 // Add other controls.
212 if ((TYPE_START_FINISH == $user->record_type) || (TYPE_ALL == $user->record_type)) {
213   $form->addInput(array('type'=>'text','name'=>'start','value'=>$cl_start,'onchange'=>"formDisable('start');"));
214   $form->addInput(array('type'=>'text','name'=>'finish','value'=>$cl_finish,'onchange'=>"formDisable('finish');"));
215   if ($user->punch_mode && !$user->canOverridePunchMode()) {
216     // Make the start and finish fields read-only.
217     $form->getElement('start')->setEnabled(false);
218     $form->getElement('finish')->setEnabled(false);
219   }
220 }
221 if ((TYPE_DURATION == $user->record_type) || (TYPE_ALL == $user->record_type))
222   $form->addInput(array('type'=>'text','name'=>'duration','value'=>$cl_duration,'onchange'=>"formDisable('duration');"));
223 if (!defined('NOTE_INPUT_HEIGHT'))
224   define('NOTE_INPUT_HEIGHT', 40);
225 $form->addInput(array('type'=>'textarea','name'=>'note','style'=>'width: 600px; height:'.NOTE_INPUT_HEIGHT.'px;','value'=>$cl_note));
226 $form->addInput(array('type'=>'calendar','name'=>'date','value'=>$cl_date)); // calendar
227 if ($user->isPluginEnabled('iv'))
228   $form->addInput(array('type'=>'checkbox','name'=>'billable','value'=>$cl_billable));
229 $form->addInput(array('type'=>'hidden','name'=>'browser_today','value'=>'')); // User current date, which gets filled in on btn_submit click.
230 $form->addInput(array('type'=>'submit','name'=>'btn_submit','onclick'=>'browser_today.value=get_date()','value'=>$i18n->get('button.submit')));
231
232 // If we have custom fields - add controls for them.
233 if ($custom_fields && $custom_fields->fields[0]) {
234   // Only one custom field is supported at this time.
235   if ($custom_fields->fields[0]['type'] == CustomFields::TYPE_TEXT) {
236     $form->addInput(array('type'=>'text','name'=>'cf_1','value'=>$cl_cf_1));
237   } elseif ($custom_fields->fields[0]['type'] == CustomFields::TYPE_DROPDOWN) {
238     $form->addInput(array('type'=>'combobox','name'=>'cf_1',
239       'style'=>'width: 250px;',
240       'value'=>$cl_cf_1,
241       'data'=>$custom_fields->options,
242       'empty'=>array(''=>$i18n->get('dropdown.select'))));
243   }
244 }
245
246 // Submit.
247 if ($request->isPost()) {
248   if ($request->getParameter('btn_submit')) {
249
250     // Validate user input.
251     if ($user->isPluginEnabled('cl') && $user->isPluginEnabled('cm') && !$cl_client)
252       $err->add($i18n->get('error.client'));
253     if ($custom_fields) {
254       if (!ttValidString($cl_cf_1, !$custom_fields->fields[0]['required'])) $err->add($i18n->get('error.field'), $custom_fields->fields[0]['label']);
255     }
256     if (MODE_PROJECTS == $user->tracking_mode || MODE_PROJECTS_AND_TASKS == $user->tracking_mode) {
257       if (!$cl_project) $err->add($i18n->get('error.project'));
258     }
259     if (MODE_PROJECTS_AND_TASKS == $user->tracking_mode && $user->task_required) {
260       if (!$cl_task) $err->add($i18n->get('error.task'));
261     }
262     if (strlen($cl_duration) == 0) {
263       if ($cl_start || $cl_finish) {
264         if (!ttTimeHelper::isValidTime($cl_start))
265           $err->add($i18n->get('error.field'), $i18n->get('label.start'));
266         if ($cl_finish) {
267           if (!ttTimeHelper::isValidTime($cl_finish))
268             $err->add($i18n->get('error.field'), $i18n->get('label.finish'));
269           if (!ttTimeHelper::isValidInterval($cl_start, $cl_finish))
270             $err->add($i18n->get('error.interval'), $i18n->get('label.finish'), $i18n->get('label.start'));
271         }
272       } else {
273         if ((TYPE_START_FINISH == $user->record_type) || (TYPE_ALL == $user->record_type)) {
274           $err->add($i18n->get('error.empty'), $i18n->get('label.start'));
275           $err->add($i18n->get('error.empty'), $i18n->get('label.finish'));
276         }
277         if ((TYPE_DURATION == $user->record_type) || (TYPE_ALL == $user->record_type))
278           $err->add($i18n->get('error.empty'), $i18n->get('label.duration'));
279       }
280     } else {
281       if (false === ttTimeHelper::postedDurationToMinutes($cl_duration))
282         $err->add($i18n->get('error.field'), $i18n->get('label.duration'));
283     }
284     if (!ttValidString($cl_note, true)) $err->add($i18n->get('error.field'), $i18n->get('label.note'));
285     // Finished validating user input.
286
287     // Prohibit creating entries in future.
288     if (!$user->future_entries) {
289       $browser_today = new DateAndTime(DB_DATEFORMAT, $request->getParameter('browser_today', null));
290       if ($selected_date->after($browser_today))
291         $err->add($i18n->get('error.future_date'));
292     }
293
294     // Prohibit creating entries in locked range.
295     if ($user->isDateLocked($selected_date))
296       $err->add($i18n->get('error.range_locked'));
297
298     // Prohibit creating another uncompleted record.
299     if ($err->no()) {
300       if (($not_completed_rec = ttTimeHelper::getUncompleted($user->getActiveUser())) && (($cl_finish == '') && ($cl_duration == '')))
301         $err->add($i18n->get('error.uncompleted_exists')." <a href = 'time_edit.php?id=".$not_completed_rec['id']."'>".$i18n->get('error.goto_uncompleted')."</a>");
302     }
303
304     // Prohibit creating an overlapping record.
305     if ($err->no()) {
306       if (ttTimeHelper::overlaps($user->getActiveUser(), $cl_date, $cl_start, $cl_finish))
307         $err->add($i18n->get('error.overlap'));
308     }
309
310     // Insert record.
311     if ($err->no()) {
312       $id = ttTimeHelper::insert(array(
313         'date' => $cl_date,
314         'user_id' => $user->getActiveUser(),
315         'group_id' => $user->getActiveGroup(),
316         'client' => $cl_client,
317         'project' => $cl_project,
318         'task' => $cl_task,
319         'start' => $cl_start,
320         'finish' => $cl_finish,
321         'duration' => $cl_duration,
322         'note' => $cl_note,
323         'billable' => $cl_billable));
324
325       // Insert a custom field if we have it.
326       $result = true;
327       if ($id && $custom_fields && $cl_cf_1) {
328         if ($custom_fields->fields[0]['type'] == CustomFields::TYPE_TEXT)
329           $result = $custom_fields->insert($id, $custom_fields->fields[0]['id'], null, $cl_cf_1);
330         elseif ($custom_fields->fields[0]['type'] == CustomFields::TYPE_DROPDOWN)
331           $result = $custom_fields->insert($id, $custom_fields->fields[0]['id'], $cl_cf_1, null);
332       }
333       if ($id && $result) {
334         header('Location: time.php');
335         exit();
336       }
337       $err->add($i18n->get('error.db'));
338     }
339   } elseif ($request->getParameter('btn_stop')) {
340     // Stop button pressed to finish an uncompleted record.
341     $record_id = $request->getParameter('record_id');
342     $record = ttTimeHelper::getRecord($record_id, $user->getActiveUser());
343     $browser_date = $request->getParameter('browser_date');
344     $browser_time = $request->getParameter('browser_time');
345
346     // Can we complete this record?
347     if ($record['date'] == $browser_date                                // closing today's record
348       && ttTimeHelper::isValidInterval($record['start'], $browser_time) // finish time is greater than start time
349       && !ttTimeHelper::overlaps($user->getActiveUser(), $browser_date, $record['start'], $browser_time)) { // no overlap
350       $res = ttTimeHelper::update(array(
351           'id'=>$record['id'],
352           'date'=>$record['date'],
353           'user_id'=>$user->getActiveUser(),
354           'client'=>$record['client_id'],
355           'project'=>$record['project_id'],
356           'task'=>$record['task_id'],
357           'start'=>$record['start'],
358           'finish'=>$browser_time,
359           'note'=>$record['comment'],
360           'billable'=>$record['billable']));
361       if (!$res)
362         $err->add($i18n->get('error.db'));
363     } else {
364       // Cannot complete, redirect for manual edit.
365       header('Location: time_edit.php?id='.$record_id);
366       exit();
367     }
368   }
369   elseif ($request->getParameter('onBehalfGroup')) {
370     if($user->can('manage_subgroups')) {
371       unset($_SESSION['behalf_group_id']);
372       unset($_SESSION['behalf_group_name']);
373
374       if($on_behalf_group_id != $user->group_id) {
375         $_SESSION['behalf_group_id'] = $on_behalf_group_id;
376         $_SESSION['behalf_group_name'] = ttGroupHelper::getGroupName($on_behalf_group_id);
377       }
378       header('Location: time.php');
379       exit();
380     }
381   }
382   elseif ($request->getParameter('onBehalfUser')) {
383     if($user->can('track_time')) {
384       unset($_SESSION['behalf_id']);
385       unset($_SESSION['behalf_name']);
386
387       if($on_behalf_id != $user->id) {
388         $_SESSION['behalf_id'] = $on_behalf_id;
389         $_SESSION['behalf_name'] = ttUserHelper::getUserName($on_behalf_id);
390       }
391       header('Location: time.php');
392       exit();
393     }
394   }
395 } // isPost
396
397 $week_total = ttTimeHelper::getTimeForWeek($user->getActiveUser(), $selected_date);
398
399 $smarty->assign('selected_date', $selected_date);
400 $smarty->assign('week_total', $week_total);
401 $smarty->assign('day_total', ttTimeHelper::getTimeForDay($user->getActiveUser(), $cl_date));
402 $smarty->assign('time_records', ttTimeHelper::getRecords($user->getActiveUser(), $cl_date));
403 $smarty->assign('client_list', $client_list);
404 $smarty->assign('project_list', $project_list);
405 $smarty->assign('task_list', $task_list);
406 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
407 $smarty->assign('onload', 'onLoad="fillDropdowns()"');
408 $smarty->assign('timestring', $selected_date->toString($user->date_format));
409 $smarty->assign('title', $i18n->get('title.time'));
410 $smarty->assign('content_page_name', 'time.tpl');
411 $smarty->display('index.tpl');