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