d37830090f74a1d7576a7682b4c9fd39da2ea7b6
[timetracker.git] / WEB-INF / lib / ttFavReportHelper.class.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 import('ttTeamHelper');
30
31 // Class ttFavReportHelper is used to help with favorite report related tasks.
32 class ttFavReportHelper {
33
34   // getReports - returns an array of favorite reports for user.
35   static function getReports() {
36     global $user;
37     $mdb2 = getConnection();
38
39     $user_id = $user->getUser();
40     $group_id = $user->getGroup();
41     $org_id = $user->org_id;
42
43     $result = array();
44     $sql = "select * from tt_fav_reports".
45       " where user_id = $user_id and group_id = $group_id and org_id = $org_id and status = 1";
46     $res = $mdb2->query($sql);
47     if (!is_a($res, 'PEAR_Error')) {
48       while ($val = $res->fetchRow()) {
49         $result[] = $val;
50       }
51       return mu_sort($result, 'name');
52     }
53     return false;
54   }
55
56   // get - returns a report identified by its id for user.
57   static function get($id) {
58     global $user;
59     $mdb2 = getConnection();
60
61     $user_id = $user->getUser();
62     $group_id = $user->getGroup();
63     $org_id = $user->org_id;
64
65     $sql = "select * from tt_fav_reports".
66       " where id = $id and user_id = $user_id and group_id = $group_id and org_id = $org_id and status = 1";
67     $res = $mdb2->query($sql);
68     if (!is_a($res, 'PEAR_Error')) {
69       if ($val = $res->fetchRow()) {
70         return $val;
71       }
72     }
73     return false;
74   }
75   // getReport - returns a report identified by its id.
76   // TODO: get rid of this function by encapsulating all cron related tasks in its own class.
77   // Because cron works for all orgs and we want this class to always work in context of
78   // a logged on user, for better security.
79   static function getReport($id) {
80     $mdb2 = getConnection();
81
82     $sql = "select * from tt_fav_reports where id = $id and status = 1";
83     $res = $mdb2->query($sql);
84     if (!is_a($res, 'PEAR_Error')) {
85       if ($val = $res->fetchRow()) {
86         return $val;
87       }
88     }
89     return false;
90   }
91
92   // getReportByName - returns a report identified by its name.
93   static function getReportByName($user_id, $report_name) {
94     $mdb2 = getConnection();
95
96     $sql = "select * from tt_fav_reports where user_id = $user_id and status = 1 and name = ".$mdb2->quote($report_name);
97     $res = $mdb2->query($sql);
98     if (!is_a($res, 'PEAR_Error')) {
99       if ($val = $res->fetchRow()) {
100         return $val;
101       }
102     }
103     return false;
104   }
105
106   // insertReport - stores reports settings in database.
107   static function insertReport($fields) {
108     global $user;
109     $mdb2 = getConnection();
110
111     $group_id = $user->getGroup();
112     $org_id = $user->org_id;
113
114     $sql = "insert into tt_fav_reports".
115       " (name, user_id, group_id, org_id, client_id, cf_1_option_id, project_id, task_id,".
116       " billable, invoice, paid_status, users, period, period_start, period_end,".
117       " show_client, show_invoice, show_paid, show_ip,".
118       " show_project, show_start, show_duration, show_cost,".
119       " show_task, show_end, show_note, show_custom_field_1, show_work_units,".
120       " group_by1, group_by2, group_by3, show_totals_only)".
121       " values(".
122       $mdb2->quote($fields['name']).", ".$fields['user_id'].", $group_id, $org_id, ".
123       $mdb2->quote($fields['client']).", ".$mdb2->quote($fields['option']).", ".
124       $mdb2->quote($fields['project']).", ".$mdb2->quote($fields['task']).", ".
125       $mdb2->quote($fields['billable']).", ".$mdb2->quote($fields['invoice']).", ".
126       $mdb2->quote($fields['paid_status']).", ".
127       $mdb2->quote($fields['users']).", ".$mdb2->quote($fields['period']).", ".
128       $mdb2->quote($fields['from']).", ".$mdb2->quote($fields['to']).", ".
129       $fields['chclient'].", ".$fields['chinvoice'].", ".$fields['chpaid'].", ".$fields['chip'].", ".
130       $fields['chproject'].", ".$fields['chstart'].", ".$fields['chduration'].", ".$fields['chcost'].", ".
131       $fields['chtask'].", ".$fields['chfinish'].", ".$fields['chnote'].", ".$fields['chcf_1'].", ".$fields['chunits'].", ".
132       $mdb2->quote($fields['group_by1']).", ".$mdb2->quote($fields['group_by2']).", ".
133       $mdb2->quote($fields['group_by3']).", ".$fields['chtotalsonly'].")";
134     $affected = $mdb2->exec($sql);
135     if (is_a($affected, 'PEAR_Error'))
136       return false;
137
138     $last_id = $mdb2->lastInsertID('tt_fav_reports', 'id');
139     return $last_id;
140   }
141
142   // updateReport - updates report options in the database.
143   function updateReport($fields) {
144     $mdb2 = getConnection();
145     $sql = "update tt_fav_reports set ".
146       "name = ".$mdb2->quote($fields['name']).", ".
147       "client_id = ".$mdb2->quote($fields['client']).", ".
148       "cf_1_option_id = ".$mdb2->quote($fields['option']).", ".
149       "project_id = ".$mdb2->quote($fields['project']).", ".
150       "task_id = ".$mdb2->quote($fields['task']).", ".
151       "billable = ".$mdb2->quote($fields['billable']).", ".
152       "invoice = ".$mdb2->quote($fields['invoice']).", ".
153       "paid_status = ".$mdb2->quote($fields['paid_status']).", ".
154       "users = ".$mdb2->quote($fields['users']).", ".
155       "period = ".$mdb2->quote($fields['period']).", ".
156       "period_start = ".$mdb2->quote($fields['from']).", ".
157       "period_end = ".$mdb2->quote($fields['to']).", ".
158       "show_client = ".$fields['chclient'].", ".
159       "show_invoice = ".$fields['chinvoice'].", ".
160       "show_paid = ".$fields['chpaid'].", ".
161       "show_ip = ".$fields['chip'].", ".
162       "show_project = ".$fields['chproject'].", ".
163       "show_start = ".$fields['chstart'].", ".
164       "show_duration = ".$fields['chduration'].", ".
165       "show_cost = ".$fields['chcost'].", ".
166       "show_task = ".$fields['chtask'].", ".
167       "show_end = ".$fields['chfinish'].", ".
168       "show_note = ".$fields['chnote'].", ".
169       "show_custom_field_1 = ".$fields['chcf_1'].", ".
170       "show_work_units = ".$fields['chunits'].", ".
171       "group_by1 = ".$mdb2->quote($fields['group_by1']).", ".
172       "group_by2 = ".$mdb2->quote($fields['group_by2']).", ".
173       "group_by3 = ".$mdb2->quote($fields['group_by3']).", ".
174       "show_totals_only = ".$fields['chtotalsonly'].
175       " where id = ".$fields['id'];
176     $affected = $mdb2->exec($sql);
177     if (is_a($affected, 'PEAR_Error'))
178       return false;
179
180     return $fields['id'];
181   }
182
183   // saveReport - saves report options in the database.
184   static function saveReport($bean) {
185     global $user;
186     $user_id = $user->getUser();
187
188     //  Set default value of 0 for not set checkboxes (in bean).
189     //  Later in this function we use it to construct $fields array to update database.
190     if (!$bean->getAttribute('chclient')) $bean->setAttribute('chclient', 0);
191     if (!$bean->getAttribute('chinvoice')) $bean->setAttribute('chinvoice', 0);
192     if (!$bean->getAttribute('chpaid')) $bean->setAttribute('chpaid', 0);
193     if (!$bean->getAttribute('chip')) $bean->setAttribute('chip', 0);
194     if (!$bean->getAttribute('chproject')) $bean->setAttribute('chproject', 0);
195     if (!$bean->getAttribute('chstart')) $bean->setAttribute('chstart', 0);
196     if (!$bean->getAttribute('chduration')) $bean->setAttribute('chduration', 0);
197     if (!$bean->getAttribute('chcost')) $bean->setAttribute('chcost', 0);
198     if (!$bean->getAttribute('chtask')) $bean->setAttribute('chtask', 0);
199     if (!$bean->getAttribute('chfinish')) $bean->setAttribute('chfinish', 0);
200     if (!$bean->getAttribute('chnote')) $bean->setAttribute('chnote', 0);
201     if (!$bean->getAttribute('chcf_1')) $bean->setAttribute('chcf_1', 0);
202     if (!$bean->getAttribute('chunits')) $bean->setAttribute('chunits', 0);
203     if (!$bean->getAttribute('chtotalsonly')) $bean->setAttribute('chtotalsonly', 0);
204
205     $users_in_bean = $bean->getAttribute('users');
206     if ($users_in_bean && is_array($users_in_bean)) {
207       $users = join(',', $users_in_bean);
208     }
209     if ($bean->getAttribute('start_date')) {
210       $dt = new DateAndTime($user->getDateFormat(), $bean->getAttribute('start_date'));
211       $from = $dt->toString(DB_DATEFORMAT);
212     }
213     if ($bean->getAttribute('end_date')) {
214       $dt = new DateAndTime($user->getDateFormat(), $bean->getAttribute('end_date'));
215       $to = $dt->toString(DB_DATEFORMAT);
216     }
217
218     $fields = array(
219       'name'=>$bean->getAttribute('new_fav_report'),
220       'client'=>$bean->getAttribute('client'),
221       'option'=>$bean->getAttribute('option'),
222       'project'=>$bean->getAttribute('project'),
223       'task'=>$bean->getAttribute('task'),
224       'billable'=>$bean->getAttribute('include_records'),
225       'invoice'=>$bean->getAttribute('invoice'),
226       'paid_status'=>$bean->getAttribute('paid_status'),
227       'users'=>$users,
228       'period'=>$bean->getAttribute('period'),
229       'from'=>$from,
230       'to'=>$to,
231       'chclient'=>$bean->getAttribute('chclient'),
232       'chinvoice'=>$bean->getAttribute('chinvoice'),
233       'chpaid'=>$bean->getAttribute('chpaid'),
234       'chip'=>$bean->getAttribute('chip'),
235       'chproject'=>$bean->getAttribute('chproject'),
236       'chstart'=>$bean->getAttribute('chstart'),
237       'chduration'=>$bean->getAttribute('chduration'),
238       'chcost'=>$bean->getAttribute('chcost'),
239       'chtask'=>$bean->getAttribute('chtask'),
240       'chfinish'=>$bean->getAttribute('chfinish'),
241       'chnote'=>$bean->getAttribute('chnote'),
242       'chcf_1'=>$bean->getAttribute('chcf_1'),
243       'chunits'=>$bean->getAttribute('chunits'),
244       'group_by1'=>$bean->getAttribute('group_by1'),
245       'group_by2'=>$bean->getAttribute('group_by2'),
246       'group_by3'=>$bean->getAttribute('group_by3'),
247       'chtotalsonly'=>$bean->getAttribute('chtotalsonly'));
248
249     $id = false;
250     $report = ttFavReportHelper::getReportByName($user_id, $fields['name']);
251     if ($report) {
252       $fields['id'] = $report['id'];
253       $id = ttFavReportHelper::updateReport($fields);
254     } else {
255       $fields['user_id'] = $user_id;
256       $id = ttFavReportHelper::insertReport($fields);
257     }
258
259     return $id;
260   }
261
262   // deleteReport - deletes a favorite report.
263   static function deleteReport($id) {
264     $mdb2 = getConnection();
265
266     $sql = "delete from tt_fav_reports where id = $id";
267     $affected = $mdb2->exec($sql);
268     return (!is_a($affected, 'PEAR_Error'));
269   }
270
271   // loadReport - loads report options from database into a bean.
272   static function loadReport(&$bean) {
273     global $user;
274     $user_id = $user->getUser();
275
276     $val = ttFavReportHelper::getReport($bean->getAttribute('favorite_report'));
277     if ($val) {
278       $bean->setAttribute('client', $val['client_id']);
279       $bean->setAttribute('option', $val['cf_1_option_id']);
280       $bean->setAttribute('project', $val['project_id']);
281       $bean->setAttribute('task', $val['task_id']);
282       $bean->setAttribute('include_records', $val['billable']);
283       $bean->setAttribute('invoice', $val['invoice']);
284       $bean->setAttribute('paid_status', $val['paid_status']);
285       $bean->setAttribute('users', explode(',', $val['users']));
286       $bean->setAttribute('period', $val['period']);
287       if ($val['period_start']) {
288         $dt = new DateAndTime(DB_DATEFORMAT, $val['period_start']);
289         $bean->setAttribute('start_date', $dt->toString($user->getDateFormat()));
290       }
291       if ($val['period_end']) {
292         $dt = new DateAndTime(DB_DATEFORMAT, $val['period_end']);
293         $bean->setAttribute('end_date', $dt->toString($user->getDateFormat()));
294       }
295       $bean->setAttribute('chclient', $val['show_client']);
296       $bean->setAttribute('chinvoice', $val['show_invoice']);
297       $bean->setAttribute('chpaid', $val['show_paid']);
298       $bean->setAttribute('chip', $val['show_ip']);
299       $bean->setAttribute('chproject', $val['show_project']);
300       $bean->setAttribute('chstart', $val['show_start']);
301       $bean->setAttribute('chduration', $val['show_duration']);
302       $bean->setAttribute('chcost', $val['show_cost']);
303       $bean->setAttribute('chtask', $val['show_task']);
304       $bean->setAttribute('chfinish', $val['show_end']);
305       $bean->setAttribute('chnote', $val['show_note']);
306       $bean->setAttribute('chcf_1', $val['show_custom_field_1']);
307       $bean->setAttribute('chunits', $val['show_work_units']);
308       $bean->setAttribute('group_by1', $val['group_by1']);
309       $bean->setAttribute('group_by2', $val['group_by2']);
310       $bean->setAttribute('group_by3', $val['group_by3']);
311       $bean->setAttribute('chtotalsonly', $val['show_totals_only']);
312       $bean->setAttribute('new_fav_report', $val['name']);
313     } else {
314       $attrs = $bean->getAttributes();
315       $attrs = array_merge($attrs, array(
316         'client'=>'',
317         'option'=>'',
318         'project'=>'',
319         'task'=>'',
320         'include_records'=>'',
321         'invoice'=>'',
322         'users'=>$user_id,
323         'period'=>'',
324         'chclient'=>'1',
325         'chinvoice'=>'',
326         'chproject'=>'1',
327         'chstart'=>'1',
328         'chduration'=>'1',
329         'chcost'=>'',
330         'chtask'=>'1',
331         'chfinish'=>'1',
332         'chnote'=>'1',
333         'chcf_1'=>'',
334         'chunits'=>'',
335         'group_by1'=>'',
336         'group_by2'=>'',
337         'group_by3'=>'',
338         'chtotalsonly'=>'',
339         'new_fav_report'=>''));
340       $bean->setAttributes($attrs);
341     }
342   }
343
344   // getReportOptions - returns an array of fav report options from database data.
345   // Note: this function is a part of refactoring to simplify maintenance of report
346   // generating functions, as we currently have 2 sets: normal reporting (from bean),
347   // and fav report emailing (from db fields). Using options obtained from either db or bean
348   // shall allow us to use only one set of functions.
349   static function getReportOptions($id) {
350
351     // Start with getting the fields from the database.
352     $db_fields = ttFavReportHelper::getReport($id);
353     if (!$db_fields) return false;
354
355     // Prepare an array of report options.
356     $options = $db_fields; // For now, use db field names as options.
357     // Drop things we don't need in reports.
358     unset($options['id']);
359     unset($options['report_spec']); // Currently not used.
360     unset($options['status']);
361
362     // Note: special handling for NULL users field is done in cron.php
363
364     // $options now is a subset of db fields from tt_fav_reports table.
365     return $options;
366   }
367
368   // adjustOptions takes and array or report options and adjusts them for current user
369   // (and group) settings. This is needed in situations when a fav report is stored in db
370   // long ago, but user or group attributes are now changed, so we have to adjust.
371   static function adjustOptions($options) {
372     global $user;
373
374     // Check and optionally adjust users.
375     // Special handling of the NULL $options['users'] field (this used to mean "all users").
376     if (!$options['users']) {
377       if ($user->can('view_reports') || $user->can('view_all_reports') || $user->isClient()) {
378         if ($user->can('view_reports') || $user->can('view_all_reports')) {
379           $max_rank = $user->rank-1;
380           if ($user->can('view_all_reports')) $max_rank = 512;
381           if ($user->can('view_own_reports'))
382             $user_options = array('max_rank'=>$max_rank,'include_self'=>true);
383           else
384             $user_options = array('max_rank'=>$max_rank);
385           $users = $user->getUsers($user_options); // Active and inactive users.
386         } elseif ($user->isClient()) {
387           $users = ttTeamHelper::getUsersForClient(); // Active and inactive users for clients.
388         }
389         foreach ($users as $single_user) {
390           $user_ids[] = $single_user['id'];
391         }
392         $options['users'] = implode(',', $user_ids);
393       }
394     } else {
395       $users_to_adjust = explode(',', $options['users']); // Users to adjust.
396       if ($user->isClient()) {
397         $users = ttTeamHelper::getUsersForClient(); // Active and inactive users for clients.
398         foreach ($users as $single_user) {
399           $user_ids[] = $single_user['id'];
400         }
401         foreach ($users_to_adjust as $user_to_adjust) {
402           if (in_array($user_to_adjust['id'], $user_ids)) {
403             $adjusted_user_ids[] = $user_to_adjust['id'];
404           }
405         }
406         $options['users'] = implode(',', $adjusted_user_ids);
407       }
408       // TODO: add checking the existing user list for potentially changed access rights for user.
409     }
410
411     return $options;
412   }
413 }