Cleaning up no longer needed access rights.
[timetracker.git] / reports.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('form.ActionForm');
32 import('DateAndTime');
33 import('ttGroupHelper');
34 import('Period');
35 import('ttProjectHelper');
36 import('ttFavReportHelper');
37 import('ttClientHelper');
38 import('ttReportHelper');
39
40 // Access check.
41 if (!(ttAccessAllowed('view_own_reports') || ttAccessAllowed('view_reports') || ttAccessAllowed('view_all_reports') || ttAccessAllowed('view_client_reports'))) {
42   header('Location: access_denied.php');
43   exit();
44 }
45 if (!$user->exists()) {
46   header('Location: access_denied.php'); // No users in subgroup.
47   exit();
48 }
49 // End of access checks.
50
51 $trackingMode = $user->getTrackingMode();
52
53 // Use custom fields plugin if it is enabled.
54 if ($user->isPluginEnabled('cf')) {
55   require_once('plugins/CustomFields.class.php');
56   $custom_fields = new CustomFields();
57   $smarty->assign('custom_fields', $custom_fields);
58   $showCustomFieldCheckbox = $custom_fields->fields[0];
59   $showCustomFieldDropdown = $custom_fields->fields[0] && $custom_fields->fields[0]['type'] == CustomFields::TYPE_DROPDOWN;
60   if ($showCustomFieldDropdown)
61     $showCustomFieldDropdown &= count($custom_fields->options) > 0;
62 }
63
64 $form = new Form('reportForm');
65
66 // Get saved favorite reports for user.
67 $report_list = ttFavReportHelper::getReports();
68 $form->addInput(array('type'=>'combobox',
69   'name'=>'favorite_report',
70   'onchange'=>'this.form.fav_report_changed.value=1;this.form.submit();',
71   'style'=>'width: 250px;',
72   'data'=>$report_list,
73   'datakeys'=>array('id','name'),
74   'empty'=>array('-1'=>$i18n->get('dropdown.no'))));
75 $form->addInput(array('type'=>'hidden','name'=>'fav_report_changed'));
76 // Generate and Delete buttons.
77 $form->addInput(array('type'=>'submit','name'=>'btn_generate','value'=>$i18n->get('button.generate')));
78 $form->addInput(array('type'=>'submit','name'=>'btn_delete','value'=>$i18n->get('label.delete'),'onclick'=>"return confirm('".$i18n->get('form.reports.confirm_delete')."')"));
79
80 // Dropdown for clients if the clients plugin is enabled.
81 $showClient = $user->isPluginEnabled('cl') && !$user->isClient();
82 if ($showClient) {
83   if ($user->can('view_reports') || $user->can('view_all_reports')) {
84     $client_list = ttClientHelper::getClients(); // TODO: improve getClients for "view_reports"
85                                                  // by filtering out not relevant clients.
86   } else
87     $client_list = ttClientHelper::getClientsForUser();
88   if (count($client_list) == 0) $showClient = false;
89 }
90 if ($showClient) {
91   $form->addInput(array('type'=>'combobox',
92     'name'=>'client',
93     'style'=>'width: 250px;',
94     'data'=>$client_list,
95     'datakeys'=>array('id', 'name'),
96     'empty'=>array(''=>$i18n->get('dropdown.all'))));
97 }
98
99 // If we have a TYPE_DROPDOWN custom field - add a control to select an option.
100 if ($showCustomFieldDropdown) {
101   $form->addInput(array('type'=>'combobox','name'=>'option',
102     'style'=>'width: 250px;',
103     'value'=>$cl_cf_1,
104     'data'=>$custom_fields->options,
105     'empty'=>array(''=>$i18n->get('dropdown.all'))));
106 }
107
108 // Add project dropdown.
109 $showProject = MODE_PROJECTS == $trackingMode || MODE_PROJECTS_AND_TASKS == $trackingMode;
110 if ($showProject) {
111   if ($user->can('view_reports') || $user->can('view_all_reports')) {
112     $project_list = ttProjectHelper::getProjects(); // All active and inactive projects.
113   } elseif ($user->isClient()) {
114     $project_list = ttProjectHelper::getProjectsForClient();
115   } else {
116     $project_list = ttProjectHelper::getAssignedProjects($user->getUser());
117   }
118   if (count($project_list) == 0) $showProject = false;
119 }
120 if ($showProject) {
121   $form->addInput(array('type'=>'combobox',
122     'onchange'=>'fillTaskDropdown(this.value);selectAssignedUsers(this.value);',
123     'name'=>'project',
124     'style'=>'width: 250px;',
125     'data'=>$project_list,
126     'datakeys'=>array('id','name'),
127     'empty'=>array(''=>$i18n->get('dropdown.all'))));
128 }
129
130 // Add task dropdown.
131 $showTask = MODE_PROJECTS_AND_TASKS == $trackingMode;
132 if ($showTask) {
133   $task_list = ttGroupHelper::getActiveTasks();
134   if (count($task_list) == 0) $showTask = false;
135 }
136 if ($showTask) {
137   $form->addInput(array('type'=>'combobox',
138     'name'=>'task',
139     'style'=>'width: 250px;',
140     'data'=>$task_list,
141     'datakeys'=>array('id','name'),
142     'empty'=>array(''=>$i18n->get('dropdown.all'))));
143 }
144
145 // Add billable dropdown.
146 $showBillable = $user->isPluginEnabled('iv');
147 if ($showBillable) {
148   $include_options = array('1'=>$i18n->get('form.reports.include_billable'),
149     '2'=>$i18n->get('form.reports.include_not_billable'));
150   $form->addInput(array('type'=>'combobox',
151     'name'=>'include_records', // TODO: how about a better name here?
152     'style'=>'width: 250px;',
153     'data'=>$include_options,
154     'empty'=>array(''=>$i18n->get('dropdown.all'))));
155 }
156
157 // Add invoiced / not invoiced selector.
158 $showInvoiceDropdown = $user->isPluginEnabled('iv') && $user->can('manage_invoices');
159 if ($showInvoiceDropdown) {
160   $invoice_options = array('1'=>$i18n->get('form.reports.include_invoiced'),
161     '2'=>$i18n->get('form.reports.include_not_invoiced'));
162   $form->addInput(array('type'=>'combobox',
163     'name'=>'invoice',
164     'style'=>'width: 250px;',
165     'data'=>$invoice_options,
166     'empty'=>array(''=>$i18n->get('dropdown.all'))));
167 }
168 $showInvoiceCheckbox = $user->isPluginEnabled('iv') && ($user->can('manage_invoices') || $user->isClient());
169
170 // Add paid status selector.
171 $showPaidStatus = $user->isPluginEnabled('ps') && $user->can('manage_invoices');
172 if ($showPaidStatus) {
173   $form->addInput(array('type'=>'combobox',
174    'name'=>'paid_status',
175    'style'=>'width: 250px;',
176    'data'=>array('1'=>$i18n->get('dropdown.paid'),'2'=>$i18n->get('dropdown.not_paid')),
177    'empty'=>array(''=>$i18n->get('dropdown.all'))
178  ));
179 }
180
181 // Add approved / not approved selector.
182 $showApproved = $user->isPluginEnabled('ap') &&
183   ($user->can('view_own_reports') || $user->can('view_reports') ||
184    $user->can('view_all_reports') || ($user->can('view_client_reports') && $user->can('view_client_unapproved')));
185 if ($showApproved) {
186   $form->addInput(array('type'=>'combobox',
187    'name'=>'approved',
188    'style'=>'width: 250px;',
189    'data'=>array('1'=>$i18n->get('dropdown.approved'),'2'=>$i18n->get('dropdown.not_approved')),
190    'empty'=>array(''=>$i18n->get('dropdown.all'))
191   ));
192 }
193
194 // Add timesheet assignment selector.
195 $showTimesheetDropdown = $user->isPluginEnabled('ts');
196 if ($showTimesheetDropdown) {
197   $form->addInput(array('type'=>'combobox',
198    'name'=>'timesheet',
199    'style'=>'width: 250px;',
200    'data'=>array(TIMESHEET_NOT_ASSIGNED=>$i18n->get('form.reports.include_not_assigned'),
201      TIMESHEET_ASSIGNED=>$i18n->get('form.reports.include_assigned'),
202      TIMESHEET_PENDING=>$i18n->get('form.reports.include_pending'),
203      TIMESHEET_APPROVED=>$i18n->get('dropdown.approved'),
204      TIMESHEET_NOT_APPROVED=>$i18n->get('dropdown.not_approved')),
205    'empty'=>array(''=>$i18n->get('dropdown.all'))
206   ));
207 }
208 $showTimesheetCheckbox = $user->isPluginEnabled('ts');
209
210 // Add user table.
211 $showUsers = $user->can('view_reports') || $user->can('view_all_reports') || $user->isClient();
212 $user_list = array();
213 if ($showUsers) {
214   // Prepare user and assigned projects arrays.
215   if ($user->can('view_reports') || $user->can('view_all_reports')) {
216     $rank = $user->getMaxRankForGroup($user->getGroup());
217     if ($user->can('view_all_reports')) $max_rank = MAX_RANK;
218     if ($user->can('view_own_reports'))
219       $options = array('max_rank'=>$max_rank,'include_self'=>true);
220     else
221       $options = array('max_rank'=>$max_rank);
222     $users = $user->getUsers($options); // Active and inactive users.
223   }
224   elseif ($user->isClient())
225     $users = ttGroupHelper::getUsersForClient(); // Active and inactive users for clients.
226
227   foreach ($users as $single_user) {
228     $user_list[$single_user['id']] = $single_user['name'];
229     $projects = ttProjectHelper::getAssignedProjects($single_user['id']);
230     if ($projects) {
231       foreach ($projects as $single_project) {
232         $assigned_projects[$single_user['id']][] = $single_project['id'];
233       }
234     }
235   }
236   $row_count = ceil(count($user_list)/3);
237   $form->addInput(array('type'=>'checkboxgroup',
238     'name'=>'users',
239     'data'=>$user_list,
240     'layout'=>'V',
241     'groupin'=>$row_count,
242     'style'=>'width: 100%;'));
243 }
244
245 // Add control for time period.
246 $form->addInput(array('type'=>'combobox',
247   'name'=>'period',
248   'style'=>'width: 250px;',
249   'data'=>array(INTERVAL_THIS_MONTH=>$i18n->get('dropdown.current_month'),
250     INTERVAL_LAST_MONTH=>$i18n->get('dropdown.previous_month'),
251     INTERVAL_THIS_WEEK=>$i18n->get('dropdown.current_week'),
252     INTERVAL_LAST_WEEK=>$i18n->get('dropdown.previous_week'),
253     INTERVAL_THIS_DAY=>$i18n->get('dropdown.current_day'),
254     INTERVAL_LAST_DAY=>$i18n->get('dropdown.previous_day')),
255   'empty'=>array(''=>$i18n->get('dropdown.select'))));
256 // Add controls for start and end dates.
257 $form->addInput(array('type'=>'datefield','maxlength'=>'20','name'=>'start_date'));
258 $form->addInput(array('type'=>'datefield','maxlength'=>'20','name'=>'end_date'));
259
260 // Add checkboxes for "Show fields" block.
261 if ($showClient)
262   $form->addInput(array('type'=>'checkbox','name'=>'chclient'));
263 if ($showProject)
264   $form->addInput(array('type'=>'checkbox','name'=>'chproject'));
265 if ($showTask)
266   $form->addInput(array('type'=>'checkbox','name'=>'chtask'));
267 if ($showCustomFieldCheckbox)
268   $form->addInput(array('type'=>'checkbox','name'=>'chcf_1'));
269 if ($showInvoiceCheckbox)
270   $form->addInput(array('type'=>'checkbox','name'=>'chinvoice'));
271 if ($showPaidStatus)
272   $form->addInput(array('type'=>'checkbox','name'=>'chpaid'));
273 $showIP = $user->can('view_reports') || $user->can('view_all_reports');
274 if ($showIP)
275   $form->addInput(array('type'=>'checkbox','name'=>'chip'));
276 $recordType = $user->getRecordType();
277 $showStart = TYPE_START_FINISH == $recordType || TYPE_ALL == $recordType;
278 $showFinish = $showStart;
279 if ($showStart)
280   $form->addInput(array('type'=>'checkbox','name'=>'chstart'));
281 if ($showFinish)
282   $form->addInput(array('type'=>'checkbox','name'=>'chfinish'));
283 $form->addInput(array('type'=>'checkbox','name'=>'chduration'));
284 $form->addInput(array('type'=>'checkbox','name'=>'chnote'));
285 $form->addInput(array('type'=>'checkbox','name'=>'chcost'));
286 $showWorkUnits = $user->isPluginEnabled('wu');
287 if ($showWorkUnits)
288   $form->addInput(array('type'=>'checkbox','name'=>'chunits'));
289 if ($showTimesheetCheckbox)
290   $form->addInput(array('type'=>'checkbox','name'=>'chtimesheet'));
291 if ($showApproved)
292   $form->addInput(array('type'=>'checkbox','name'=>'chapproved'));
293
294 // Add a hidden control for timesheet_user_id (who to generate a timesheet for).
295 if ($showTimesheetCheckbox)
296   $form->addInput(array('type'=>'hidden','name'=>'timesheet_user_id'));
297
298 // Add group by control.
299 $group_by_options['no_grouping'] = $i18n->get('form.reports.group_by_no');
300 $group_by_options['date'] = $i18n->get('form.reports.group_by_date');
301 if ($user->can('view_reports') || $user->can('view_all_reports') || $user->isClient())
302   $group_by_options['user'] = $i18n->get('form.reports.group_by_user');
303 if ($user->isPluginEnabled('cl') && !($user->isClient() && $user->client_id))
304   $group_by_options['client'] = $i18n->get('form.reports.group_by_client');
305 if (MODE_PROJECTS == $trackingMode || MODE_PROJECTS_AND_TASKS == $trackingMode)
306   $group_by_options['project'] = $i18n->get('form.reports.group_by_project');
307 if (MODE_PROJECTS_AND_TASKS == $trackingMode)
308   $group_by_options['task'] = $i18n->get('form.reports.group_by_task');
309 if ($custom_fields && $custom_fields->fields[0] && $custom_fields->fields[0]['type'] == CustomFields::TYPE_DROPDOWN) {
310   $group_by_options['cf_1'] = $custom_fields->fields[0]['label'];
311 }
312 $group_by_options_size = sizeof($group_by_options);
313 $form->addInput(array('type'=>'combobox','onchange'=>'handleCheckboxes();','name'=>'group_by1','data'=>$group_by_options));
314 if ($group_by_options_size > 2) $form->addInput(array('type'=>'combobox','onchange'=>'handleCheckboxes();','name'=>'group_by2','data'=>$group_by_options));
315 if ($group_by_options_size > 3) $form->addInput(array('type'=>'combobox','onchange'=>'handleCheckboxes();','name'=>'group_by3','data'=>$group_by_options));
316 $form->addInput(array('type'=>'checkbox','name'=>'chtotalsonly'));
317
318 // Add text field for a new favorite report name.
319 $form->addInput(array('type'=>'text','name'=>'new_fav_report','maxlength'=>'30','style'=>'width: 250px;'));
320 // Save button.
321 $form->addInput(array('type'=>'submit','name'=>'btn_save','value'=>$i18n->get('button.save')));
322
323 $form->addInput(array('type'=>'submit','name'=>'btn_generate','value'=>$i18n->get('button.generate')));
324
325 // Create a bean (which is a mechanism to remember form values in session).
326 $bean = new ActionForm('reportBean', $form, $request);
327 // At this point form values are obtained from session if they are there.
328
329 if ($request->isGet() && !$bean->isSaved()) {
330   // No previous form data were found in session. Use the following default values.
331   $form->setValueByElement('users', array_keys($user_list));
332   $period = new Period(INTERVAL_THIS_MONTH, new DateAndTime($user->getDateFormat()));
333   $form->setValueByElement('start_date', $period->getStartDate());
334   $form->setValueByElement('end_date', $period->getEndDate());
335
336   $form->setValueByElement('chclient', '1');
337   $form->setValueByElement('chstart', '1');
338   $form->setValueByElement('chfinish', '1');
339   $form->setValueByElement('chduration', '1');
340
341   $form->setValueByElement('chproject', '1');
342   $form->setValueByElement('chtask', '1');
343   $form->setValueByElement('chnote', '1');
344   $form->setValueByElement('chcost', '0');
345
346   $form->setValueByElement('chtimesheet', '0');
347   $form->setValueByElement('chip', '0');
348   $form->setValueByElement('chapproved', '0');
349   $form->setValueByElement('chpaid', '0');
350
351   $form->setValueByElement('chcf_1', '0');
352   $form->setValueByElement('chunits', '0');
353   $form->setValueByElement('chinvoice', '0');
354
355   $form->setValueByElement('chtotalsonly', '0');
356 }
357
358 $form->setValueByElement('fav_report_changed','');
359
360 // Disable the Delete button when no favorite report is selected.
361 if (!$bean->getAttribute('favorite_report') || ($bean->getAttribute('favorite_report') == -1))
362   $form->getElement('btn_delete')->setEnabled(false);
363
364 if ($request->isPost()) {
365   if((!$bean->getAttribute('btn_generate') && ($request->getParameter('fav_report_changed')))) {
366     // User changed favorite report. We need to load new values into the form.
367     if ($bean->getAttribute('favorite_report')) {
368       // This loads new favorite report options into the bean (into our form).
369       ttFavReportHelper::loadReport($bean);
370
371       // If user selected no favorite report - mark all user checkboxes (most probable scenario).
372       if ($bean->getAttribute('favorite_report') == -1)
373         $form->setValueByElement('users', array_keys($user_list));
374
375       // Save form data in session for future use.
376       $bean->saveBean();
377       header('Location: reports.php');
378       exit();
379     }
380   } elseif ($bean->getAttribute('btn_save')) {
381     // User clicked the Save button. We need to save form options as new favorite report.
382     if (!ttValidString($bean->getAttribute('new_fav_report'))) $err->add($i18n->get('error.field'), $i18n->get('form.reports.save_as_favorite'));
383
384     if ($err->no()) {
385       $id = ttFavReportHelper::saveReport($bean);
386       if (!$id)
387         $err->add($i18n->get('error.db'));
388       if ($err->no()) {
389         $bean->setAttribute('favorite_report', $id);
390         $bean->saveBean();
391         header('Location: reports.php');
392         exit();
393       }
394     }
395   } elseif($bean->getAttribute('btn_delete')) {
396     // Delete button pressed. User wants to delete a favorite report.
397     if ($bean->getAttribute('favorite_report')) {
398       ttFavReportHelper::deleteReport($bean->getAttribute('favorite_report'));
399       // Load default report.
400       $bean->setAttribute('favorite_report','');
401       $bean->setAttribute('new_fav_report', $report_list[0]['name']);
402       ttFavReportHelper::loadReport($bean);
403       $form->setValueByElement('users', array_keys($user_list));
404       $bean->saveBean();
405       header('Location: reports.php');
406       exit();
407     }
408   } else {
409     // Generate button pressed. Check some values.
410     if (!$bean->getAttribute('period')) {
411       $start_date = new DateAndTime($user->getDateFormat(), $bean->getAttribute('start_date'));
412
413       if ($start_date->isError() || !$bean->getAttribute('start_date'))
414         $err->add($i18n->get('error.field'), $i18n->get('label.start_date'));
415
416       $end_date = new DateAndTime($user->getDateFormat(), $bean->getAttribute('end_date'));
417       if ($end_date->isError() || !$bean->getAttribute('end_date'))
418         $err->add($i18n->get('error.field'), $i18n->get('label.end_date'));
419
420       if ($start_date->compare($end_date) > 0)
421         $err->add($i18n->get('error.interval'), $i18n->get('label.end_date'), $i18n->get('label.start_date'));
422     }
423     $group_by1 = $bean->getAttribute('group_by1');
424     $group_by2 = $bean->getAttribute('group_by2');
425     $group_by3 = $bean->getAttribute('group_by3');
426     if (($group_by3 != null && $group_by3 != 'no_grouping') && ($group_by3 == $group_by1 || $group_by3 == $group_by2))
427       $err->add($i18n->get('error.field'), $i18n->get('form.reports.group_by'));
428     if (($group_by2 != null && $group_by2 != 'no_grouping') && ($group_by2 == $group_by1 || $group_by3 == $group_by2))
429       $err->add($i18n->get('error.field'), $i18n->get('form.reports.group_by'));
430     // Check remaining values.
431     if (!ttReportHelper::verifyBean($bean)) $err->add($i18n->get('error.sys'));
432
433     if ($err->no()) {
434       $bean->saveBean();
435       // Now we can go ahead and create a report.
436       header('Location: report.php');
437       exit();
438     }
439   }
440 } // isPost
441
442 $smarty->assign('show_client', $showClient);
443 $smarty->assign('show_cf_1_dropdown', $showCustomFieldDropdown);
444 $smarty->assign('show_cf_1_checkbox', $showCustomFieldCheckbox);
445 $smarty->assign('show_project', $showProject);
446 $smarty->assign('show_task', $showTask);
447 $smarty->assign('show_billable', $showBillable);
448 $smarty->assign('show_approved', $showApproved);
449 $smarty->assign('show_invoice_dropdown', $showInvoiceDropdown);
450 $smarty->assign('show_invoice_checkbox', $showInvoiceCheckbox);
451 $smarty->assign('show_paid_status', $showPaidStatus);
452 $smarty->assign('show_timesheet_dropdown', $showTimesheetDropdown);
453 $smarty->assign('show_timesheet_checkbox', $showTimesheetCheckbox);
454 $smarty->assign('show_users', $showUsers);
455 $smarty->assign('show_start', $showStart);
456 $smarty->assign('show_finish', $showFinish);
457 $smarty->assign('show_work_units', $showWorkUnits);
458 $smarty->assign('show_ip', $showIP);
459 $smarty->assign('project_list', $project_list);
460 $smarty->assign('task_list', $task_list);
461 $smarty->assign('assigned_projects', $assigned_projects);
462 $smarty->assign('forms', array($form->getName()=>$form->toArray()));
463 $smarty->assign('onload', 'onLoad="handleCheckboxes()"');
464 $smarty->assign('title', $i18n->get('title.reports'));
465 $smarty->assign('content_page_name', 'reports.tpl');
466 $smarty->display('index.tpl');