DataObjects/Core_notify_recur.php
[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         error_log($start);
53         error_log($end);
54     }
55     
56     function notifytimes($advance)
57     {
58         
59         // make a list of datetimes when notifies need to be generated for.
60         // it starts 24 hours ago.. or when dtstart
61         
62         list($start, $end) = $this->notifytimesRange($advance);
63         
64         if (strtotime($start) > strtotime($end)) {
65             return array(); // no data..
66         }
67         
68         
69         
70         switch($this->freq) {
71             case 'HOURLY':
72                 
73                 
74                 
75                 // happens every day based on freq_hour.
76                 $hours = explode(',', $this->freq_hour);
77                 for ($day = date('Y-m-d', strtotime($start));
78                         strtotime($day) < strtotime($end);
79                         $day = date('Y-m-d', strtotime("$day + 1 DAY")))
80                 {
81                     foreach($hours as $h) {
82                         $hh = strpos($h,":") > 0 ? $h : "$H:00";
83                         $ret[] = $day . ' ' . $hh;
84                     }
85                 }
86                 return $this->applyTimezoneToList($ret);
87                 
88             case 'DAILY':
89                 $hours = explode(',', $this->freq_hour);
90                 if (!$hours) {
91                     $hours = array(date('H:i', strtotime($this->dtstart)));
92                 }
93                 
94                 $days = explode(','. $this->freq_day);
95                 
96                 for ($day = date('Y-m-d', strtotime($start));
97                         strtotime($day) < strtotime($end);
98                         $day = date('Y-m-d', strtotime("$day + 1 DAY")))
99                 {
100                     // skip days not accounted for..
101                     if (!in_array(date('N', strtotime($day)), $days)) {
102                         continue;
103                     }
104                     
105                     foreach($hours as $h) {
106                         $hh = strpos($h,":") > 0 ? $h : "$H:00";
107                         $ret[] = $day . ' ' . $hh;
108                     }
109                 }
110                 
111                 return $this->applyTimezoneToList($ret);
112                 
113                 
114             case 'MONTHLY': // ignored..
115             case 'YEARLY': // ignored..
116                 break;
117             
118         }
119          
120     }
121     function applyTimezoneToList($ar)
122     {
123         $ret = array();
124         
125         $tz = explode($this->tz, ":");
126         if ($tz < 0) {
127             
128         }
129         $append = ($tz[0] < 0) ? " - " : " + ";
130         
131         $append .= abs($tz[0]) . " HOURS";
132         if (!empty($tz[1])) {
133             $append .= $tz[1] . " MINUTES";
134         }
135         
136         
137         foreach($ar as $a) {
138             $ret[] = date('Y-m-d H:i', strtotime($a . $append));
139             
140         }
141         return $ret;
142         
143         
144     }
145     
146     function generateNotifications(){
147         //$this->notifytimes(2);
148         //DB_DataObject::debugLevel(1);
149         $w = DB_DataObject::factory($this->tableName());
150         //$this->notifytimes(2);
151         $w->find();
152         //$test = $w->fetchAll();
153         
154         //$test = $this->notifytimes(2);
155         
156         $test = array();
157         while($w->fetch()){
158             $this->id = $w->id;
159             $this->person_id = $w->person_id;
160             $this->dtstart = $w->dtstart;
161             $this->dtend = $w->dtend;
162             $this->tz = $w->tz;
163             $this->updated_dt = $w->updated_dt;
164             $this->last_applied_dt = $w->last_applied_dt;
165             $this->freq = $w->freq;
166             $this->freq_day = $w->freq_day;
167             $this->freq_hour = $w->freq_hour;
168             $this->onid = $w->onid;
169             $this->ontable = $w->ontable;
170             $this->last_event_id = $w->last_event_id;
171             $this->method = $w->method;
172             //$this->dtstart = $w->dtstart;
173             //$this->dtend = $w->dtend;
174             //$this = clone($w);
175             //$w->notifytimes(2);
176             error_log($w->notifytimes(2));
177         }
178 //        foreach($test as $item){
179 //            error_log($item);
180 //        }
181         
182     }
183     
184 }