Fixed prePopulateFromPastWeeks for week view plugin.
[timetracker.git] / WEB-INF / lib / ttWeekViewHelper.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 // ttWeekViewHelper class groups together functions used in week view.
30 class ttWeekViewHelper {
31
32   // getRecordsForInterval - returns time records for a user for a given interval of dates.
33   static function getRecordsForInterval($start_date, $end_date, $includeFiles = false) {
34     global $user;
35
36     $user_id = $user->getUser();
37     $group_id = $user->getGroup();
38     $org_id = $user->org_id;
39
40     $sql_time_format = "'%k:%i'"; //  24 hour format.
41     if ('%I:%M %p' == $user->time_format)
42       $sql_time_format = "'%h:%i %p'"; // 12 hour format for MySQL TIME_FORMAT function.
43
44     $result = array();
45     $mdb2 = getConnection();
46
47     $client_field = null;
48     if ($user->isPluginEnabled('cl'))
49       $client_field = ', c.id as client_id, c.name as client';
50
51     $custom_field_1 = null;
52     if ($user->isPluginEnabled('cf')) {
53       $custom_fields = new CustomFields();
54       $cf_1_type = $custom_fields->fields[0]['type'];
55       if ($cf_1_type == CustomFields::TYPE_TEXT) {
56         $custom_field_1 = ', cfl.value as cf_1_value';
57       } elseif ($cf_1_type == CustomFields::TYPE_DROPDOWN) {
58         $custom_field_1 = ', cfo.id as cf_1_id, cfo.value as cf_1_value';
59       }
60     }
61
62     if ($includeFiles) {
63       $filePart = ', if(Sub1.entity_id is null, 0, 1) as has_files';
64       $fileJoin =  " left join (select distinct entity_id from tt_files".
65       " where entity_type = 'time' and group_id = $group_id and org_id = $org_id and status = 1) Sub1".
66       " on (l.id = Sub1.entity_id)";
67     }
68
69     $left_joins = " left join tt_projects p on (l.project_id = p.id)".
70       " left join tt_tasks t on (l.task_id = t.id)";
71     if ($user->isPluginEnabled('cl'))
72       $left_joins .= " left join tt_clients c on (l.client_id = c.id)";
73     if ($user->isPluginEnabled('cf')) {
74       if ($custom_fields->fields[0]['type'] == CustomFields::TYPE_TEXT)
75         $left_joins .= 'left join tt_custom_field_log cfl on (l.id = cfl.log_id and cfl.status = 1) left join tt_custom_field_options cfo on (cfl.value = cfo.id) ';
76       elseif ($custom_fields->fields[0]['type'] == CustomFields::TYPE_DROPDOWN)
77         $left_joins .= 'left join tt_custom_field_log cfl on (l.id = cfl.log_id and cfl.status = 1) left join tt_custom_field_options cfo on (cfl.option_id = cfo.id) ';
78     }
79     $left_joins .= $fileJoin;
80
81     $sql = "select l.id as id, l.date as date, TIME_FORMAT(l.start, $sql_time_format) as start,".
82       " TIME_FORMAT(sec_to_time(time_to_sec(l.start) + time_to_sec(l.duration)), $sql_time_format) as finish,".
83       " TIME_FORMAT(l.duration, '%k:%i') as duration, p.id as project_id, p.name as project,".
84       " t.id as task_id, t.name as task, l.comment, l.billable, l.invoice_id $client_field $custom_field_1 $filePart".
85       " from tt_log l $left_joins".
86       " where l.date >= '$start_date' and l.date <= '$end_date'".
87       " and l.user_id = $user_id and l.group_id = $group_id and l.org_id = $org_id and l.status = 1".
88       " order by l.date, p.name, t.name, l.start, l.id";
89     $res = $mdb2->query($sql);
90     if (!is_a($res, 'PEAR_Error')) {
91       while ($val = $res->fetchRow()) {
92         if($val['duration']=='0:00')
93           $val['finish'] = '';
94         $result[] = $val;
95       }
96     } else return false;
97
98     return $result;
99   }
100
101   // getDataForWeekView - builds an array to render a table of durations and comments for a week view.
102   // In a week view we want one row representing the same attributes to have 7 values for each day of week.
103   // We identify similar records by a combination of client, billable, project, task, and custom field values.
104   // This will allow us to extend the feature when more custom fields are added.
105   //
106   // "cl:546,bl:1,pr:23456,ts:27464,cf_1:example text"
107   // The above means client 546, billable, project 23456, task 27464, custom field text "example text".
108   //
109   // "cl:546,bl:0,pr:23456,ts:27464,cf_1:7623"
110   // The above means client 546, not billable, project 23456, task 27464, custom field option id 7623.
111   //
112   // Daily comments are implemented as alternate rows following week durations (when enabled).
113   // For example: row_0 - new entry durations, row_1 - new entry daily comments,
114   //              row_2 - existing entry durations, row_3 - existing entry comments, etc.
115   //
116   // Description of $dataArray format that the function returns.
117   // $dataArray = array(
118   //   array( // Row 0. This is a special, one-off row for a new week entry with empty values.
119   //     'row_id' => null, // Row identifier. Null for a new entry.
120   //     'label' => 'New entry:', // Human readable label for the row describing what this time entry is for.
121   //     'day_0' => array('control_id' => '0_day_0', 'tt_log_id' => null, 'duration' => null), // control_id is row_id plus day header for column.
122   //     'day_1' => array('control_id' => '0_day_1', 'tt_log_id' => null, 'duration' => null),
123   //     'day_2' => array('control_id' => '0_day_2', 'tt_log_id' => null, 'duration' => null),
124   //     'day_3' => array('control_id' => '0_day_3', 'tt_log_id' => null, 'duration' => null),
125   //     'day_4' => array('control_id' => '0_day_4', 'tt_log_id' => null, 'duration' => null),
126   //     'day_5' => array('control_id' => '0_day_5', 'tt_log_id' => null, 'duration' => null),
127   //     'day_6' => array('control_id' => '0_day_6', 'tt_log_id' => null, 'duration' => null)
128   //   ),
129   //
130   //   array( // Row 1. This row represents daily comments for a new entry in row above (row 0).
131   //     'row_id' => null,
132   //     'label' => 'Notes:',
133   //     'day_0' => array('control_id' => '1_day_0', 'tt_log_id' => null, 'note' => null),
134   //     'day_1' => array('control_id' => '1_day_1', 'tt_log_id' => null, 'note' => null),
135   //     'day_2' => array('control_id' => '1_day_2', 'tt_log_id' => null, 'note' => null),
136   //     'day_3' => array('control_id' => '1_day_3', 'tt_log_id' => null, 'note' => null),
137   //     'day_4' => array('control_id' => '1_day_4', 'tt_log_id' => null, 'note' => null),
138   //     'day_5' => array('control_id' => '1_day_5', 'tt_log_id' => null, 'note' => null),
139   //     'day_6' => array('control_id' => '1_day_6', 'tt_log_id' => null, 'note' => null)
140   //   ),
141   //
142   //   array( // Row 2.
143   //     'row_id' => 'cl:546,bl:1,pr:23456,ts:27464,cf_1:7623_0',
144   //     'label' => 'Anuko - Time Tracker - Coding - Option 2',
145   //     'day_0' => array('control_id' => '2_day_0', 'tt_log_id' => 12345, 'duration' => '00:00'),
146   //     'day_1' => array('control_id' => '2_day_1', 'tt_log_id' => 12346, 'duration' => '01:00'),
147   //     'day_2' => array('control_id' => '2_day_2', 'tt_log_id' => 12347, 'duration' => '02:00'),
148   //     'day_3' => array('control_id' => '2_day_3', 'tt_log_id' => null, 'duration' => null),
149   //     'day_4' => array('control_id' => '2_day_4', 'tt_log_id' => 12348, 'duration' => '04:00'),
150   //     'day_5' => array('control_id' => '2_day_5', 'tt_log_id' => 12349, 'duration' => '04:00'),
151   //     'day_6' => array('control_id' => '2_day_6', 'tt_log_id' => null, 'duration' => null)
152   //   ),
153   //   array( // Row 3.
154   //     'row_id' => 'cl:546,bl:1,pr:23456,ts:27464,cf_1:7623_0_notes',
155   //     'label' => 'Notes:',
156   //     'day_0' => array('control_id' => '3_day_0', 'tt_log_id' => 12345, 'note' => 'Comment one'),
157   //     'day_1' => array('control_id' => '3_day_1', 'tt_log_id' => 12346, 'note' => 'Comment two'),
158   //     'day_2' => array('control_id' => '3_day_2', 'tt_log_id' => 12347, 'note' => 'Comment three'),
159   //     'day_3' => array('control_id' => '3_day_3', 'tt_log_id' => null, 'note' => null),
160   //     'day_4' => array('control_id' => '3_day_4', 'tt_log_id' => 12348, 'note' => 'Comment four'),
161   //     'day_5' => array('control_id' => '3_day_5', 'tt_log_id' => 12349, 'note' => 'Comment five'),
162   //     'day_6' => array('control_id' => '3_day_6', 'tt_log_id' => null, 'note' => null)
163   //   )
164   // );
165   static function getDataForWeekView($records, $dayHeaders) {
166     global $user;
167     global $i18n;
168
169     $dataArray = array();
170
171     // Construct the first row for a brand new entry.
172     $dataArray[] = array('row_id' => null,'label' => $i18n->get('form.week.new_entry').':'); // Insert row.
173     // Insert empty cells with proper control ids.
174     for ($i = 0; $i < 7; $i++) {
175       $control_id = '0_'. $dayHeaders[$i];
176       $dataArray[0][$dayHeaders[$i]] = array('control_id' => $control_id, 'tt_log_id' => null,'duration' => null);
177     }
178     if ($user->isPluginEnabled('wvns')) {
179       // Construct the second row for daily comments for a brand new entry.
180       $dataArray[] = array('row_id' => null,'label' => $i18n->get('label.notes').':'); // Insert row.
181       // Insert empty cells with proper control ids.
182       for ($i = 0; $i < 7; $i++) {
183         $control_id = '1_'. $dayHeaders[$i];
184         $dataArray[1][$dayHeaders[$i]] = array('control_id' => $control_id, 'tt_log_id' => null,'note' => null);
185       }
186     }
187
188     // Iterate through records and build $dataArray cell by cell.
189     foreach ($records as $record) {
190       // Create row id without suffix.
191       $row_id_no_suffix = ttWeekViewHelper::makeRowIdentifier($record);
192       // Handle potential multiple records with the same attributes by using a numerical suffix.
193       $suffix = 0;
194       $row_id = $row_id_no_suffix.'_'.$suffix;
195       $day_header = substr($record['date'], 8); // Day number in month.
196       while (ttWeekViewHelper::cellExists($row_id, $day_header, $dataArray)) {
197         $suffix++;
198         $row_id = $row_id_no_suffix.'_'.$suffix;
199       }
200       // Find row.
201       $pos = ttWeekViewHelper::findRow($row_id, $dataArray);
202       if ($pos < 0) {
203         // Insert row for durations.
204         $dataArray[] = array('row_id' => $row_id,'label' => ttWeekViewHelper::makeRowLabel($record));
205         $pos = ttWeekViewHelper::findRow($row_id, $dataArray);
206         // Insert empty cells with proper control ids.
207         for ($i = 0; $i < 7; $i++) {
208           $control_id = $pos.'_'. $dayHeaders[$i];
209           $dataArray[$pos][$dayHeaders[$i]] = array('control_id' => $control_id, 'tt_log_id' => null,'duration' => null);
210         }
211         // Insert row for comments.
212         if ($user->isPluginEnabled('wvns')) {
213           $dataArray[] = array('row_id' => $row_id.'_notes','label' => $i18n->get('label.notes').':');
214           $pos++;
215           // Insert empty cells with proper control ids.
216           for ($i = 0; $i < 7; $i++) {
217             $control_id = $pos.'_'. $dayHeaders[$i];
218             $dataArray[$pos][$dayHeaders[$i]] = array('control_id' => $control_id, 'tt_log_id' => null,'note' => null);
219           }
220           $pos--;
221         }
222       }
223       // Insert actual cell data from $record (one cell only).
224       $dataArray[$pos][$day_header] = array('control_id' => $pos.'_'. $day_header, 'tt_log_id' => $record['id'],'duration' => $record['duration']);
225       // Insert existing comment from $record into the comment cell.
226       if ($user->isPluginEnabled('wvns')) {
227         $pos++;
228         $dataArray[$pos][$day_header] = array('control_id' => $pos.'_'. $day_header, 'tt_log_id' => $record['id'],'note' => $record['comment']);
229       }
230     }
231     return $dataArray;
232   }
233
234   // prePopulateFromPastWeeks - is a complementary function to getDataForWeekView.
235   // It builds an "empty" $dataArray with only labels present. Labels are taken from
236   // the most recent active past week, up to 5 weeks back from now.
237   // This is a data entry acceleration feature to help users quickly populate their
238   // regular entry list for a new week, even after a long vacation.
239   static function prePopulateFromPastWeeks($startDate, $dayHeaders) {
240     global $user;
241     global $i18n;
242
243     // First, determine past week start and end dates.
244     $objDate = new DateAndTime(DB_DATEFORMAT, $startDate);
245     $objDate->decDay(7);
246     $pastWeekStartDate = $objDate->toString(DB_DATEFORMAT);
247     $objDate->incDay(6);
248     $pastWeekEndDate = $objDate->toString(DB_DATEFORMAT);
249     unset($objDate);
250
251     // Obtain past week(s) records.
252     $records = ttWeekViewHelper::getRecordsForInterval($pastWeekStartDate, $pastWeekEndDate);
253     // Handle potential situation of no records by re-trying for up to 4 more previous weeks (after a long vacation, etc.).
254     if (!$records) {
255       for ($i = 0; $i < 4; $i++) {
256         $objDate = new DateAndTime(DB_DATEFORMAT, $pastWeekStartDate);
257         $objDate->decDay(7);
258         $pastWeekStartDate = $objDate->toString(DB_DATEFORMAT);
259         $objDate->incDay(6);
260         $pastWeekEndDate = $objDate->toString(DB_DATEFORMAT);
261         unset($objDate);
262
263         $records = ttWeekViewHelper::getRecordsForInterval($pastWeekStartDate, $pastWeekEndDate);
264         // Break out of the loop if we found something.
265         if ($records) break;
266       }
267     }
268
269     // Construct the first row for a brand new entry.
270     $dataArray[] = array('row_id' => null,'label' => $i18n->get('form.week.new_entry').':'); // Insert row.
271     // Insert empty cells with proper control ids.
272     for ($i = 0; $i < 7; $i++) {
273       $control_id = '0_'. $dayHeaders[$i];
274       $dataArray[0][$dayHeaders[$i]] = array('control_id' => $control_id, 'tt_log_id' => null,'duration' => null);
275     }
276     if ($user->isPluginEnabled('wvns')) {
277       // Construct the second row for daily comments for a brand new entry.
278       $dataArray[] = array('row_id' => null,'label' => $i18n->get('label.notes').':'); // Insert row.
279       // Insert empty cells with proper control ids.
280       for ($i = 0; $i < 7; $i++) {
281         $control_id = '1_'. $dayHeaders[$i];
282         $dataArray[1][$dayHeaders[$i]] = array('control_id' => $control_id, 'tt_log_id' => null,'note' => null);
283       }
284     }
285
286     // Iterate through records and build an "empty" $dataArray.
287     foreach ($records as $record) {
288       // Create row id with 0 suffix. In prepopulated view, we only need one row for similar records.
289       $row_id = ttWeekViewHelper::makeRowIdentifier($record).'_0';
290       // Find row.
291       $pos = ttWeekViewHelper::findRow($row_id, $dataArray);
292       if ($pos < 0) {
293         // Insert row for durations.
294         $dataArray[] = array('row_id' => $row_id,'label' => ttWeekViewHelper::makeRowLabel($record));
295         $pos = ttWeekViewHelper::findRow($row_id, $dataArray);
296         // Insert empty cells with proper control ids.
297         for ($i = 0; $i < 7; $i++) {
298           $control_id = $pos.'_'. $dayHeaders[$i];
299           $dataArray[$pos][$dayHeaders[$i]] = array('control_id' => $control_id, 'tt_log_id' => null,'duration' => null);
300         }
301         // Insert row for comments.
302         if ($user->isPluginEnabled('wvns')) {
303           $dataArray[] = array('row_id' => $row_id.'_notes','label' => $i18n->get('label.notes').':');
304           $pos++;
305           // Insert empty cells with proper control ids.
306           for ($i = 0; $i < 7; $i++) {
307             $control_id = $pos.'_'. $dayHeaders[$i];
308             $dataArray[$pos][$dayHeaders[$i]] = array('control_id' => $control_id, 'tt_log_id' => null,'note' => null);
309           }
310           $pos--;
311         }
312       }
313     }
314
315     return $dataArray;
316   }
317
318   // cellExists is a helper function for getDataForWeekView() to see if a cell with a given label
319   // and a day header already exists.
320   static function cellExists($row_id, $day_header, $dataArray) {
321     foreach($dataArray as $row) {
322       if ($row['row_id'] == $row_id && !empty($row[$day_header]['duration']))
323         return true;
324     }
325     return false;
326   }
327
328   // findRow returns an existing row position in $dataArray, -1 otherwise.
329   static function findRow($row_id, $dataArray) {
330     $pos = 0; // Row position in array.
331     foreach($dataArray as $row) {
332       if ($row['row_id'] == $row_id)
333         return $pos;
334       $pos++; // Increment for search.
335     }
336     return -1; // Row not found.
337   }
338
339   // getDayTotals calculates total durations for each day from the existing data in $dataArray.
340   static function getDayTotals($dataArray, $dayHeaders) {
341     $dayTotals = array();
342
343     // Insert label.
344     global $i18n;
345     $dayTotals['label'] = $i18n->get('label.day_total').':';
346
347     foreach ($dataArray as $row) {
348       foreach($dayHeaders as $dayHeader) {
349         if (array_key_exists($dayHeader, $row)) {
350           $minutes = ttTimeHelper::toMinutes($row[$dayHeader]['duration']);
351           $dayTotals[$dayHeader] += $minutes;
352         }
353       }
354     }
355     // Convert minutes to hh:mm for display.
356     foreach($dayHeaders as $dayHeader) {
357       $dayTotals[$dayHeader] = ttTimeHelper::toAbsDuration($dayTotals[$dayHeader]);
358     }
359     return $dayTotals;
360   }
361
362   // getDayHeadersForWeek - obtains day column headers for week view, which are simply day numbers in month.
363   static function getDayHeadersForWeek($start_date) {
364     $dayHeaders = array();
365     $objDate = new DateAndTime(DB_DATEFORMAT, $start_date);
366     $dayHeaders[] = (string) $objDate->getDate(); // It returns an int on first call.
367     if (strlen($dayHeaders[0]) == 1)              // Which is an implementation detail of DateAndTime class.
368       $dayHeaders[0] = '0'.$dayHeaders[0];        // Add a 0 for single digit day.
369     $objDate->incDay();
370     $dayHeaders[] = $objDate->getDate(); // After incDay it returns a string with leading 0, when necessary.
371     $objDate->incDay();
372     $dayHeaders[] = $objDate->getDate();
373     $objDate->incDay();
374     $dayHeaders[] = $objDate->getDate();
375     $objDate->incDay();
376     $dayHeaders[] = $objDate->getDate();
377     $objDate->incDay();
378     $dayHeaders[] = $objDate->getDate();
379     $objDate->incDay();
380     $dayHeaders[] = $objDate->getDate();
381     unset($objDate);
382     return $dayHeaders;
383   }
384
385   // getLockedDaysForWeek - builds an array of locked days in week.
386   static function getLockedDaysForWeek($start_date) {
387     global $user;
388     $lockedDays = array();
389     $objDate = new DateAndTime(DB_DATEFORMAT, $start_date);
390     for ($i = 0; $i < 7; $i++) {
391       $lockedDays[] = $user->isDateLocked($objDate);
392       $objDate->incDay();
393     }
394     unset($objDate);
395     return $lockedDays;
396   }
397
398   // makeRowIdentifier - builds a string identifying a row for a week view from a single record properties.
399   //                     Note that the return value is without a suffix.
400   // For example:
401   // "cl:546,bl:0,pr:23456,ts:27464,cf_1:example text"
402   // "cl:546,bl:1,pr:23456,ts:27464,cf_1:7623"
403   static function makeRowIdentifier($record) {
404     global $user;
405     // Start with client.
406     if ($user->isPluginEnabled('cl'))
407       $row_identifier = $record['client_id'] ? 'cl:'.$record['client_id'] : '';
408     // Add billable flag.
409     if (!empty($row_identifier)) $row_identifier .= ',';
410     $row_identifier .= 'bl:'.$record['billable'];
411     // Add project.
412     $row_identifier .= $record['project_id'] ? ',pr:'.$record['project_id'] : '';
413     // Add task.
414     $row_identifier .= $record['task_id'] ? ',ts:'.$record['task_id'] : '';
415     // Add custom field 1.
416     if ($user->isPluginEnabled('cf')) {
417       if ($record['cf_1_id'])
418         $row_identifier .= ',cf_1:'.$record['cf_1_id'];
419       else if ($record['cf_1_value'])
420         $row_identifier .= ',cf_1:'.$record['cf_1_value'];
421     }
422
423     return $row_identifier;
424   }
425
426   // makeRowLabel - builds a human readable label for a row in week view,
427   // which is a combination ot record properties.
428   // Client - Project - Task - Custom field 1.
429   // Note that billable property is not part of the label. Instead,
430   // we identify such records with a different color in week view.
431   static function makeRowLabel($record) {
432     global $user;
433     // Start with client.
434     if ($user->isPluginEnabled('cl'))
435       $label = $record['client'];
436
437     // Add project.
438     if (!empty($label) && !empty($record['project'])) $label .= ' - ';
439     $label .= $record['project'];
440
441     // Add task.
442     if (!empty($label) && !empty($record['task'])) $label .= ' - ';
443     $label .= $record['task'];
444
445     // Add custom field 1.
446     if ($user->isPluginEnabled('cf')) {
447       if (!empty($label) && !empty($record['cf_1_value'])) $label .= ' - ';
448       $label .= $record['cf_1_value'];
449     }
450
451     return $label;
452   }
453
454   // parseFromWeekViewRow - obtains field value encoded in row identifier.
455   // For example, for a row id like "cl:546,bl:0,pr:23456,ts:27464,cf_1:example text"
456   // requesting a client "cl" should return 546.
457   static function parseFromWeekViewRow($row_id, $field_label) {
458     // Find beginning of label.
459     $pos = strpos($row_id, $field_label);
460     if ($pos === false) return null; // Not found.
461
462     // Strip suffix from row id.
463     $suffixPos = strrpos($row_id, '_');
464     if ($suffixPos)
465       $remaninder = substr($row_id, 0, $suffixPos);
466
467     // Find beginning of value.
468     $posBegin = 1 + strpos($remaninder, ':', $pos);
469     // Find end of value.
470     $posEnd = strpos($remaninder, ',', $posBegin);
471     if ($posEnd === false) $posEnd = strlen($remaninder);
472     // Return value.
473     return substr($remaninder, $posBegin, $posEnd - $posBegin);
474   }
475
476   // dateFromDayHeader calculates date from start date and day header in week view.
477   static function dateFromDayHeader($start_date, $day_header) {
478     $objDate = new DateAndTime(DB_DATEFORMAT, $start_date);
479     $currentDayHeader = (string) $objDate->getDate(); // It returns an int on first call.
480     if (strlen($currentDayHeader) == 1)               // Which is an implementation detail of DateAndTime class.
481       $currentDayHeader = '0'.$currentDayHeader;      // Add a 0 for single digit day.
482     $i = 1;
483     while ($currentDayHeader != $day_header && $i < 7) {
484       // Iterate through remaining days to find a match.
485       $objDate->incDay();
486       $currentDayHeader = $objDate->getDate(); // After incDay it returns a string with leading 0, when necessary.
487       $i++;
488     }
489     return $objDate->toString(DB_DATEFORMAT);
490   }
491
492   // insertDurationFromWeekView - inserts a new record in log tables from a week view post.
493   static function insertDurationFromWeekView($fields, $custom_fields, $err) {
494     global $i18n;
495     global $user;
496
497     // Determine date for a new entry.
498     $entry_date = ttWeekViewHelper::dateFromDayHeader($fields['start_date'], $fields['day_header']);
499     $objEntryDate = new DateAndTime(DB_DATEFORMAT, $entry_date);
500
501     // Prohibit creating entries in future.
502     if (!$user->future_entries && $fields['browser_today']) {
503       $objBrowserToday = new DateAndTime(DB_DATEFORMAT, $fields['browser_today']);
504       if ($objEntryDate->after($objBrowserToday)) {
505         $err->add($i18n->get('error.future_date'));
506         return false;
507       }
508     }
509
510     // Prepare an array of fields for regular insert function.
511     $fields4insert = array();
512     $fields4insert['user_id'] = $user->getUser();
513     $fields4insert['group_id'] = $user->getGroup();
514     $fields4insert['org_id'] = $user->org_id;
515     $fields4insert['date'] = $entry_date;
516     $fields4insert['duration'] = $fields['duration'];
517     $fields4insert['client'] = ttWeekViewHelper::parseFromWeekViewRow($fields['row_id'], 'cl');
518     $fields4insert['billable'] = ttWeekViewHelper::parseFromWeekViewRow($fields['row_id'], 'bl');
519     $fields4insert['project'] = ttWeekViewHelper::parseFromWeekViewRow($fields['row_id'], 'pr');
520     $fields4insert['task'] = ttWeekViewHelper::parseFromWeekViewRow($fields['row_id'], 'ts');
521     $fields4insert['note'] = $fields['note'];
522
523     // Try to insert a record.
524     $id = ttTimeHelper::insert($fields4insert);
525     if (!$id) return false; // Something failed.
526
527     // Insert custom field if we have it.
528     $result = true;
529     $cf_1 = ttWeekViewHelper::parseFromWeekViewRow($fields['row_id'], 'cf_1');
530     if ($custom_fields && $cf_1) {
531       if ($custom_fields->fields[0]['type'] == CustomFields::TYPE_TEXT)
532         $result = $custom_fields->insert($id, $custom_fields->fields[0]['id'], null, $cf_1);
533       elseif ($custom_fields->fields[0]['type'] == CustomFields::TYPE_DROPDOWN)
534         $result = $custom_fields->insert($id, $custom_fields->fields[0]['id'], $cf_1, null);
535     }
536
537     return $result;
538   }
539
540   // modifyDurationFromWeekView - modifies a duration of an existing record from a week view post.
541   static function modifyDurationFromWeekView($fields, $err) {
542     global $i18n;
543     global $user;
544
545     // Possible errors: 1) Overlap if the existing record has start time. 2) Going beyond 24 hour boundary.
546     if (!ttWeekViewHelper::canModify($fields['tt_log_id'], $fields['duration'], $err))
547       return false;
548
549     $mdb2 = getConnection();
550     $duration = $fields['duration'];
551     $tt_log_id = $fields['tt_log_id'];
552     $user_id = $user->getUser();
553     $sql = "update tt_log set duration = '$duration' where id = $tt_log_id and user_id = $user_id";
554     $affected = $mdb2->exec($sql);
555     if (is_a($affected, 'PEAR_Error'))
556       return false;
557
558     return true;
559   }
560
561   // canModify - determines if an  already existing tt_log record
562   // can be modified with a new user-provided duration.
563   static function canModify($tt_log_id, $new_duration, $err) {
564     global $i18n;
565     $mdb2 = getConnection();
566
567     // Determine if we have start time in record, as further checking does not makes sense otherwise.
568     $sql = "select user_id, date, start, duration from tt_log  where id = $tt_log_id";
569     $res = $mdb2->query($sql);
570     if (!is_a($res, 'PEAR_Error')) {
571       if (!$res->numRows()) {
572         $err->add($i18n->get('error.db')); // This is not expected.
573         return false;
574       }
575       $val = $res->fetchRow();
576       $oldDuration = $val['duration'];
577       if (!$val['start'])
578         return true; // There is no start time in the record, therefore safe to modify.
579     }
580
581     // We do have start time.
582     // Quick test if new duration is less then already existing.
583     $newMinutes = ttTimeHelper::toMinutes($new_duration);
584     $oldMinutes = ttTimeHelper::toMinutes($oldDuration);
585     if ($newMinutes < $oldMinutes)
586       return true; // Safe to modify.
587
588     // Does the new duration put the record beyond 24:00 boundary?
589     $startMinutes = ttTimeHelper::toMinutes($val['start']);
590     $newEndMinutes = $startMinutes + $newMinutes;
591     if ($newEndMinutes > 1440) {
592       // Invalid duration, as new duration puts the record beyond current day.
593       $err->add($i18n->get('error.field'), $i18n->get('label.duration'));
594       return false;
595     }
596
597     // Does the new duration causes the record to overlap with others?
598     $user_id = $val['user_id'];
599     $date = $val['date'];
600     $startMinutes = ttTimeHelper::toMinutes($val['start']);
601     $start = ttTimeHelper::toAbsDuration($startMinutes);
602     $finish = ttTimeHelper::toAbsDuration($newEndMinutes);
603     if (ttTimeHelper::overlaps($user_id, $date, $start, $finish, $tt_log_id)) {
604       $err->add($i18n->get('error.overlap'));
605       return false;
606     }
607
608     return true; // There are no conflicts, safe to modify.
609   }
610
611   // modifyCommentFromWeekView - modifies a comment in an existing record from a week view post.
612   static function modifyCommentFromWeekView($fields) {
613     global $user;
614
615     $mdb2 = getConnection();
616     $tt_log_id = $fields['tt_log_id'];
617     $comment = $fields['comment'];
618     $user_id = $user->getUser();
619     $sql = "update tt_log set comment = ".$mdb2->quote($fields['comment'])." where id = $tt_log_id and user_id = $user_id";
620     $affected = $mdb2->exec($sql);
621     if (is_a($affected, 'PEAR_Error'))
622       return false;
623
624     return true;
625   }
626 }