More work in progress on roles. Implemented status edit for roles.
[timetracker.git] / WEB-INF / lib / ttTaskHelper.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 // Class ttTaskHelper is used to help with task related operations.
30 class ttTaskHelper {
31
32   // get - gets details of a task identified by its id.
33   static function get($id)
34   {
35     global $user;
36  
37     $mdb2 = getConnection();
38
39     $sql = "select id, name, description, status from tt_tasks
40       where id = $id and team_id = $user->team_id and (status = 0 or status = 1)";
41     $res = $mdb2->query($sql);
42
43     if (!is_a($res, 'PEAR_Error')) {
44       $val = $res->fetchRow();
45           if ($val['id'] != '') {
46         return $val;
47       } else
48         return false;
49     }
50     return false;
51   }
52
53   // getAssignedProjects - returns an array of projects associatied with a task.
54   static function getAssignedProjects($task_id)
55   {
56         global $user;
57         
58     $result = array();
59     $mdb2 = getConnection();
60     
61     // Do a query with inner join to get assigned projects.
62     $sql = "select p.id, p.name from tt_projects p
63       inner join tt_project_task_binds ptb on (ptb.project_id = p.id and ptb.task_id = $task_id)
64       where p.team_id = $user->team_id and p.status = 1 order by p.name";
65     $res = $mdb2->query($sql);
66     if (!is_a($res, 'PEAR_Error')) {
67       while ($val = $res->fetchRow()) {
68         $result[] = $val;
69       }
70     }
71     return $result;
72   }
73   
74   // The getTaskByName looks up a task by name.
75   static function getTaskByName($task_name) {
76         
77     $mdb2 = getConnection();
78     global $user;
79
80     $sql = "select id from tt_tasks where team_id = $user->team_id and name = ".
81       $mdb2->quote($task_name)." and (status = 1 or status = 0)";
82       $res = $mdb2->query($sql);
83
84       if (!is_a($res, 'PEAR_Error')) {
85       $val = $res->fetchRow();
86       if ($val['id'])
87         return $val;
88     }
89     return false;
90   }
91  
92   // delete - deletes things associated with a task and marks the task as deleted. 
93   static function delete($task_id) {
94     global $user;
95             
96     $mdb2 = getConnection();
97
98     // Delete project binds to this task from tt_project_task_binds table.
99     $sql = "delete from tt_project_task_binds where task_id = $task_id";
100     $affected = $mdb2->exec($sql);
101     if (is_a($affected, 'PEAR_Error'))
102       return false;
103         
104     // Delete project binds to this task from the tasks field in tt_projects table.
105     // Get projects where tasks is not NULL.
106     $sql = "select id, tasks from tt_projects where team_id = $user->team_id and tasks is not NULL";
107     $res = $mdb2->query($sql);
108     if (is_a($res, 'PEAR_Error'))
109       return false;
110     while ($val = $res->fetchRow()) {
111       $project_id = $val['id'];
112       $tasks = explode(',', $val['tasks']);
113       
114       if (in_array($task_id, $tasks)) {
115         // Remove task from array.
116         unset($tasks[array_search($task_id, $tasks)]);
117         $comma_separated = implode(',', $tasks); // This is a new comma-separated list of associated task ids.
118       
119         // Re-bind the project to tasks.
120         $sql = "update tt_projects set tasks = ".$mdb2->quote($comma_separated)." where id = $project_id";
121         $affected = $mdb2->exec($sql);
122         if (is_a($affected, 'PEAR_Error'))
123           return false;
124       }
125     }
126
127     // Mark the task as deleted.
128     $sql = "update tt_tasks set status = NULL where id = $task_id";
129     $affected = $mdb2->exec($sql);
130     return (!is_a($affected, 'PEAR_Error'));
131   }
132   
133  // insert function inserts a new task into database.
134   static function insert($fields)
135   {
136     $mdb2 = getConnection();
137
138     $team_id = (int) $fields['team_id'];
139     $name = $fields['name'];
140     $description = $fields['description'];
141     $projects = $fields['projects'];
142     $status = $fields['status'];
143         
144     $sql = "insert into tt_tasks (team_id, name, description, status)
145       values ($team_id, ".$mdb2->quote($name).", ".$mdb2->quote($description).", ".$mdb2->quote($status).")";
146     $affected = $mdb2->exec($sql);
147     $last_id = 0;
148     if (is_a($affected, 'PEAR_Error'))
149       return false;
150
151     $sql = "select last_insert_id() as last_insert_id";
152     $res = $mdb2->query($sql);
153     $val = $res->fetchRow();
154     $last_id = $val['last_insert_id'];
155     
156     if (is_array($projects)) {
157       foreach ($projects as $p_id) {
158         // Insert task binds into tt_project_task_binds table.
159         $sql = "insert into tt_project_task_binds (project_id, task_id) values($p_id, $last_id)";
160         $affected = $mdb2->exec($sql);
161                 if (is_a($affected, 'PEAR_Error'))
162                   return false;
163
164                 // Add task bind to the tasks field of the tt_projects table.
165         $sql = "select tasks from tt_projects where id = $p_id";
166         $res = $mdb2->query($sql);
167         if (is_a($res, 'PEAR_Error'))
168           return false;
169
170         $val = $res->fetchRow();
171         $task_ids = $val['tasks'];
172         if ($task_ids) {
173                   $task_ids .= ",$last_id";
174                   $task_ids = ttTaskHelper::sort($task_ids);
175                 } else
176                   $task_ids = $last_id;
177
178         $sql = "update tt_projects set tasks = ".$mdb2->quote($task_ids)." where id = $p_id";
179         $affected = $mdb2->exec($sql);
180         if (is_a($affected, 'PEAR_Error'))
181           return false;
182           }
183     }
184     return $last_id;
185   }
186  
187  // update function updates a task in the database.
188   static function update($fields)
189   {
190     global $user;
191             
192     $mdb2 = getConnection();
193
194     $task_id = (int)$fields['task_id'];
195     $name = $fields['name'];
196     $description = $fields['description'];
197     $status = $fields['status'];
198     $projects = $fields['projects'];
199
200     $sql = "update tt_tasks set name = ".$mdb2->quote($name).", description = ".$mdb2->quote($description).
201       ", status = $status where id = $task_id";
202     $affected = $mdb2->exec($sql);
203     if (is_a($affected, 'PEAR_Error'))
204       die($affected->getMessage());
205         
206     // Insert task binds into tt_project_task_binds table.
207     $sql = "delete from tt_project_task_binds where task_id = $task_id";
208     $affected = $mdb2->exec($sql);
209     if (is_a($affected, 'PEAR_Error'))
210       die($affected->getMessage());
211     if (count($projects) > 0)
212       foreach ($projects as $p_id) {
213         $sql = "insert into tt_project_task_binds (project_id, task_id) values($p_id, $task_id)";
214         $affected = $mdb2->exec($sql);
215         if (is_a($affected, 'PEAR_Error'))
216           die($affected->getMessage());
217       }
218       
219     // Handle task binds in the tasks field of the tt_projects table.
220     // We need to either delete or insert task id in all affected projects.
221     
222     // Get all not deleted projects for team.
223     $sql = "select id, tasks from tt_projects where team_id = $user->team_id and status is not NULL";
224     $res = $mdb2->query($sql);
225     if (is_a($res, 'PEAR_Error'))
226       die($res->getMessage());
227     
228     // Iterate through projects.
229     while ($val = $res->fetchRow()) {
230       $project_id = $val['id'];
231       $task_ids = $val['tasks'];
232       $task_arr = explode(',', $task_ids);
233       
234       if (is_array($projects) && in_array($project_id, $projects)) {
235         // Task needs to be available for this project.
236         if (!in_array($task_id, $task_arr)) {
237           if ($task_ids) {
238             $task_ids .= ",$task_id";
239             $task_ids = ttTaskHelper::sort($task_ids);
240                   } else
241                         $task_ids = $task_id;
242
243                  $sql = "update tt_projects set tasks = ".$mdb2->quote($task_ids)." where id = $project_id";
244                  $affected = $mdb2->exec($sql);
245                  if (is_a($affected, 'PEAR_Error'))
246            die($affected->getMessage());
247                 }
248       } else {
249         // Task needs to be removed from this project.
250         if (in_array($task_id, $task_arr)) {
251           // Remove task from array.
252           unset($task_arr[array_search($task_id, $task_arr)]);
253           $comma_separated = implode(",", $task_arr); // This is a comma-separated list of associated task ids.
254       
255           // Re-bind the project to tasks.
256           $sql = "update tt_projects set tasks = ".$mdb2->quote($comma_separated)." where id = $project_id";
257           $affected = $mdb2->exec($sql);
258           if (is_a($affected, 'PEAR_Error'))
259             die($affected->getMessage());
260         }
261       }
262     }
263     return true;
264   }
265
266   // sort function sorts task ids passed as comma-separated list by their name.
267   static function sort($comma_separated) {
268         // We can't sort an empty string.
269         if (!$comma_separated)
270           return $comma_separated;
271                   
272     $mdb2 = getConnection();
273       
274         $sql = "select id, name from tt_tasks where id in ($comma_separated)";
275     $res = $mdb2->query($sql);
276     if (is_a($res, 'PEAR_Error'))
277       die ($res->getMessage());
278     
279     $task_arr = array();
280     while ($val = $res->fetchRow()) {
281       $task_arr[] = array('id'=>$val['id'],'name'=>$val['name']);
282     }
283     $task_arr = mu_sort($task_arr, 'name');
284     $task_ids = array();
285     for($i = 0; $i < count($task_arr); $i++) {
286           $task_ids[] = $task_arr[$i]['id'];
287     }
288         $result = implode(',', $task_ids);
289     return $result;
290   }
291 }