DataObjects/Core_watch.php
[Pman.Core] / DataObjects / Core_watch.php
1 <?php
2 /**
3  * Table Definition for core_watch
4  *
5  * works with 'core_notify'
6  *
7  * any object can call
8  *   $watch->notify($ontable, $onid)
9  *
10  *   in which case it should create a core_notify event.
11  *
12  *
13  * Should 'event' trigger this..
14  *   -> eg. somebody makes a 'EDIT' on 'person'
15  *   -> a watch exists for
16  *        ontable=person,
17  *        onid = -1 <<-- every entry..
18  *        person_id -> who is goes to.
19  *        event = CRUD (eg. shortcut for edit/create/delete)
20  *        medium = "REVIEW" << eg. review needed..
21  *        
22  *
23  *  if onid == 0 then it will monitor all changes to that table..
24  *
25  *
26  * 
27  * 
28  */
29 require_once 'DB/DataObject.php';
30
31 class Pman_Core_DataObjects_Core_watch extends DB_DataObject 
32 {
33     ###START_AUTOCODE
34     /* the code below is auto generated do not remove the above tag */
35
36     public $__table = 'core_watch';                      // table name
37     public $id;                              // int(11)  not_null primary_key auto_increment
38     public $ontable;                         // string(128)  not_null
39     public $onid;                            // int(11)  not_null
40     public $person_id;                       // int(11)  not_null
41     public $event;                           // string(128)  not_null
42     public $medium;                          // string(128)  not_null
43     public $active;                          // int(11)  not_null
44
45     
46     /* the code above is auto generated do not remove the tag below */
47     ###END_AUTOCODE
48     /** make sure there is a watch for this user.. */
49     
50     
51     function applyFilters($q,$au, $roo)
52     {
53         if (!empty($q['_list_actions'])) {
54             $this->listActions($roo,$q);
55         }
56         //die("apply filters");
57         if (!empty($q['_split_event_name'])) {
58             $this->selectAdd("
59                 
60                 substr( event, 1, LOCATE( '.',event) -1) as event_left,
61                 substr( event,   LOCATE( '.',event) +1) as event_right,
62                 (SELECT
63                     display_name FROM core_enum where etype = '{$this->escape($q['_split_event_name'])}'
64                     AND name = substr( event,   LOCATE( '.',event) +1)
65                 )
66                              
67             ");
68             
69             
70             
71         }
72         
73     }
74     
75     function toRooSingleArray($au,$q)
76     {
77         $ret = $this->toArray();
78         if (empty($q['_split_event_name'])) {
79             return $ret;
80         }
81         $bits = explode('.', $this->event);
82         $ret['event_left'] = $bits[0];
83         $ret['event_right'] = $bits[1];
84         // check core enu.
85         if (!empty($ret['event_right'])) {
86             $ce = DB_DataObject::factory('core_enum')->lookupObject($q['_split_event_name'], $ret['event_right']);
87             $ret['event_right_display_name'] = $ce->display_name;
88         }
89         
90         return $ret;
91         
92         
93     }
94     
95     function listActions($roo, $q) {
96         
97         //print_r($q);
98         $d = DB_DataObject::Factory($q['on_table']);
99         $ret = array();
100         
101         foreach(get_class_methods($d) as $m) {
102             //var_dump($m);
103             if (!preg_match('/^notify/', $m)) {
104                 continue;
105             }
106             $ret[] = array(
107                 'display_name' => preg_replace('/^notify/', '' , $m),
108                 'name' => $q['on_table'] .':'. $m
109             );
110         }
111         $roo->jdata($ret);
112     }
113     
114     /**
115      *
116      * Create a watch...
117      *
118      */
119     
120     
121     
122     
123     function ensureNotify(  $ontable, $onid, $person_id, $whereAdd)
124     {
125         //DB_DAtaObject::debugLevel(1);
126         $w = DB_DataObject::factory('core_watch');
127         $w->person_id = $person_id;
128         if (empty($w->person_id)) {
129             return;
130         }
131         
132         $nw = clone($w);
133         $w->whereAdd($whereAdd);
134         
135         
136         if ($w->count()) {
137             return;
138         }
139         $nw->ontable = $ontable;
140         $nw->onid = $onid;
141         
142         $nw->medium = 'email';
143         $nw->active = 1;
144         $nw->insert();
145          
146     }
147     /**
148      * Generate a notify event based on watches (matching whereAdd)
149      *
150      * Usage: $core_watch->notify('mtrack_repos', 1, false, date()
151      *
152      * This can match any 'event' type - eg. it can be blank etc...
153      *   Generally used by non-event driven notifications, like our
154      *   Daily commit message.
155      *
156      *  @param string $ontable - the database table that has been updated/changed etc.
157      *  @param int    $onid    - the id of the row changed
158      *  @param string  $whereAdd (optiona) - a DB whereAdd() condition to filter the search for watches
159      *  @param datetime    $when   (default now)  - date/time to create the notification for (Eg. end of day..)
160      * 
161      */
162     function notify($ontable , $onid, $whereAdd = false, $when=false)
163     {
164         $w = DB_DataObject::factory('core_watch');   
165         if ($whereAdd !== false) { 
166             $w->whereAdd($whereAdd  );
167         }
168         $w->active =1;
169         
170         $w->whereAdd('onid = 0 OR onid='. ((int) $onid));
171        
172         
173         $w->ontable = $ontable;
174         //$w->selectAdd();
175         //$w->selectAdd('distinct(person_id) as person_id');
176         
177         foreach($w->fetchAll() as $w) { 
178             if (!$w->person_id) { // no people??? bugs in watch table
179                 continue;
180             }
181          
182          
183          
184             $nn = DB_DataObject::Factory('core_notify');
185             $nn->ontable = $ontable;
186             $nn->onid = $onid;
187             $nn->evtype = $w->medium;
188             $nn->person_id = $w->person_id;
189             
190             $nf = clone($nn);
191             $nf->whereAdd("sent < '2000-01-01'");
192             if ($nf->count()) {
193                 // we have a item in the queue for that waiting to be sent..
194                 continue;
195             }
196             $nn->act_start( date("Y-m-d H:i:s", $when !== false ? strtotime($when) : time()) );
197             $nn->insert();
198         }
199           
200     }
201     // static really...
202     /**
203      *
204      * This get's called by roo->addEvent()
205      *
206      * And searches for matching '$watch->event' == $event->action
207      *  along with id/table etc..
208      *
209      * it's basic usage is to fill in core_notify after an event has happend.
210      *
211      * We can also use it to notify other modules if something has happend.
212      *  = eg. mtrack_ticket * watch will notify mtrack_jira::
213      *
214      * @param Pman_Core_DataObject_Events $event - the Pman event dataobject that was created
215      * 
216      */
217     
218     function notifyEvent($event)
219     {
220         //print_r($event);
221        //DB_DataObject::DebugLevel(1);
222         // see if there are any watches on events..
223         // notify everyone flagged except the person doing it...
224         // this is very basic logic... -
225         //    if more intelligence is needed...
226         //    then it 'rules' will have to be added by the watched object....
227         //    anyway leave that for another day..
228         if (empty($event->action)) {
229             return;
230         }
231         $w = DB_DataObject::factory('core_watch');
232         $w->ontable = $event->on_table;
233         $w->whereAdd('onid = 0 OR onid='. ((int) $event->on_id));
234        
235         $w->event  = $event->action;
236         $w->active = 1;
237         
238         
239         $w->whereAdd('person_id != '. (int) $event->person_id);
240  
241         $watches = $w->fetchAll();
242         
243         //print_R($watches); //exit;
244         
245         $nn = DB_DataObject::Factory('core_notify');
246         $nn->ontable    = $event->on_table;
247         $nn->onid       = $event->on_id;
248         
249         foreach($watches as $watch) {
250             $n = clone($nn);
251             if (!$watch->person_id) { // no people??? bugs in watch table
252                 $dom = explode(':',$watch->medium);
253                 if (count($dom) != 2) {
254                     continue;
255                 }
256                 // in some scenarios (like watching for new articles)
257                 // we need to create a core, notify on the medium..
258                 // in which case we set the  set $nn->evtype = medium..
259                 // in that case - just let the called method generate the notify..
260                 
261                 //print_R($dom);
262                 $do = DB_DataObject::factory($dom[0]);
263                 if (!method_exists($do,$dom[1])) {
264                     continue;
265                 }
266                 //echo "calling {$watch->medium}\n";
267                 // the triggered method, can either do something
268                 // or modify the notify event..
269                 if ($do->{$dom[1]}($event, $n) !== false) {
270                     //echo "method did not return false?";
271                     continue;
272                 }
273                 
274                 
275             }
276             
277             
278             $n->trigger_person_id = $event->person_id;
279             $n->trigger_event_id = $event->id;
280             $n->person_id = $watch->person_id;
281             $n->watch_id =  $watch->id;
282             
283             // does this watch already have a flag...
284             $nf = clone($n);
285             $nf->whereAdd("sent < '2000-01-01'");
286             //$nf->whereAdd('sent < act_when');
287             if ($nf->count()) {
288                 // we have a item in the queue for that waiting to be sent..
289                 continue;
290             }
291             //echo "inserting notify?";
292             $n->act_start( empty($n->act_start) ? date("Y-m-d H:i:s") : $n->act_start );
293             $n->insert();
294         }
295         
296         
297         
298     }
299     function initDatabase($roo, $data) {
300         foreach($data as $d) {
301             $dd = $d;
302             if (isset($dd['active'])) {
303                 unset($dd['active']);
304             }
305             $t = DB_DataObject::Factory($this->tableName());
306             $t->setFrom($dd);
307             if ($t->find(true)) {
308                 continue;
309             }
310             $t = DB_DataObject::Factory($this->tableName());
311             $t->setFrom($d);
312             $t->insert();
313             
314             
315         }
316     }
317     
318      
319 }