Initial repo created
[timetracker.git] / mobile / 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('ttTeamHelper');
33 import('ttClientHelper');
34 import('ttTimeHelper');
35 import('DateAndTime');
36
37 // Access check.
38 if (!ttAccessCheck(right_data_entry)) {
39   header('Location: access_denied.php');
40   exit();
41 }
42
43 // Initialize and store date in session.
44 $cl_date = $request->getParameter('date', @$_SESSION['date']);
45 $selected_date = new DateAndTime(DB_DATEFORMAT, $cl_date);
46 if($selected_date->isError())
47   $selected_date = new DateAndTime(DB_DATEFORMAT);
48 if(!$cl_date)
49   $cl_date = $selected_date->toString(DB_DATEFORMAT);
50 $_SESSION['date'] = $cl_date;
51   
52 // Determine previous and next dates for simple navigation.
53 $prev_date = date('Y-m-d', strtotime('-1 day', strtotime($cl_date)));
54 $next_date = date('Y-m-d', strtotime('+1 day', strtotime($cl_date)));
55
56 // Use custom fields plugin if it is enabled.
57 if (in_array('cf', explode(',', $user->plugins))) {
58   require_once('../plugins/CustomFields.class.php');
59   $custom_fields = new CustomFields($user->team_id);
60   $smarty->assign('custom_fields', $custom_fields);
61 }
62
63 // Initialize variables.
64 $cl_start = trim($request->getParameter('start'));
65 $cl_finish = trim($request->getParameter('finish'));
66 $cl_duration = trim($request->getParameter('duration'));
67 $cl_note = trim($request->getParameter('note'));
68 // Custom field.
69 $cl_cf_1 = trim($request->getParameter(('cf_1'), ($request->getMethod()=='POST'? null : @$_SESSION['cf_1'])));
70 $_SESSION['cf_1'] = $cl_cf_1;
71 $cl_billable = 1;
72 if (in_array('iv', explode(',', $user->plugins))) {
73   if ($request->getMethod() == 'POST') {
74     $cl_billable = $request->getParameter('billable');
75     $_SESSION['billable'] = (int) $cl_billable;
76   } else 
77     if (isset($_SESSION['billable']))
78       $cl_billable = $_SESSION['billable'];
79 }
80 $cl_client = $request->getParameter('client', ($request->getMethod()=='POST'? null : @$_SESSION['client']));
81 $_SESSION['client'] = $cl_client;
82 $cl_project = $request->getParameter('project', ($request->getMethod()=='POST'? null : @$_SESSION['project']));
83 $_SESSION['project'] = $cl_project;
84 $cl_task = $request->getParameter('task', ($request->getMethod()=='POST'? null : @$_SESSION['task']));
85 $_SESSION['task'] = $cl_task;
86
87 // Elements of timeRecordForm.
88 $form = new Form('timeRecordForm');
89
90 // Dropdown for clients in MODE_TIME. Use all active clients.
91 if (MODE_TIME == $user->tracking_mode && in_array('cl', explode(',', $user->plugins))) {
92     $active_clients = ttTeamHelper::getActiveClients($user->team_id, true);
93     $form->addInput(array('type'=>'combobox',
94       'onchange'=>'fillProjectDropdown(this.value);',
95       'name'=>'client',
96       'style'=>'width: 250px;',
97       'value'=>$cl_client,
98       'data'=>$active_clients,
99       'datakeys'=>array('id', 'name'),
100       'empty'=>array(''=>$i18n->getKey('dropdown.select'))
101     ));
102   // Note: in other modes the client list is filtered to relevant clients only. See below.
103 }
104
105 if (MODE_PROJECTS == $user->tracking_mode || MODE_PROJECTS_AND_TASKS == $user->tracking_mode) {
106   // Dropdown for projects assigned to user.
107   $project_list = $user->getAssignedProjects();
108   $form->addInput(array('type'=>'combobox',
109     'onchange'=>'fillTaskDropdown(this.value);',
110     'name'=>'project',
111     'style'=>'width: 250px;',
112     'value'=>$cl_project,
113     'data'=>$project_list,
114     'datakeys'=>array('id','name'),
115     'empty'=>array(''=>$i18n->getKey('dropdown.select'))
116   ));
117
118   // Dropdown for clients if the clients plugin is enabled.
119   if (in_array('cl', explode(',', $user->plugins))) {
120     $active_clients = ttTeamHelper::getActiveClients($user->team_id, true);
121     // We need an array of assigned project ids to do some trimming. 
122     foreach($project_list as $project)
123       $projects_assigned_to_user[] = $project['id'];
124
125     // Build a client list out of active clients. Use only clients that are relevant to user.
126     // Also trim their associated project list to only assigned projects (to user).
127     foreach($active_clients as $client) {
128           $projects_assigned_to_client = explode(',', $client['projects']);
129           $intersection = array_intersect($projects_assigned_to_client, $projects_assigned_to_user);
130           if ($intersection) {
131             $client['projects'] = implode(',', $intersection);
132             $client_list[] = $client;
133           }
134     }
135     $form->addInput(array('type'=>'combobox',
136       'onchange'=>'fillProjectDropdown(this.value);',
137       'name'=>'client',
138       'style'=>'width: 250px;',
139       'value'=>$cl_client,
140       'data'=>$client_list,
141       'datakeys'=>array('id', 'name'),
142       'empty'=>array(''=>$i18n->getKey('dropdown.select'))
143     ));
144   }
145 }
146
147 if (MODE_PROJECTS_AND_TASKS == $user->tracking_mode) {
148   $task_list = ttTeamHelper::getActiveTasks($user->team_id);
149   $form->addInput(array('type'=>'combobox',
150     'name'=>'task',
151     'style'=>'width: 250px;',
152     'value'=>$cl_task,
153     'data'=>$task_list,
154     'datakeys'=>array('id','name'),
155     'empty'=>array(''=>$i18n->getKey('dropdown.select'))
156   ));
157 }
158 if ((TYPE_START_FINISH == $user->record_type) || (TYPE_ALL == $user->record_type)) {
159   $form->addInput(array('type'=>'text','name'=>'start','value'=>$cl_start,'onchange'=>"formDisable('start');"));
160   $form->addInput(array('type'=>'text','name'=>'finish','value'=>$cl_finish,'onchange'=>"formDisable('finish');"));
161 }
162 if (!$user->canManageTeam() && defined('READONLY_START_FINISH') && isTrue(READONLY_START_FINISH)) {
163   // Make the start and finish fields read-only.
164   $form->getElement('start')->setEnable(false);
165   $form->getElement('finish')->setEnable(false);        
166 }
167 if ((TYPE_DURATION == $user->record_type) || (TYPE_ALL == $user->record_type))
168   $form->addInput(array('type'=>'text','name'=>'duration','value'=>$cl_duration,'onchange'=>"formDisable('duration');"));
169 $form->addInput(array('type'=>'textarea','name'=>'note','style'=>'width: 250px; height: 60px;','value'=>$cl_note));
170 if (in_array('iv', explode(',', $user->plugins)))
171   $form->addInput(array('type'=>'checkbox','name'=>'billable','data'=>1,'value'=>$cl_billable));
172 $form->addInput(array('type'=>'hidden','name'=>'browser_today','value'=>'')); // User current date, which gets filled in on btn_submit click.
173 $form->addInput(array('type'=>'submit','name'=>'btn_submit','onclick'=>'browser_today.value=get_date()','value'=>$i18n->getKey('button.submit')));
174   
175 // If we have custom fields - add controls for them.
176 if ($custom_fields && $custom_fields->fields[0]) {
177   // Only one custom field is supported at this time.
178   if ($custom_fields->fields[0]['type'] == CustomFields::TYPE_TEXT) {
179         $form->addInput(array('type'=>'text','name'=>'cf_1','value'=>$cl_cf_1));
180   } else if ($custom_fields->fields[0]['type'] == CustomFields::TYPE_DROPDOWN) {
181     $form->addInput(array('type'=>'combobox','name'=>'cf_1',
182       'style'=>'width: 250px;',
183       'value'=>$cl_cf_1,
184       'data'=>$custom_fields->options,
185       'empty'=>array(''=>$i18n->getKey('dropdown.select'))
186     ));
187   }
188 }
189
190 // Determine lock date. Time entries earlier than lock date cannot be created or modified. 
191 $lock_interval = $user->lock_interval;
192 $lockdate = 0;
193 if ($lock_interval > 0) {
194   $lockdate = new DateAndTime();
195   $lockdate->decDay($lock_interval);
196 }
197
198 // Submit.
199 if ($request->getMethod() == 'POST') {
200   if ($request->getParameter('btn_submit')) {
201
202     // Validate user input.
203     if (in_array('cl', explode(',', $user->plugins)) && in_array('cm', explode(',', $user->plugins)) && !$cl_client)
204       $errors->add($i18n->getKey('error.client'));
205     if ($custom_fields) {
206       if (!ttValidString($cl_cf_1, !$custom_fields->fields[0]['required'])) $errors->add($i18n->getKey('error.field'), $custom_fields->fields[0]['label']);
207     }
208     if (MODE_PROJECTS == $user->tracking_mode || MODE_PROJECTS_AND_TASKS == $user->tracking_mode) {
209       if (!$cl_project) $errors->add($i18n->getKey('error.project'));
210     }
211     if (MODE_PROJECTS_AND_TASKS == $user->tracking_mode) {
212       if (!$cl_task) $errors->add($i18n->getKey('error.task'));
213     }
214     if (!$cl_duration) {
215       if ('0' == $cl_duration)
216         $errors->add($i18n->getKey('error.field'), $i18n->getKey('label.duration'));
217       else if ($cl_start || $cl_finish) {
218         if (!ttTimeHelper::isValidTime($cl_start))
219           $errors->add($i18n->getKey('error.field'), $i18n->getKey('label.start'));
220         if ($cl_finish) {
221           if (!ttTimeHelper::isValidTime($cl_finish))
222             $errors->add($i18n->getKey('error.field'), $i18n->getKey('label.finish'));
223           if (!ttTimeHelper::isValidInterval($cl_start, $cl_finish))
224             $errors->add($i18n->getKey('error.interval'), $i18n->getKey('label.finish'), $i18n->getKey('label.start'));
225         }
226       } else {
227         if ((TYPE_START_FINISH == $user->record_type) || (TYPE_ALL == $user->record_type)) {
228           $errors->add($i18n->getKey('error.empty'), $i18n->getKey('label.start'));
229           $errors->add($i18n->getKey('error.empty'), $i18n->getKey('label.finish'));
230         }
231         if ((TYPE_DURATION == $user->record_type) || (TYPE_ALL == $user->record_type))
232           $errors->add($i18n->getKey('error.empty'), $i18n->getKey('label.duration'));
233       }
234     } else {
235       if (!ttTimeHelper::isValidDuration($cl_duration))
236         $errors->add($i18n->getKey('error.field'), $i18n->getKey('label.duration'));
237     }
238     if (!ttValidString($cl_note, true)) $errors->add($i18n->getKey('error.field'), $i18n->getKey('label.note'));
239     // Finished validating user input.
240     
241     // Prohibit creating entries in future.
242     if (defined('FUTURE_ENTRIES') && !isTrue(FUTURE_ENTRIES)) {
243       $browser_today = new DateAndTime(DB_DATEFORMAT, $request->getParameter('browser_today', null));
244       if ($selected_date->after($browser_today))
245         $errors->add($i18n->getKey('error.future_date'));
246     }
247     
248     // Prohibit creating time entries in locked interval.
249     if($lockdate && $selected_date->before($lockdate))
250       $errors->add($i18n->getKey('error.period_locked'));
251     
252     // Prohibit creating another uncompleted record.
253     if ($errors->isEmpty()) {
254       if (($not_completed_rec = ttTimeHelper::getUncompleted($user->getActiveUser())) && (($cl_finish == '') && ($cl_duration == '')))
255         $errors->add($i18n->getKey('error.uncompleted_exists')." <a href = 'time_edit.php?id=".$not_completed_rec['id']."'>".$i18n->getKey('error.goto_uncompleted')."</a>");
256     }
257     
258     // Prohibit creating an overlapping record.
259     if ($errors->isEmpty()) {
260       if (ttTimeHelper::overlaps($user->getActiveUser(), $cl_date, $cl_start, $cl_finish))
261         $errors->add($i18n->getKey('error.overlap'));
262     }  
263           
264     if ($errors->isEmpty()) {
265       $id = ttTimeHelper::insert(array(
266         'date' => $cl_date,
267         'user_id' => $user->getActiveUser(),
268         'client' => $cl_client,
269         'project' => $cl_project,
270         'task' => $cl_task,
271         'start' => $cl_start,
272         'finish' => $cl_finish,
273         'duration' => $cl_duration,
274         'note' => $cl_note,
275         'billable' => $cl_billable));
276                 
277       // Insert a custom field if we have it.
278       $result = true;
279       if ($id && $custom_fields && $cl_cf_1) {
280         if ($custom_fields->fields[0]['type'] == CustomFields::TYPE_TEXT)
281           $result = $custom_fields->insert($id, $custom_fields->fields[0]['id'], null, $cl_cf_1);
282         else if ($custom_fields->fields[0]['type'] == CustomFields::TYPE_DROPDOWN)
283           $result = $custom_fields->insert($id, $custom_fields->fields[0]['id'], $cl_cf_1, null);
284       }
285
286       if ($id && $result) {
287         header('Location: time.php');
288         exit();
289       }
290       $errors->add($i18n->getKey('error.db'));
291     }
292   }
293 }
294
295 $smarty->assign('next_date', $next_date);
296 $smarty->assign('prev_date', $prev_date);
297 $smarty->assign('time_records', ttTimeHelper::getRecords($user->getActiveUser(), $cl_date));
298 $smarty->assign('day_total', ttTimeHelper::getTimeForDay($user->getActiveUser(), $cl_date));
299 $smarty->assign('client_list', $client_list);
300 $smarty->assign('project_list', $project_list);
301 $smarty->assign('task_list', $task_list);
302 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
303 $smarty->assign('onload', 'onLoad="fillDropdowns()"');
304 $smarty->assign('timestring', $selected_date->toString($user->date_format));
305 $smarty->assign('title', $i18n->getKey('title.time'));
306 $smarty->assign('content_page_name', 'mobile/time.tpl');
307 $smarty->display('mobile/index.tpl');
308 ?>