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.
 
  11 // | There are only two ways to violate the license:
 
  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).
 
  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).
 
  21 // | This license applies to this document only, not any other software
 
  22 // | that it may be combined with.
 
  24 // +----------------------------------------------------------------------+
 
  26 // | https://www.anuko.com/time_tracker/credits.htm
 
  27 // +----------------------------------------------------------------------+
 
  29 import('DateAndTime');
 
  31 // The ttTimeHelper is a class to help with time-related values.
 
  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);
 
  40   // isHoliday determines if $date falls on a holiday.
 
  41   static function isHoliday($date) {
 
  45     if (!$user->show_holidays) return false;
 
  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))
 
  56   // isValidTime validates a value as a time string.
 
  57   static function isValidTime($value) {
 
  58     if (strlen($value)==0 || !isset($value)) return false;
 
  61     if ($value == '24:00' || $value == '2400') return true;
 
  63     if (preg_match('/^([0-1]{0,1}[0-9]|[2][0-3]):?[0-5][0-9]$/', $value )) { // 0:00 - 23:59, 000 - 2359
 
  66     if (preg_match('/^([0-1]{0,1}[0-9]|[2][0-4])$/', $value )) { // 0 - 24
 
  71     if (preg_match('/^[1-9]\s?(am|AM|pm|PM)$/', $value)) { // 1 - 9 am
 
  74     if (preg_match('/^(0[1-9]|1[0-2])\s?(am|AM|pm|PM)$/', $value)) { // 01 - 12 am
 
  77     if (preg_match('/^[1-9]:?[0-5][0-9]\s?(am|AM|pm|PM)$/', $value)) { // 1:00 - 9:59 am, 100 - 959 am
 
  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
 
  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;
 
  91     if ($value == '24:00' || $value == '2400') return true;
 
  93     if (preg_match('/^([0-1]{0,1}[0-9]|2[0-3]):?[0-5][0-9]$/', $value )) { // 0:00 - 23:59, 000 - 2359
 
  96     if (preg_match('/^([0-1]{0,1}[0-9]|2[0-4])h?$/', $value )) { // 0, 1 ... 24
 
 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)
 
 109   // postedDurationToMinutes - converts a value representing a duration
 
 110   // (usually enetered in a form by a user) to an integer number of minutes.
 
 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.
 
 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.
 
 125   //   2) A duration of a monthly quota, with max value of 31*24*60 minutes.
 
 127   // This function is generic to be used for both types.
 
 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.
 
 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;
 
 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;
 
 148     // Handle localized fractional hours.
 
 150     $localizedPattern = '/^(\d{1,3})?['.$user->getDecimalMark().'][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->getDecimalMark() == ',')
 
 153           $duration = str_replace (',', '.', $duration);
 
 155         $minutes = (int)round(60 * floatval($duration));
 
 156         return $minutes > $max ? false : $minutes;
 
 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;
 
 165     // Everything else is not a valid duration.
 
 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;
 
 174     $hours = (string) (int)($minutes / 60);
 
 175     $mins = (string) round(fmod($minutes, 60));
 
 176     if (strlen($mins) == 1)
 
 178     if ($abbreviate && $mins == '00')
 
 181     return $hours.':'.$mins;
 
 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;
 
 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)
 
 197     if ($abbreviate && $mins == '00')
 
 200     return $hours.':'.$mins;
 
 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;
 
 208     return ttTimeHelper::toAbsDuration($duration_minutes);
 
 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';
 
 215     $time_a = explode(':', $value);
 
 217       $res = (string)((int)$time_a[0] - 12).':'.$time_a[1].' PM';
 
 218     elseif ($time_a[0] == 12)
 
 220     elseif ($time_a[0] == 0)
 
 221       $res = '12:'.$time_a[1].' AM';
 
 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) {
 
 232     // Algorithm: use regular expressions to find a matching pattern, starting with most popular patterns first.
 
 233     $tmp_val = trim($value);
 
 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.
 
 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.
 
 246     if (preg_match('/^[0-9]$/', $tmp_val)) { // 0 - 9
 
 247       // Single digit. Assuming hour number.
 
 248       $res = '0'.$tmp_val.':00';
 
 251     if (preg_match('/^([01][0-9]|2[0-4])$/', $tmp_val)) { // 00 - 24
 
 252       // Two digit hour number.
 
 253       $res = $tmp_val.':00';
 
 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];
 
 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];
 
 268     // Special handling for midnight.
 
 269     if ($tmp_val == '24:00' || $tmp_val == '2400')
 
 272     // 12 hour AM patterns.
 
 273     if (preg_match('/.(am|AM)$/', $tmp_val)) {
 
 275       // The $value ends in am or AM. Strip it.
 
 276       $tmp_val = rtrim(substr($tmp_val, 0, -2));
 
 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);
 
 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.
 
 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.
 
 293       if (preg_match('/^[1-9]$/', $tmp_val)) { // 1 - 9
 
 294         // Single digit. Assuming hour number.
 
 295         $res = '0'.$tmp_val.':00';
 
 298       if (preg_match('/^(0[0-9]|1[0-1])$/', $tmp_val)) { // 00 - 11
 
 299         // Two digit hour number.
 
 300         $res = $tmp_val.':00';
 
 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];
 
 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];
 
 315     } // AM cases handling.
 
 317     // 12 hour PM patterns.
 
 318     if (preg_match('/.(pm|PM)$/', $tmp_val)) {
 
 320       // The $value ends in pm or PM. Strip it.
 
 321       $tmp_val = rtrim(substr($tmp_val, 0, -2));
 
 323       if (preg_match('/^[1-9]$/', $tmp_val)) { // 1 - 9
 
 324         // Single digit. Assuming hour number.
 
 325         $hour = (string)(12 + (int)$tmp_val);
 
 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';
 
 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];
 
 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);
 
 348           $hour = (string)(12 + (int)$hour);
 
 349         $res = $hour.':'.$min;
 
 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;
 
 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);
 
 363           $hour = (string)(12 + (int)$hour);
 
 364         $res = $hour.':'.$min;
 
 367     } // PM cases handling.
 
 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';
 
 378     $minutesStart = ttTimeHelper::toMinutes($start);
 
 379     $minutesFinish = ttTimeHelper::toMinutes($finish);
 
 380     if ($minutesFinish > $minutesStart)
 
 386   // insert - inserts a time record into tt_log table. Does not deal with custom fields.
 
 387   static function insert($fields)
 
 390     $mdb2 = getConnection();
 
 392     $user_id = (int) $fields['user_id'];
 
 393     $group_id = (int) $fields['group_id'];
 
 394     $org_id = (int) $fields['org_id'];
 
 395     $date = $fields['date'];
 
 396     $start = $fields['start'];
 
 397     $finish = $fields['finish'];
 
 398     $duration = $fields['duration'];
 
 400       $minutes = ttTimeHelper::postedDurationToMinutes($duration);
 
 401       $duration = ttTimeHelper::minutesToDuration($minutes);
 
 403     $client = $fields['client'];
 
 404     $project = $fields['project'];
 
 405     $task = $fields['task'];
 
 406     $invoice = $fields['invoice'];
 
 407     $note = $fields['note'];
 
 408     $billable = $fields['billable'];
 
 409     $paid = $fields['paid'];
 
 410     if (array_key_exists('status', $fields)) { // Key exists and may be NULL during migration of data.
 
 411       $status_f = ', status';
 
 412       $status_v = ', '.$mdb2->quote($fields['status']);
 
 415     $start = ttTimeHelper::to24HourFormat($start);
 
 417       $finish = ttTimeHelper::to24HourFormat($finish);
 
 418       if ('00:00' == $finish) $finish = '24:00';
 
 421     $created_v = ', now(), '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', '.$user->id;
 
 423     if (!$billable) $billable = 0;
 
 424     if (!$paid) $paid = 0;
 
 427       $sql = "insert into tt_log (user_id, group_id, org_id, date, duration, client_id, project_id, task_id, invoice_id, comment, billable, paid, created, created_ip, created_by $status_f) ".
 
 428         "values ($user_id, $group_id, $org_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)";
 
 429       $affected = $mdb2->exec($sql);
 
 430       if (is_a($affected, 'PEAR_Error'))
 
 433       $duration = ttTimeHelper::toDuration($start, $finish);
 
 434       if ($duration === false) $duration = 0;
 
 435       if (!$duration && ttTimeHelper::getUncompleted($user_id)) return false;
 
 437       $sql = "insert into tt_log (user_id, group_id, org_id, date, start, duration, client_id, project_id, task_id, invoice_id, comment, billable, paid, created, created_ip, created_by $status_f) ".
 
 438         "values ($user_id, $group_id, $org_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)";
 
 439       $affected = $mdb2->exec($sql);
 
 440       if (is_a($affected, 'PEAR_Error'))
 
 444     $id = $mdb2->lastInsertID('tt_log', 'id');
 
 448   // update - updates a record in log table. Does not update its custom fields.
 
 449   static function update($fields)
 
 452     $mdb2 = getConnection();
 
 455     $date = $fields['date'];
 
 456     $user_id = $fields['user_id'];
 
 457     $client = $fields['client'];
 
 458     $project = $fields['project'];
 
 459     $task = $fields['task'];
 
 460     $start = $fields['start'];
 
 461     $finish = $fields['finish'];
 
 462     $duration = $fields['duration'];
 
 464       $minutes = ttTimeHelper::postedDurationToMinutes($duration);
 
 465       $duration = ttTimeHelper::minutesToDuration($minutes);
 
 467     $note = $fields['note'];
 
 470     if ($user->isPluginEnabled('iv')) {
 
 471       $billable_part = $fields['billable'] ? ', billable = 1' : ', billable = 0';
 
 474     if ($user->can('manage_invoices') && $user->isPluginEnabled('ps')) {
 
 475       $paid_part = $fields['paid'] ? ', paid = 1' : ', paid = 0';
 
 477     $modified_part = ', modified = now(), modified_ip = '.$mdb2->quote($_SERVER['REMOTE_ADDR']).', modified_by = '.$user->id;
 
 479     $start = ttTimeHelper::to24HourFormat($start);
 
 480     $finish = ttTimeHelper::to24HourFormat($finish);
 
 481     if ('00:00' == $finish) $finish = '24:00';
 
 483     if ($start) $duration = '';
 
 486       $sql = "UPDATE tt_log set start = NULL, duration = '$duration', client_id = ".$mdb2->quote($client).", project_id = ".$mdb2->quote($project).", task_id = ".$mdb2->quote($task).", ".
 
 487         "comment = ".$mdb2->quote($note)."$billable_part $paid_part $modified_part, date = '$date' WHERE id = $id";
 
 488       $affected = $mdb2->exec($sql);
 
 489       if (is_a($affected, 'PEAR_Error'))
 
 492       $duration = ttTimeHelper::toDuration($start, $finish);
 
 493       if ($duration === false)
 
 495       $uncompleted = ttTimeHelper::getUncompleted($user_id);
 
 496       if (!$duration && $uncompleted && ($uncompleted['id'] != $id))
 
 499       $sql = "UPDATE tt_log SET start = '$start', duration = '$duration', client_id = ".$mdb2->quote($client).", project_id = ".$mdb2->quote($project).", task_id = ".$mdb2->quote($task).", ".
 
 500         "comment = ".$mdb2->quote($note)."$billable_part $paid_part $modified_part, date = '$date' WHERE id = $id";
 
 501       $affected = $mdb2->exec($sql);
 
 502       if (is_a($affected, 'PEAR_Error'))
 
 508   // delete - deletes a record from tt_log table and its associated custom field values.
 
 509   static function delete($id) {
 
 511     $mdb2 = getConnection();
 
 513     $user_id = $user->getUser();
 
 514     $group_id = $user->getGroup();
 
 515     $org_id = $user->org_id;
 
 517     $sql = "update tt_log set status = null".
 
 518       " where id = $id and user_id = $user_id and group_id = $group_id and org_id = $org_id";
 
 519     $affected = $mdb2->exec($sql);
 
 520     if (is_a($affected, 'PEAR_Error'))
 
 523     $sql = "update tt_custom_field_log set status = null".
 
 524       " where log_id = $id and group_id = $group_id and org_id = $org_id";
 
 525     $affected = $mdb2->exec($sql);
 
 526     if (is_a($affected, 'PEAR_Error'))
 
 532   // getTimeForDay - gets total time for a user for a specific date.
 
 533   static function getTimeForDay($date) {
 
 535     $mdb2 = getConnection();
 
 537     $user_id = $user->getUser();
 
 538     $group_id = $user->getGroup();
 
 539     $org_id = $user->org_id;
 
 541     $sql = "select sum(time_to_sec(duration)) as sm from tt_log".
 
 542       " where user_id = $user_id and group_id = $group_id and org_id = $org_id and date = '$date' and status = 1";
 
 543     $res = $mdb2->query($sql);
 
 544     if (!is_a($res, 'PEAR_Error')) {
 
 545       $val = $res->fetchRow();
 
 546       return sec_to_time_fmt_hm($val['sm']);
 
 551   // getTimeForWeek - gets total time for a user for a given week.
 
 552   static function getTimeForWeek($date) {
 
 555     $mdb2 = getConnection();
 
 557     $user_id = $user->getUser();
 
 558     $group_id = $user->getGroup();
 
 559     $org_id = $user->org_id;
 
 561     $period = new Period(INTERVAL_THIS_WEEK, $date);
 
 562     $sql = "select sum(time_to_sec(duration)) as sm from tt_log".
 
 563       " where user_id = $user_id and group_id = $group_id and org_id = $org_id".
 
 564       " and date >= '".$period->getStartDate(DB_DATEFORMAT)."' and date <= '".$period->getEndDate(DB_DATEFORMAT)."' and status = 1";
 
 565     $res = $mdb2->query($sql);
 
 566     if (!is_a($res, 'PEAR_Error')) {
 
 567       $val = $res->fetchRow();
 
 568       return sec_to_time_fmt_hm($val['sm']);
 
 573   // getTimeForMonth - gets total time for a user for a given month.
 
 574   static function getTimeForMonth($date) {
 
 577     $mdb2 = getConnection();
 
 579     $user_id = $user->getUser();
 
 580     $group_id = $user->getGroup();
 
 581     $org_id = $user->org_id;
 
 583     $period = new Period(INTERVAL_THIS_MONTH, $date);
 
 584     $sql = "select sum(time_to_sec(duration)) as sm from tt_log".
 
 585       " where user_id = $user_id and group_id = $group_id and org_id = $org_id".
 
 586       " and date >= '".$period->getStartDate(DB_DATEFORMAT)."' and date <= '".$period->getEndDate(DB_DATEFORMAT)."' and status = 1";
 
 587     $res = $mdb2->query($sql);
 
 588     if (!is_a($res, 'PEAR_Error')) {
 
 589       $val = $res->fetchRow();
 
 590       return sec_to_time_fmt_hm($val['sm']);
 
 595   // getUncompleted - retrieves an uncompleted record for user, if one exists.
 
 596   static function getUncompleted($user_id) {
 
 597     $mdb2 = getConnection();
 
 599     $sql = "select id, start from tt_log  
 
 600       where user_id = $user_id and start is not null and time_to_sec(duration) = 0 and status = 1";
 
 601     $res = $mdb2->query($sql);
 
 602     if (!is_a($res, 'PEAR_Error')) {
 
 603       if (!$res->numRows()) {
 
 606       if ($val = $res->fetchRow()) {
 
 613   // overlaps - determines if a record overlaps with an already existing record.
 
 616   //   $user_id - user id for whom to determine overlap
 
 618   //   $start - new record start time
 
 619   //   $finish - new record finish time, may be null
 
 620   //   $record_id - optional record id we may be editing, excluded from overlap set
 
 621   static function overlaps($user_id, $date, $start, $finish, $record_id = null) {
 
 622     // Do not bother checking if we allow overlaps.
 
 624     if ($user->allow_overlap) return false;
 
 626     $mdb2 = getConnection();
 
 628     $start = ttTimeHelper::to24HourFormat($start);
 
 630       $finish = ttTimeHelper::to24HourFormat($finish);
 
 631       if ('00:00' == $finish) $finish = '24:00';
 
 633     // Handle these 3 overlap situations:
 
 634     // - start time in existing record
 
 635     // - end time in existing record
 
 636     // - record fully encloses existing record
 
 637     $sql = "select id from tt_log  
 
 638       where user_id = $user_id and date = ".$mdb2->quote($date)."
 
 639       and start is not null and duration is not null and status = 1 and (
 
 640       (cast(".$mdb2->quote($start)." as time) >= start and cast(".$mdb2->quote($start)." as time) < addtime(start, duration))";
 
 642       $sql .= " or (cast(".$mdb2->quote($finish)." as time) <= addtime(start, duration) and cast(".$mdb2->quote($finish)." as time) > start)
 
 643       or (cast(".$mdb2->quote($start)." as time) < start and cast(".$mdb2->quote($finish)." as time) > addtime(start, duration))";
 
 647       $sql .= " and id <> $record_id";
 
 649     $res = $mdb2->query($sql);
 
 650     if (!is_a($res, 'PEAR_Error')) {
 
 651       if (!$res->numRows()) {
 
 654       if ($val = $res->fetchRow()) {
 
 661   // getRecord - retrieves a time record identified by its id.
 
 662   static function getRecord($id, $user_id) {
 
 664     $sql_time_format = "'%k:%i'"; //  24 hour format.
 
 665     if ('%I:%M %p' == $user->time_format)
 
 666       $sql_time_format = "'%h:%i %p'"; // 12 hour format for MySQL TIME_FORMAT function.
 
 668     $mdb2 = getConnection();
 
 670     $sql = "select l.id as id, TIME_FORMAT(l.start, $sql_time_format) as start,
 
 671       TIME_FORMAT(sec_to_time(time_to_sec(l.start) + time_to_sec(l.duration)), $sql_time_format) as finish,
 
 672       TIME_FORMAT(l.duration, '%k:%i') as duration,
 
 673       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
 
 675       left join tt_projects p on (p.id = l.project_id)
 
 676       left join tt_tasks t on (t.id = l.task_id)
 
 677       where l.id = $id and l.user_id = $user_id and l.status = 1";
 
 678     $res = $mdb2->query($sql);
 
 679     if (!is_a($res, 'PEAR_Error')) {
 
 680       if (!$res->numRows()) {
 
 683       if ($val = $res->fetchRow()) {
 
 690   // getAllRecords - returns all time records for a certain user.
 
 691   static function getAllRecords($user_id) {
 
 694     $mdb2 = getConnection();
 
 696     $sql = "select l.id, l.user_id, l.date, TIME_FORMAT(l.start, '%k:%i') as start,
 
 697       TIME_FORMAT(sec_to_time(time_to_sec(l.start) + time_to_sec(l.duration)), '%k:%i') as finish,
 
 698       TIME_FORMAT(l.duration, '%k:%i') as duration,
 
 699       l.client_id, l.project_id, l.task_id, l.invoice_id, l.comment, l.billable, l.paid, l.status
 
 700       from tt_log l where l.user_id = $user_id order by l.id";
 
 701     $res = $mdb2->query($sql);
 
 702     if (!is_a($res, 'PEAR_Error')) {
 
 703       while ($val = $res->fetchRow()) {
 
 711   // getRecords - returns time records for a user for a given date.
 
 712   static function getRecords($user_id, $date) {
 
 714     $mdb2 = getConnection();
 
 716     $group_id = $user->getGroup();
 
 717     $org_id = $user->org_id;
 
 719     $sql_time_format = "'%k:%i'"; //  24 hour format.
 
 720     if ('%I:%M %p' == $user->getTimeFormat())
 
 721       $sql_time_format = "'%h:%i %p'"; // 12 hour format for MySQL TIME_FORMAT function.
 
 723     $client_field = null;
 
 724     if ($user->isPluginEnabled('cl'))
 
 725       $client_field = ", c.name as client";
 
 727     $left_joins = " left join tt_projects p on (l.project_id = p.id)".
 
 728       " left join tt_tasks t on (l.task_id = t.id)";
 
 729     if ($user->isPluginEnabled('cl'))
 
 730       $left_joins .= " left join tt_clients c on (l.client_id = c.id)";
 
 733     $sql = "select l.id as id, TIME_FORMAT(l.start, $sql_time_format) as start,
 
 734       TIME_FORMAT(sec_to_time(time_to_sec(l.start) + time_to_sec(l.duration)), $sql_time_format) as finish,
 
 735       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
 
 738       where l.date = '$date' and l.user_id = $user_id and l.group_id = $group_id and l.org_id = $org_id and l.status = 1
 
 739       order by l.start, l.id";
 
 740     $res = $mdb2->query($sql);
 
 741     if (!is_a($res, 'PEAR_Error')) {
 
 742       while ($val = $res->fetchRow()) {
 
 743         if($val['duration']=='0:00')
 
 752   // canAdd determines if we can add a record in case there is a limit.
 
 753   static function canAdd() {
 
 754     $mdb2 = getConnection();
 
 755     $sql = "select param_value from tt_site_config where param_name = 'exp_date'";
 
 756     $res = $mdb2->query($sql);
 
 757     $val = $res->fetchRow();
 
 758     if (!$val) return true; // No expiration date.
 
 760     if (strtotime($val['param_value']) > time())
 
 761       return true; // Expiration date exists but not reached.