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 // Class ttTaskHelper is used to help with task related operations.
 
  32   // get - gets details of a task identified by its id.
 
  33   static function get($id)
 
  37     $mdb2 = getConnection();
 
  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);
 
  43     if (!is_a($res, 'PEAR_Error')) {
 
  44       $val = $res->fetchRow();
 
  45           if ($val['id'] != '') {
 
  53   // getAssignedProjects - returns an array of projects associatied with a task.
 
  54   static function getAssignedProjects($task_id)
 
  59     $mdb2 = getConnection();
 
  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()) {
 
  74   // The getTaskByName looks up a task by name.
 
  75   static function getTaskByName($task_name) {
 
  77     $mdb2 = getConnection();
 
  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);
 
  84       if (!is_a($res, 'PEAR_Error')) {
 
  85       $val = $res->fetchRow();
 
  92   // delete - deletes things associated with a task and marks the task as deleted. 
 
  93   static function delete($task_id) {
 
  96     $mdb2 = getConnection();
 
  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'))
 
 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'))
 
 110     while ($val = $res->fetchRow()) {
 
 111       $project_id = $val['id'];
 
 112       $tasks = explode(',', $val['tasks']);
 
 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.
 
 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'))
 
 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'));
 
 133  // insert function inserts a new task into database.
 
 134   static function insert($fields)
 
 136     $mdb2 = getConnection();
 
 138     $team_id = (int) $fields['team_id'];
 
 139     $name = $fields['name'];
 
 140     $description = $fields['description'];
 
 141     $projects = $fields['projects'];
 
 142     $status = $fields['status'];
 
 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);
 
 148     if (is_a($affected, 'PEAR_Error'))
 
 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'];
 
 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'))
 
 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'))
 
 170         $val = $res->fetchRow();
 
 171         $task_ids = $val['tasks'];
 
 173                   $task_ids .= ",$last_id";
 
 174                   $task_ids = ttTaskHelper::sort($task_ids);
 
 176                   $task_ids = $last_id;
 
 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'))
 
 187  // update function updates a task in the database.
 
 188   static function update($fields)
 
 192     $mdb2 = getConnection();
 
 194     $task_id = (int)$fields['task_id'];
 
 195     $name = $fields['name'];
 
 196     $description = $fields['description'];
 
 197     $status = $fields['status'];
 
 198     $projects = $fields['projects'];
 
 200     $sql = "update tt_tasks set name = ".$mdb2->quote($name).", description = ".$mdb2->quote($description).
 
 201       ", status = $status where id = $task_id and team_id = $user->team_id";
 
 202     $affected = $mdb2->exec($sql);
 
 203     if (is_a($affected, 'PEAR_Error'))
 
 204       die($affected->getMessage());
 
 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());
 
 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.
 
 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());
 
 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);
 
 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)) {
 
 238             $task_ids .= ",$task_id";
 
 239             $task_ids = ttTaskHelper::sort($task_ids);
 
 241                         $task_ids = $task_id;
 
 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());
 
 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.
 
 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());
 
 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;
 
 272     $mdb2 = getConnection();
 
 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());
 
 280     while ($val = $res->fetchRow()) {
 
 281       $task_arr[] = array('id'=>$val['id'],'name'=>$val['name']);
 
 283     $task_arr = mu_sort($task_arr, 'name');
 
 285     for($i = 0; $i < count($task_arr); $i++) {
 
 286           $task_ids[] = $task_arr[$i]['id'];
 
 288         $result = implode(',', $task_ids);