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;                         // depricated.
32     public $method_id;                         // string(128)  not_null
33     
34     public $recur_id;                       //INT(11) not_null
35
36     
37     ###END_AUTOCODE
38     //NOTE recur_id and method are depricated.
39     
40     
41     /*
42       freq =  DAILY | YEARLY | MONTHLY
43         *
44         *        THESE ARE EXCLUSIVE..
45         *        freq_day =  1,2,3,4,5" - day number.. or dayofmonth USES TIME FROM DTSTART (unless hours are speced.)
46         *        >> must..
47         *        freq_hourly = 'what hours' << OR IF EMPTY USES TIME FROM DTSTART
48         *
49     /* the code above is auto generated do not remove the tag below */
50     
51     function applyFilters($q, $au, $roo)
52     {
53         
54         if (isset($q['query']['person_id_name']) ) {
55             $this->whereAdd( "join_person_id_id.name LIKE '{$this->escape($q['query']['person_id_name'])}%'");
56              
57         }
58          
59         
60          
61         
62         
63     }
64     function notifytimesRange($advance) {
65         
66         $start = date('Y-m-d H:i:s', max(strtotime("NOW"), strtotime($this->dtstart)));
67         $end  = date('Y-m-d H:i:s', min(strtotime("NOW + $advance DAYS"), strtotime($this->dtend)));
68         
69         return array($start, $end);
70     }
71     
72     function method()
73     {
74         $e = DB_DataObject::Factory('core_enum');
75         $e->get($this->method_id);
76         return $e;
77     }
78     
79     function notifytimes($advance)
80     {
81         
82         // make a list of datetimes when notifies need to be generated for.
83         // it starts 24 hours ago.. or when dtstart
84         
85         list($start, $end) = $this->notifytimesRange($advance);
86         var_dump(array($start, $end));
87         
88         if (strtotime($start) > strtotime($end)) {
89             return array(); // no data..
90         }
91         $ret = array();
92         $hours = empty($this->freq_hour) ? array() : array_unique(json_decode($this->freq_hour));
93         $days = empty($this->freq_day) ? array() : json_decode($this->freq_day);
94         
95         //days to use are = MON FRI SUN
96         
97         //ARE there events on these day in advance days in the future?
98         //TODAY = 25th of may (FRI)
99         //TODAY+1  = 26th  (SAT)
100         //TODAY +2 = 27th = SUN (2== advance)
101         //foreeach day in the future upto >>> advance <<< days?
102             
103          // - does an event occur on this day?
104         //    -YES - then we will generate an event for it.
105          //   -NO nothing happens..
106         $usedays = array();
107         for (  $i =0; $i < $advance +1; $i++) {
108             $ut = strtotime("NOW + $i DAYS");
109             $day = strtoupper(date("D", $ut));
110             if (in_array($day, $days)) {
111                 $usedays[] = date("Y-m-d", $ut);
112             }
113         }
114                
115         //print_r($this);
116         
117         
118         foreach($usedays as $d){
119             foreach($hours as $h){
120                 $date = new DateTime($d. ' ' . $h, new DateTimeZone($this->tz));
121                 $tz= ini_get('date.timezone');
122                 if(!empty($tz)){
123                     $date->setTimezone(new DateTimeZone($tz));
124                 }
125                 
126                 $ret[] = $date->format('Y-m-d H:i:s');
127             }
128         }
129         return $ret;
130     }
131     
132     function generateNotifications()
133     {
134         //DB_DataObject::debugLevel(1);
135         $w = DB_DataObject::factory($this->tableName());
136         $w->find();
137         
138         while($w->fetch()){
139             $w->generateNotificationsSingle();
140         
141         }
142     }
143     
144     
145     function generateNotificationsSingle()
146     {
147         
148
149         $notifytimes = $this->notifyTimes(2);
150         echo "{$this->person()->email}\n";
151         print_R($notifytimes);
152         
153         $newSearch = DB_DataObject::factory('core_notify');
154         $newSearch->whereAdd( 'act_start > NOW()');
155         $newSearch->recur_id = $this->id;
156         $old = $newSearch->fetchAll('act_start', 'id');
157         // returns array('2012-12-xx'=>12, 'date' => id....)
158
159         
160         foreach($notifytimes as $time){
161            
162             if (isset($old[$time])) {
163                 // we already have it...
164                 $oo = DB_DataObject::Factory('core_notify');
165                 $oo->get($old[$time]);
166                 $oc = clone($oo);
167                 $oo->evtype = $this->method()->name;
168                 $oo->update($oc);
169                 
170                 unset($old[$time]);
171                 continue;
172             }
173             
174             if (strtotime($time) < time()) { // should not happen, just in case...
175                continue;
176             }
177             
178             // do not have a notify event... creat it..
179             $add = DB_DataObject::factory('core_notify');
180             $add->setFrom(array(
181                 "recur_id" => $this->id,
182                 "act_start" => $time,
183                 "act_when" => $time,
184                 "person_id" => $this->person_id,
185                 "onid" => $this->onid,
186                 "ontable" => $this->ontable,
187                 'evtype' => $this->method()->name,
188             ));
189             $add->insert();
190         }
191         foreach($old as $date => $id ) {
192                 $del = DB_DataObject::factory('core_notify');
193                 $del->get($id);
194                 $del->delete();
195         }
196         //echo("UPDATED");
197
198     }
199     
200     function person()
201     {
202         $p = DB_DAtaObject::factory('Person');
203         $p->get($this->person_id);
204         return $p;
205     }
206     
207     function onUpdate($old, $request,$roo)
208     {
209         $this->generateNotificationsSingle();
210         
211     }
212     function onInsert($request,$roo)
213     {
214         $this->generateNotificationsSingle();
215         
216     }
217     function beforeDelete($dependants_array, $roo)
218     {
219         $n = DB_DataObject::Factory("core_notify");
220         $n->recur_id = $this->id;
221         $n->whereAdd('act_start > NOW() OR act_when > NOW()');
222         // should delete old events that have not occurred...
223         $n->delete(DB_DATAOBJECT_WHEREADD_ONLY);
224     }
225     
226 }