64971db57d39cc9e2bcad6852e7959b6ce834bd6
[Pman.Core] / DataObjects / Core_notify_recur.php
1 <?php
2 /**
3  * Table Definition for core_notify_recur
4  */
5 require_once 'DB/DataObject.php';
6
7 class Pman_Core_DataObjects_Core_notify_recur extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'core_notify_recur';    // table name
13     public $id;                              // int(11)  not_null primary_key auto_increment
14     public $person_id;                       // int(11)  not_null
15     
16     public $dtstart;                         // datetime(19)  not_null binary
17     public $dtend;                           // datetime(19)  not_null binary
18     public $tz;                              // real(6)  not_null
19     
20     public $updated_dt;                      // datetime(19)  not_null binary
21     
22     public $last_applied_dt;                 // datetime(19)  not_null binary
23 //    public $max_applied_dtl
24     public $freq; //  varchar(8) NOT NULL;
25     public $freq_day; // text NOT NULL;
26     public $freq_hour; // text
27     
28     public $onid;                            // int(11)  not_null
29     public $ontable;                         // string(128)  not_null
30     public $last_event_id;                   // int(11)  
31     public $method;                         // string(128)  not_null
32     
33     
34     ###END_AUTOCODE
35     
36     
37     /*
38       freq =  DAILY | YEARLY | MONTHLY
39         *
40         *        THESE ARE EXCLUSIVE..
41         *        freq_day =  1,2,3,4,5" - day number.. or dayofmonth USES TIME FROM DTSTART (unless hours are speced.)
42         *        >> must..
43         *        freq_hourly = 'what hours' << OR IF EMPTY USES TIME FROM DTSTART
44         *
45     /* the code above is auto generated do not remove the tag below */
46     
47     
48     function notifytimesRange($advance) {
49         
50         $start = date('Y-m-d H:i:s', max(strtotime("NOW - 24 HOURS"), strtotime($this->dtstart)));
51         $end  = date('Y-m-d H:i:s', min(strtotime("NOW  + $advance DAYS"), strtotime($this->dtend)));
52         
53     }
54     
55     function notifytimes($advance)
56     {
57         
58         // make a list of datetimes when notifies need to be generated for.
59         // it starts 24 hours ago.. or when dtstart
60         
61         list($start, $end) = $this->notifytimesRange($advance);
62         
63         if (strtotime($start) > strtotime($end)) {
64             return array(); // no data..
65         }
66         $ret = array();
67         $hours = array_unique(json_decode($this->freq_hour));
68         $days = json_decode($this->freq_day);
69         foreach($days as $d){
70             foreach($hours as $h){
71                 $ret[] = date('Y-m-d', strtotime($d)) . ' ' . $h;
72             }
73         }
74         return $this->applyTimezoneToList($ret);
75     }
76     function applyTimezoneToList($ar)
77     {
78         $ret = array();
79         foreach($ar as $a) {
80             $date = new DateTime($a);
81             $date->setTimezone(new DateTimeZone($this->tz));
82             $ret[] = $date->format('Y-m-d H:i');
83         }
84         return $ret;
85     }
86     
87     function generateNotifications(){
88         
89         //DB_DataObject::debugLevel(1);
90         $w = DB_DataObject::factory($this->tableName());
91         $w->find();
92         
93         while($w->fetch()){
94             $notifytimes = $w->notifyTimes(2);
95             var_dump($notifytimes);
96         }
97         foreach($notifytimes as $newTimes){
98             $newSearch = DB_DataObject::factory('core_notify');
99             
100             $newSearch->whereAdd("act_start == $newTimes");
101             $newSearch->delete(DB_DATAOBJECT_WHEREADD_ONLY);
102  
103         }
104     }
105     
106 }