aaccc3ab25a868241abe7a754085fe315c6b402f
[timetracker.git] / WEB-INF / lib / ttTimeHelper.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('DateAndTime');
30
31 // The ttTimeHelper is a class to help with time-related values.
32 class ttTimeHelper {
33
34   // isWeekend determines if $date falls on weekend.
35   static function isWeekend($date) {
36     $weekDay = date('w', strtotime($date));
37     return ($weekDay == WEEKEND_START_DAY || $weekDay == (WEEKEND_START_DAY + 1) % 7);
38   }
39
40   // isHoliday determines if $date falls on a holiday.
41   static function isHoliday($date) {
42     global $user;
43     global $i18n;
44
45     if (!$user->show_holidays) return false;
46
47     // $date is expected as string in DB_DATEFORMAT.
48     $month = date('m', strtotime($date));
49     $day = date('d', strtotime($date));
50     if (in_array($month.'/'.$day, $i18n->holidays))
51       return true;
52
53     return false;
54   }
55
56   // isValidTime validates a value as a time string.
57   static function isValidTime($value) {
58     if (strlen($value)==0 || !isset($value)) return false;
59
60     // 24 hour patterns.
61     if ($value == '24:00' || $value == '2400') return true;
62
63     if (preg_match('/^([0-1]{0,1}[0-9]|[2][0-3]):?[0-5][0-9]$/', $value )) { // 0:00 - 23:59, 000 - 2359
64       return true;
65     }
66     if (preg_match('/^([0-1]{0,1}[0-9]|[2][0-4])$/', $value )) { // 0 - 24
67       return true;
68     }
69
70     // 12 hour patterns
71     if (preg_match('/^[1-9]\s?(am|AM|pm|PM)$/', $value)) { // 1 - 9 am
72       return true;
73     }
74     if (preg_match('/^(0[1-9]|1[0-2])\s?(am|AM|pm|PM)$/', $value)) { // 01 - 12 am
75       return true;
76     }
77     if (preg_match('/^[1-9]:?[0-5][0-9]\s?(am|AM|pm|PM)$/', $value)) { // 1:00 - 9:59 am, 100 - 959 am
78       return true;
79     }
80     if (preg_match('/^(0[1-9]|1[0-2]):?[0-5][0-9]\s?(am|AM|pm|PM)$/', $value)) { // 01:00 - 12:59 am, 0100 - 1259 am
81       return true;
82     }
83
84     return false;
85   }
86
87   // isValidDuration validates a value as a time duration string (in hours and minutes).
88   static function isValidDuration($value) {
89     if (strlen($value) == 0 || !isset($value)) return false;
90
91     if ($value == '24:00' || $value == '2400') return true;
92
93     if (preg_match('/^([0-1]{0,1}[0-9]|2[0-3]):?[0-5][0-9]$/', $value )) { // 0:00 - 23:59, 000 - 2359
94       return true;
95     }
96     if (preg_match('/^([0-1]{0,1}[0-9]|2[0-4])h?$/', $value )) { // 0, 1 ... 24
97       return true;
98     }
99
100     global $user;
101     $localizedPattern = '/^([0-1]{0,1}[0-9]|2[0-3])?['.$user->decimal_mark.'][0-9]{1,4}h?$/';
102     if (preg_match($localizedPattern, $value )) { // decimal values like 0.5, 1.25h, ... .. 23.9999h (or with comma)
103       return true;
104     }
105
106     return false;
107   }
108
109   // postedDurationToMinutes - converts a value representing a duration
110   // (usually enetered in a form by a user) to an integer number of minutes.
111   //
112   // Parameters:
113   //   $duration - user entered duration string. Valid strings are:
114   //               3 or 3h - means 3 hours. Note: h and m letters are not localized.
115   //               0.25 or 0.25h or .25 or .25h - means a quarter of hour.
116   //               0,25 or 0,25h or ,25 or ,25h - same as above for users with comma ad decimal mark.
117   //               1:30 - means 1 hour 30 minutes.
118   //               25m - means 25 minutes.
119   //   $max - maximum number of minutes that is valid.
120   //
121   //   At the moment, we have 2 variations of duration types:
122   //   1) A duration within a day, such as in a time entry.
123   //   These are less or equal to 24*60 minutes.
124   //
125   //   2) A duration of a monthly quota, with max value of 31*24*60 minutes.
126   //
127   // This function is generic to be used for both types.
128   //
129   // Returns false if the value cannot be converted.
130   static function postedDurationToMinutes($duration, $max = 1440) {
131     // Handle empty value.
132     if (!isset($duration) || strlen($duration) == 0)
133       return null; // Value is not set. Caller decides whether it is valid or not.
134
135     // Handle whole hours.
136     if (preg_match('/^\d{1,3}h?$/', $duration )) { // 0 - 999, 0h - 999h
137       $minutes = 60 * trim($duration, 'h');
138       return $minutes > $max ? false : $minutes;
139     }
140
141     // Handle a normalized duration value.
142     if (preg_match('/^\d{1,3}:[0-5][0-9]$/', $duration )) { // 0:00 - 999:59
143       $time_array = explode(':', $duration);
144       $minutes = (int)@$time_array[1] + ((int)@$time_array[0]) * 60;
145       return $minutes > $max ? false : $minutes;
146     }
147
148     // Handle localized fractional hours.
149     global $user;
150     $localizedPattern = '/^(\d{1,3})?['.$user->decimal_mark.'][0-9]{1,4}h?$/';
151     if (preg_match($localizedPattern, $duration )) { // decimal values like .5, 1.25h, ... .. 999.9999h (or with comma)
152         if ($user->decimal_mark == ',')
153           $duration = str_replace (',', '.', $duration);
154
155         $minutes = (int)round(60 * floatval($duration));
156         return $minutes > $max ? false : $minutes;
157     }
158
159     // Handle minutes. Some users enter durations like 10m (meaning 10 minutes).
160     if (preg_match('/^\d{1,5}m$/', $duration )) { // 0m - 99999m
161       $minutes = (int) trim($duration, 'm');
162       return $minutes > $max ? false : $minutes;
163     }
164
165     // Everything else is not a valid duration.
166     return false;
167   }
168
169   // minutesToDuration converts an integer number of minutes into duration string.
170   // Formats returned HH:MM, HHH:MM, HH, or HHH.
171   static function minutesToDuration($minutes, $abbreviate = false) {
172     if ($minutes < 0) return false;
173
174     $hours = (string) (int)($minutes / 60);
175     $mins = (string) round(fmod($minutes, 60));
176     if (strlen($mins) == 1)
177       $mins = '0' . $mins;
178     if ($abbreviate && $mins == '00')
179       return $hours;
180
181     return $hours.':'.$mins;
182   }
183
184   // toMinutes - converts a time string in format 00:00 to a number of minutes.
185   static function toMinutes($value) {
186     $time_a = explode(':', $value);
187     return (int)@$time_a[1] + ((int)@$time_a[0]) * 60;
188   }
189
190   // toAbsDuration - converts a number of minutes to format 0:00
191   // even if $minutes is negative.
192   static function toAbsDuration($minutes, $abbreviate = false){
193     $hours = (string)((int)abs($minutes / 60));
194     $mins = (string) round(abs(fmod($minutes, 60)));
195     if (strlen($mins) == 1)
196       $mins = '0' . $mins;
197     if ($abbreviate && $mins == '00')
198       return $hours;
199
200     return $hours.':'.$mins;
201   }
202
203   // toDuration - calculates duration between start and finish times in 00:00 format.
204   static function toDuration($start, $finish) {
205     $duration_minutes = ttTimeHelper::toMinutes($finish) - ttTimeHelper::toMinutes($start);
206     if ($duration_minutes <= 0) return false;
207
208     return ttTimeHelper::toAbsDuration($duration_minutes);
209   }
210
211   // The to12HourFormat function converts a 24-hour time value (such as 15:23) to 12 hour format (03:23 PM).
212   static function to12HourFormat($value) {
213     if ('24:00' == $value) return '12:00 AM';
214
215     $time_a = explode(':', $value);
216     if ($time_a[0] > 12)
217       $res = (string)((int)$time_a[0] - 12).':'.$time_a[1].' PM';
218     elseif ($time_a[0] == 12)
219       $res = $value.' PM';
220     elseif ($time_a[0] == 0)
221       $res = '12:'.$time_a[1].' AM';
222     else
223       $res = $value.' AM';
224     return $res;
225   }
226
227   // The to24HourFormat function attempts to convert a string value (human readable notation of time of day)
228   // to a 24-hour time format HH:MM.
229   static function to24HourFormat($value) {
230     $res = null;
231
232     // Algorithm: use regular expressions to find a matching pattern, starting with most popular patterns first.
233     $tmp_val = trim($value);
234
235     // 24 hour patterns.
236     if (preg_match('/^([01][0-9]|2[0-3]):[0-5][0-9]$/', $tmp_val)) { // 00:00 - 23:59
237       // We already have a 24-hour format. Just return it.
238       $res = $tmp_val;
239       return $res;
240     }
241     if (preg_match('/^[0-9]:[0-5][0-9]$/', $tmp_val)) { // 0:00 - 9:59
242       // This is a 24-hour format without a leading zero. Add 0 and return.
243       $res = '0'.$tmp_val;
244       return $res;
245     }
246     if (preg_match('/^[0-9]$/', $tmp_val)) { // 0 - 9
247       // Single digit. Assuming hour number.
248       $res = '0'.$tmp_val.':00';
249       return $res;
250     }
251     if (preg_match('/^([01][0-9]|2[0-4])$/', $tmp_val)) { // 00 - 24
252       // Two digit hour number.
253       $res = $tmp_val.':00';
254       return $res;
255     }
256     if (preg_match('/^[0-9][0-5][0-9]$/', $tmp_val)) { // 000 - 959
257       // Missing colon. We'll assume the first digit is the hour, the rest is minutes.
258       $tmp_arr = str_split($tmp_val);
259       $res = '0'.$tmp_arr[0].':'.$tmp_arr[1].$tmp_arr[2];
260       return $res;
261     }
262     if (preg_match('/^([01][0-9]|2[0-3])[0-5][0-9]$/', $tmp_val)) { // 0000 - 2359
263       // Missing colon. We'll assume the first 2 digits are the hour, the rest is minutes.
264       $tmp_arr = str_split($tmp_val);
265       $res = $tmp_arr[0].$tmp_arr[1].':'.$tmp_arr[2].$tmp_arr[3];
266       return $res;
267     }
268     // Special handling for midnight.
269     if ($tmp_val == '24:00' || $tmp_val == '2400')
270       return '24:00';
271
272     // 12 hour AM patterns.
273     if (preg_match('/.(am|AM)$/', $tmp_val)) {
274
275       // The $value ends in am or AM. Strip it.
276       $tmp_val = rtrim(substr($tmp_val, 0, -2));
277
278       // Special case to handle 12, 12:MM, and 12MM AM.
279       if (preg_match('/^12:?([0-5][0-9])?$/', $tmp_val))
280         $tmp_val = '00'.substr($tmp_val, 2);
281
282       // We are ready to convert AM time.
283       if (preg_match('/^(0[0-9]|1[0-1]):[0-5][0-9]$/', $tmp_val)) { // 00:00 - 11:59
284         // We already have a 24-hour format. Just return it.
285         $res = $tmp_val;
286         return $res;
287       }
288       if (preg_match('/^[1-9]:[0-5][0-9]$/', $tmp_val)) { // 1:00 - 9:59
289         // This is a 24-hour format without a leading zero. Add 0 and return.
290         $res = '0'.$tmp_val;
291         return $res;
292       }
293       if (preg_match('/^[1-9]$/', $tmp_val)) { // 1 - 9
294         // Single digit. Assuming hour number.
295         $res = '0'.$tmp_val.':00';
296         return $res;
297       }
298       if (preg_match('/^(0[0-9]|1[0-1])$/', $tmp_val)) { // 00 - 11
299         // Two digit hour number.
300         $res = $tmp_val.':00';
301         return $res;
302       }
303       if (preg_match('/^[1-9][0-5][0-9]$/', $tmp_val)) { // 100 - 959
304         // Missing colon. Assume the first digit is the hour, the rest is minutes.
305         $tmp_arr = str_split($tmp_val);
306         $res = '0'.$tmp_arr[0].':'.$tmp_arr[1].$tmp_arr[2];
307         return $res;
308       }
309       if (preg_match('/^(0[0-9]|1[0-1])[0-5][0-9]$/', $tmp_val)) { // 0000 - 1159
310         // Missing colon. We'll assume the first 2 digits are the hour, the rest is minutes.
311         $tmp_arr = str_split($tmp_val);
312         $res = $tmp_arr[0].$tmp_arr[1].':'.$tmp_arr[2].$tmp_arr[3];
313         return $res;
314       }
315     } // AM cases handling.
316
317     // 12 hour PM patterns.
318     if (preg_match('/.(pm|PM)$/', $tmp_val)) {
319
320       // The $value ends in pm or PM. Strip it.
321       $tmp_val = rtrim(substr($tmp_val, 0, -2));
322
323       if (preg_match('/^[1-9]$/', $tmp_val)) { // 1 - 9
324         // Single digit. Assuming hour number.
325         $hour = (string)(12 + (int)$tmp_val);
326         $res = $hour.':00';
327         return $res;
328       }
329       if (preg_match('/^((0[1-9])|(1[0-2]))$/', $tmp_val)) { // 01 - 12
330         // Double digit hour.
331         if ('12' != $tmp_val)
332           $tmp_val = (string)(12 + (int)$tmp_val);
333         $res = $tmp_val.':00';
334         return $res;
335       }
336       if (preg_match('/^[1-9][0-5][0-9]$/', $tmp_val)) { // 100 - 959
337         // Missing colon. We'll assume the first digit is the hour, the rest is minutes.
338         $tmp_arr = str_split($tmp_val);
339         $hour = (string)(12 + (int)$tmp_arr[0]);
340         $res = $hour.':'.$tmp_arr[1].$tmp_arr[2];
341         return $res;
342       }
343       if (preg_match('/^(0[1-9]|1[0-2])[0-5][0-9]$/', $tmp_val)) { // 0100 - 1259
344         // Missing colon. We'll assume the first 2 digits are the hour, the rest is minutes.
345         $hour = substr($tmp_val, 0, -2);
346         $min = substr($tmp_val, 2);
347         if ('12' != $hour)
348           $hour = (string)(12 + (int)$hour);
349         $res = $hour.':'.$min;
350         return $res;
351       }
352       if (preg_match('/^[1-9]:[0-5][0-9]$/', $tmp_val)) { // 1:00 - 9:59
353         $hour = substr($tmp_val, 0, -3);
354         $min = substr($tmp_val, 2);
355         $hour = (string)(12 + (int)$hour);
356         $res = $hour.':'.$min;
357         return $res;
358       }
359       if (preg_match('/^(0[1-9]|1[0-2]):[0-5][0-9]$/', $tmp_val)) { // 01:00 - 12:59
360         $hour = substr($tmp_val, 0, -3);
361         $min = substr($tmp_val, 3);
362         if ('12' != $hour)
363           $hour = (string)(12 + (int)$hour);
364         $res = $hour.':'.$min;
365         return $res;
366       }
367     } // PM cases handling.
368
369     return $res;
370   }
371
372   // isValidInterval - checks if finish time is greater than start time.
373   static function isValidInterval($start, $finish) {
374     $start = ttTimeHelper::to24HourFormat($start);
375     $finish = ttTimeHelper::to24HourFormat($finish);
376     if ('00:00' == $finish) $finish = '24:00';
377
378     $minutesStart = ttTimeHelper::toMinutes($start);
379     $minutesFinish = ttTimeHelper::toMinutes($finish);
380     if ($minutesFinish > $minutesStart)
381       return true;
382
383     return false;
384   }
385
386   // insert - inserts a time record into log table. Does not deal with custom fields.
387   static function insert($fields)
388   {
389     global $user;
390     $mdb2 = getConnection();
391
392     $timestamp = isset($fields['timestamp']) ? $fields['timestamp'] : '';
393     $user_id = $fields['user_id'];
394     $date = $fields['date'];
395     $start = $fields['start'];
396     $finish = $fields['finish'];
397     $duration = $fields['duration'];
398     if ($duration) {
399       $minutes = ttTimeHelper::postedDurationToMinutes($duration);
400       $duration = ttTimeHelper::minutesToDuration($minutes);
401     }
402     $client = $fields['client'];
403     $project = $fields['project'];
404     $task = $fields['task'];
405     $invoice = $fields['invoice'];
406     $note = $fields['note'];
407     $billable = $fields['billable'];
408     $paid = $fields['paid'];
409     if (array_key_exists('status', $fields)) { // Key exists and may be NULL during migration of data.
410       $status_f = ', status';
411       $status_v = ', '.$mdb2->quote($fields['status']);
412     }
413
414     $start = ttTimeHelper::to24HourFormat($start);
415     if ($finish) {
416       $finish = ttTimeHelper::to24HourFormat($finish);
417       if ('00:00' == $finish) $finish = '24:00';
418     }
419
420     if (!$timestamp) {
421       $timestamp = date('YmdHis'); //yyyymmddhhmmss
422       // TODO: this timestamp could be illegal if we hit inside DST switch deadzone, such as '2016-03-13 02:30:00'
423       // Anything between 2am and 3am on DST introduction date will not work if we run on a system with DST on.
424       // We need to address this properly to avoid potential complications.
425     }
426
427     $created_v = ', now(), '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', '.$mdb2->quote($user->id);
428
429     if (!$billable) $billable = 0;
430     if (!$paid) $paid = 0;
431
432     if ($duration) {
433       $sql = "insert into tt_log (timestamp, user_id, date, duration, client_id, project_id, task_id, invoice_id, comment, billable, paid, created, created_ip, created_by $status_f) ".
434         "values ('$timestamp', $user_id, ".$mdb2->quote($date).", '$duration', ".$mdb2->quote($client).", ".$mdb2->quote($project).", ".$mdb2->quote($task).", ".$mdb2->quote($invoice).", ".$mdb2->quote($note).", $billable, $paid $created_v $status_v)";
435       $affected = $mdb2->exec($sql);
436       if (is_a($affected, 'PEAR_Error'))
437         return false;
438     } else {
439       $duration = ttTimeHelper::toDuration($start, $finish);
440       if ($duration === false) $duration = 0;
441       if (!$duration && ttTimeHelper::getUncompleted($user_id)) return false;
442
443       $sql = "insert into tt_log (timestamp, user_id, date, start, duration, client_id, project_id, task_id, invoice_id, comment, billable, paid, created, created_ip, created_by $status_f) ".
444         "values ('$timestamp', $user_id, ".$mdb2->quote($date).", '$start', '$duration', ".$mdb2->quote($client).", ".$mdb2->quote($project).", ".$mdb2->quote($task).", ".$mdb2->quote($invoice).", ".$mdb2->quote($note).", $billable, $paid $created_v $status_v)";
445       $affected = $mdb2->exec($sql);
446       if (is_a($affected, 'PEAR_Error'))
447         return false;
448     }
449
450     $id = $mdb2->lastInsertID('tt_log', 'id');
451     return $id;
452   }
453
454   // update - updates a record in log table. Does not update its custom fields.
455   static function update($fields)
456   {
457     global $user;
458     $mdb2 = getConnection();
459
460     $id = $fields['id'];
461     $date = $fields['date'];
462     $user_id = $fields['user_id'];
463     $client = $fields['client'];
464     $project = $fields['project'];
465     $task = $fields['task'];
466     $start = $fields['start'];
467     $finish = $fields['finish'];
468     $duration = $fields['duration'];
469     if ($duration) {
470       $minutes = ttTimeHelper::postedDurationToMinutes($duration);
471       $duration = ttTimeHelper::minutesToDuration($minutes);
472     }
473     $note = $fields['note'];
474
475     $billable_part = '';
476     if ($user->isPluginEnabled('iv')) {
477       $billable_part = $fields['billable'] ? ', billable = 1' : ', billable = 0';
478     }
479     $paid_part = '';
480     if ($user->can('manage_invoices') && $user->isPluginEnabled('ps')) {
481       $paid_part = $fields['paid'] ? ', paid = 1' : ', paid = 0';
482     }
483     $modified_part = ', modified = now(), modified_ip = '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', modified_by = '.$mdb2->quote($user->id);
484
485     $start = ttTimeHelper::to24HourFormat($start);
486     $finish = ttTimeHelper::to24HourFormat($finish);
487     if ('00:00' == $finish) $finish = '24:00';
488     
489     if ($start) $duration = '';
490
491     if ($duration) {
492       $sql = "UPDATE tt_log set start = NULL, duration = '$duration', client_id = ".$mdb2->quote($client).", project_id = ".$mdb2->quote($project).", task_id = ".$mdb2->quote($task).", ".
493         "comment = ".$mdb2->quote($note)."$billable_part $paid_part $modified_part, date = '$date' WHERE id = $id";
494       $affected = $mdb2->exec($sql);
495       if (is_a($affected, 'PEAR_Error'))
496         return false;
497     } else {
498       $duration = ttTimeHelper::toDuration($start, $finish);
499       if ($duration === false)
500         $duration = 0;
501       $uncompleted = ttTimeHelper::getUncompleted($user_id);
502       if (!$duration && $uncompleted && ($uncompleted['id'] != $id))
503         return false;
504
505       $sql = "UPDATE tt_log SET start = '$start', duration = '$duration', client_id = ".$mdb2->quote($client).", project_id = ".$mdb2->quote($project).", task_id = ".$mdb2->quote($task).", ".
506         "comment = ".$mdb2->quote($note)."$billable_part $paid_part $modified_part, date = '$date' WHERE id = $id";
507       $affected = $mdb2->exec($sql);
508       if (is_a($affected, 'PEAR_Error'))
509         return false;
510     }
511     return true;
512   }
513
514   // delete - deletes a record from tt_log table and its associated custom field values.
515   static function delete($id, $user_id) {
516     $mdb2 = getConnection();
517
518     $sql = "update tt_log set status = NULL where id = $id and user_id = $user_id";
519     $affected = $mdb2->exec($sql);
520     if (is_a($affected, 'PEAR_Error'))
521       return false;
522
523     $sql = "update tt_custom_field_log set status = NULL where log_id = $id";
524     $affected = $mdb2->exec($sql);
525     if (is_a($affected, 'PEAR_Error'))
526       return false;
527
528     return true;
529   }
530
531   // getTimeForDay - gets total time for a user for a specific date.
532   static function getTimeForDay($user_id, $date) {
533     $mdb2 = getConnection();
534
535     $sql = "select sum(time_to_sec(duration)) as sm from tt_log where user_id = $user_id and date = '$date' and status = 1";
536     $res = $mdb2->query($sql);
537     if (!is_a($res, 'PEAR_Error')) {
538       $val = $res->fetchRow();
539       return sec_to_time_fmt_hm($val['sm']);
540     }
541     return false;
542   }
543
544   // getTimeForWeek - gets total time for a user for a given week.
545   static function getTimeForWeek($user_id, $date) {
546     import('Period');
547     $mdb2 = getConnection();
548
549     $period = new Period(INTERVAL_THIS_WEEK, $date);
550     $sql = "select sum(time_to_sec(duration)) as sm from tt_log where user_id = $user_id and date >= '".$period->getStartDate(DB_DATEFORMAT)."' and date <= '".$period->getEndDate(DB_DATEFORMAT)."' and status = 1";
551     $res = $mdb2->query($sql);
552     if (!is_a($res, 'PEAR_Error')) {
553       $val = $res->fetchRow();
554       return sec_to_time_fmt_hm($val['sm']);
555     }
556     return 0;
557   }
558
559   // getTimeForMonth - gets total time for a user for a given month.
560   static function getTimeForMonth($user_id, $date){
561     import('Period');
562     $mdb2 = getConnection();
563
564     $period = new Period(INTERVAL_THIS_MONTH, $date);
565     $sql = "select sum(time_to_sec(duration)) as sm from tt_log where user_id = $user_id and date >= '".$period->getStartDate(DB_DATEFORMAT)."' and date <= '".$period->getEndDate(DB_DATEFORMAT)."' and status = 1";
566     $res = $mdb2->query($sql);
567     if (!is_a($res, 'PEAR_Error')) {
568       $val = $res->fetchRow();
569       return sec_to_time_fmt_hm($val['sm']);
570     }
571     return 0;
572   }
573
574   // getUncompleted - retrieves an uncompleted record for user, if one exists.
575   static function getUncompleted($user_id) {
576     $mdb2 = getConnection();
577
578     $sql = "select id, start from tt_log  
579       where user_id = $user_id and start is not null and time_to_sec(duration) = 0 and status = 1";
580     $res = $mdb2->query($sql);
581     if (!is_a($res, 'PEAR_Error')) {
582       if (!$res->numRows()) {
583         return false;
584       }
585       if ($val = $res->fetchRow()) {
586         return $val;
587       }
588     }
589     return false;
590   }
591
592   // overlaps - determines if a record overlaps with an already existing record.
593   //
594   // Parameters:
595   //   $user_id - user id for whom to determine overlap
596   //   $date - date
597   //   $start - new record start time
598   //   $finish - new record finish time, may be null
599   //   $record_id - optional record id we may be editing, excluded from overlap set
600   static function overlaps($user_id, $date, $start, $finish, $record_id = null) {
601     // Do not bother checking if we allow overlaps.
602     global $user;
603     if ($user->allow_overlap) return false;
604
605     $mdb2 = getConnection();
606
607     $start = ttTimeHelper::to24HourFormat($start);
608     if ($finish) {
609       $finish = ttTimeHelper::to24HourFormat($finish);
610       if ('00:00' == $finish) $finish = '24:00';
611     }
612     // Handle these 3 overlap situations:
613     // - start time in existing record
614     // - end time in existing record
615     // - record fully encloses existing record
616     $sql = "select id from tt_log  
617       where user_id = $user_id and date = ".$mdb2->quote($date)."
618       and start is not null and duration is not null and status = 1 and (
619       (cast(".$mdb2->quote($start)." as time) >= start and cast(".$mdb2->quote($start)." as time) < addtime(start, duration))";
620     if ($finish) {
621       $sql .= " or (cast(".$mdb2->quote($finish)." as time) <= addtime(start, duration) and cast(".$mdb2->quote($finish)." as time) > start)
622       or (cast(".$mdb2->quote($start)." as time) < start and cast(".$mdb2->quote($finish)." as time) > addtime(start, duration))";
623     }
624     $sql .= ")";
625     if ($record_id) {
626       $sql .= " and id <> $record_id";
627     }
628     $res = $mdb2->query($sql);
629     if (!is_a($res, 'PEAR_Error')) {
630       if (!$res->numRows()) {
631         return false;
632       }
633       if ($val = $res->fetchRow()) {
634         return $val;
635       }
636     }
637     return false;
638   }
639
640   // getRecord - retrieves a time record identified by its id.
641   static function getRecord($id, $user_id) {
642     global $user;
643     $sql_time_format = "'%k:%i'"; //  24 hour format.
644     if ('%I:%M %p' == $user->time_format)
645       $sql_time_format = "'%h:%i %p'"; // 12 hour format for MySQL TIME_FORMAT function.
646
647     $mdb2 = getConnection();
648
649     $sql = "select l.id as id, l.timestamp as timestamp, TIME_FORMAT(l.start, $sql_time_format) as start,
650       TIME_FORMAT(sec_to_time(time_to_sec(l.start) + time_to_sec(l.duration)), $sql_time_format) as finish,
651       TIME_FORMAT(l.duration, '%k:%i') as duration,
652       p.name as project_name, t.name as task_name, l.comment, l.client_id, l.project_id, l.task_id, l.invoice_id, l.billable, l.paid, l.date
653       from tt_log l
654       left join tt_projects p on (p.id = l.project_id)
655       left join tt_tasks t on (t.id = l.task_id)
656       where l.id = $id and l.user_id = $user_id and l.status = 1";
657     $res = $mdb2->query($sql);
658     if (!is_a($res, 'PEAR_Error')) {
659       if (!$res->numRows()) {
660         return false;
661       }
662       if ($val = $res->fetchRow()) {
663         return $val;
664       }
665     }
666     return false;
667   }
668
669   // getAllRecords - returns all time records for a certain user.
670   static function getAllRecords($user_id) {
671     $result = array();
672
673     $mdb2 = getConnection();
674
675     $sql = "select l.id, l.timestamp, l.user_id, l.date, TIME_FORMAT(l.start, '%k:%i') as start,
676       TIME_FORMAT(sec_to_time(time_to_sec(l.start) + time_to_sec(l.duration)), '%k:%i') as finish,
677       TIME_FORMAT(l.duration, '%k:%i') as duration,
678       l.client_id, l.project_id, l.task_id, l.invoice_id, l.comment, l.billable, l.paid, l.status
679       from tt_log l where l.user_id = $user_id order by l.id";
680     $res = $mdb2->query($sql);
681     if (!is_a($res, 'PEAR_Error')) {
682       while ($val = $res->fetchRow()) {
683         $result[] = $val;
684       }
685     } else return false;
686
687     return $result;
688   }
689
690   // getRecords - returns time records for a user for a given date.
691   static function getRecords($user_id, $date) {
692     global $user;
693     $sql_time_format = "'%k:%i'"; //  24 hour format.
694     if ('%I:%M %p' == $user->time_format)
695       $sql_time_format = "'%h:%i %p'"; // 12 hour format for MySQL TIME_FORMAT function.
696
697     $result = array();
698     $mdb2 = getConnection();
699
700     $client_field = null;
701     if ($user->isPluginEnabled('cl'))
702       $client_field = ", c.name as client";
703
704     $left_joins = " left join tt_projects p on (l.project_id = p.id)".
705       " left join tt_tasks t on (l.task_id = t.id)";
706     if ($user->isPluginEnabled('cl'))
707       $left_joins .= " left join tt_clients c on (l.client_id = c.id)";
708
709     $sql = "select l.id as id, TIME_FORMAT(l.start, $sql_time_format) as start,
710       TIME_FORMAT(sec_to_time(time_to_sec(l.start) + time_to_sec(l.duration)), $sql_time_format) as finish,
711       TIME_FORMAT(l.duration, '%k:%i') as duration, p.name as project, t.name as task, l.comment, l.billable, l.invoice_id $client_field
712       from tt_log l
713       $left_joins
714       where l.date = '$date' and l.user_id = $user_id and l.status = 1
715       order by l.start, l.id";
716     $res = $mdb2->query($sql);
717     if (!is_a($res, 'PEAR_Error')) {
718       while ($val = $res->fetchRow()) {
719         if($val['duration']=='0:00')
720           $val['finish'] = '';
721         $result[] = $val;
722       }
723     } else return false;
724
725     return $result;
726   }
727 }