notify recur changes
[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     
35     ###END_AUTOCODE
36     
37     
38     /*
39       freq =  DAILY | YEARLY | MONTHLY
40         *
41         *        THESE ARE EXCLUSIVE..
42         *        freq_day =  1,2,3,4,5" - day number.. or dayofmonth USES TIME FROM DTSTART (unless hours are speced.)
43         *        >> must..
44         *        freq_hourly = 'what hours' << OR IF EMPTY USES TIME FROM DTSTART
45         *
46     /* the code above is auto generated do not remove the tag below */
47     
48     
49     function notifytimesRange($advance) {
50        
51         $start = date('Y-m-d H:i:s', max(strtotime("NOW - 24 HOURS"), sttotime($this->dtstart)));
52         $end  = date('Y-m-d H:i:s', min(strtotime("NOW  + $advance DAYS"), sttotime($this->dtend)));
53     
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         list($start, $end) = $this->notifytimesRange($advance);
62         if (strtotime($start) > strtotime($end)) {
63             return array(); // no data..
64         }
65         
66         
67         
68         switch($this->freq) {
69             case 'HOURLY':
70                 
71                 
72                 
73                 // happens every day based on freq_hour.
74                 $hours = explode(',', $this->freq_hour);
75                 for ($day = date('Y-m-d', strtotime($start));
76                         strtotime($day) < strtotime($end);
77                         $day = date('Y-m-d', strtotime("$day + 1 DAY")))
78                 {
79                     foreach($hours as $h) {
80                         $hh = strpos($h,":") > 0 ? $h : "$H:00";
81                         $ret[] = $day . ' ' . $hh;
82                     }
83                 }
84                 return $this->applyTimezoneToList($ret);
85                 
86             case 'DAILY':
87                 $hours = explode(',', $this->freq_hour);
88                 if (!$hours) {
89                     $hours = array(date('H:i', strtotime($this->dtstart)));
90                 }
91                 
92                 $days = explode(','. $this->freq_day);
93                 
94                 for ($day = date('Y-m-d', strtotime($start));
95                         strtotime($day) < strtotime($end);
96                         $day = date('Y-m-d', strtotime("$day + 1 DAY")))
97                 {
98                     // skip days not accounted for..
99                     if (!in_array(date('N', strtotime($day)), $days)) {
100                         continue;
101                     }
102                     
103                     foreach($hours as $h) {
104                         $hh = strpos($h,":") > 0 ? $h : "$H:00";
105                         $ret[] = $day . ' ' . $hh;
106                     }
107                 }
108                 
109                 return $this->applyTimezoneToList($ret);
110                 
111                 
112             case 'MONTHLY': // ignored..
113             case 'YEARLY': // ignored..
114                 break;
115             
116         }
117          
118     }
119     function applyTimezoneToList($ar)
120     {
121         $ret = array();
122         
123         $tz = explode($this->tz, ":");
124         if ($tz < 0) {
125             
126         }
127         $append = ($tz[0] < 0) ? " - " : " + ";
128         
129         $append .= abs($tz[0]) . " HOURS";
130         if (!empty($tz[1])) {
131             $append .= $tz[1] . " MINUTES";
132         }
133         
134         
135         foreach($ar as $a) {
136             $ret[] = date('Y-m-d H:i', strtotime($a . $append));
137             
138         }
139         return $ret;
140         
141         
142     }
143     
144     
145 }