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('ttTeamHelper');
 
  30 import('ttUserHelper');
 
  32 // Class ttNotificationHelper is used to help with notification related tasks.
 
  33 class ttNotificationHelper {
 
  35   // get - gets notification details. 
 
  36   static function get($id)
 
  40     $mdb2 = getConnection();
 
  42     $sql = "select c.id, c.cron_spec, c.report_id, c.email, c.cc, c.subject, c.report_condition, c.status, fr.name from tt_cron c
 
  43       left join tt_fav_reports fr on (fr.id = c.report_id)
 
  44       where c.id = $id and c.team_id = $user->team_id";
 
  45     $res = $mdb2->query($sql);
 
  46     if (!is_a($res, 'PEAR_Error')) {
 
  47       $val = $res->fetchRow();
 
  48           if ($val && $val['id'])
 
  54   // delete - deletes a notification from tt_cron table. 
 
  55   static function delete($id) {
 
  58     $mdb2 = getConnection();
 
  60     $sql = "delete from tt_cron where id = $id and team_id = $user->team_id";
 
  61     $affected = $mdb2->exec($sql);
 
  62     if (is_a($affected, 'PEAR_Error'))
 
  68   // insert function inserts a new notification into database.
 
  69   static function insert($fields)
 
  71     $mdb2 = getConnection();
 
  73     $team_id = (int) $fields['team_id'];
 
  74     $cron_spec = $fields['cron_spec'];
 
  75     $next = (int) $fields['next'];
 
  76     $report_id = (int) $fields['report_id'];
 
  77     $email = $fields['email'];
 
  79     $subject = $fields['subject'];
 
  80     $report_condition = $fields['report_condition'];
 
  81     $status = $fields['status'];
 
  83     $sql = "insert into tt_cron (team_id, cron_spec, next, report_id, email, cc, subject, report_condition, status)
 
  84       values ($team_id, ".$mdb2->quote($cron_spec).", $next, $report_id, ".$mdb2->quote($email).", ".$mdb2->quote($cc).", ".$mdb2->quote($subject).", ".$mdb2->quote($report_condition).", ".$mdb2->quote($status).")";
 
  85     $affected = $mdb2->exec($sql);
 
  86     if (is_a($affected, 'PEAR_Error'))
 
  92   // update function - updates a notification in database.
 
  93   static function update($fields)
 
  95     $mdb2 = getConnection();
 
  97     $notification_id = (int) $fields['id'];
 
  98     $team_id = (int) $fields['team_id'];
 
  99     $cron_spec = $fields['cron_spec'];
 
 100     $next = (int) $fields['next'];
 
 101     $report_id = (int) $fields['report_id'];
 
 102     $email = $fields['email'];
 
 104     $subject = $fields['subject'];
 
 105     $report_condition = $fields['report_condition'];
 
 106     $status = $fields['status'];
 
 108     $sql = "update tt_cron set cron_spec = ".$mdb2->quote($cron_spec).", next = $next, report_id = $report_id, email = ".$mdb2->quote($email).", cc = ".$mdb2->quote($cc).", subject = ".$mdb2->quote($subject).", report_condition = ".$mdb2->quote($report_condition).", status = ".$mdb2->quote($status).
 
 109       " where id = $notification_id and team_id = $team_id";
 
 110     $affected = $mdb2->exec($sql);
 
 111     return (!is_a($affected, 'PEAR_Error'));