8c176a6d9cfb0f3c380b4bfdd0db32863b7b01e6
[Pman.Core] / Notify.php
1 <?php
2 require_once 'Pman.php';
3
4 /**
5  * notification script runner
6  *
7  * This does not actualy send stuf out, it only starts the NotifySend/{id}
8  * which does the actuall notifcations.
9  *
10  * It manages a pool of notifiers.
11  * 
12  * 
13  */
14
15
16 class Pman_Core_Notify extends Pman
17 {
18     
19     static $cli_desc = "Runs the notification queue (usually from cron)
20                         Normally used to sends out emails to anyone in the notification list.
21     
22                         /etc/cron.d/pman-core-notify
23                         * *  * * *     www-data     /usr/bin/php /home/gitlive/web.mtrack/admin.php  Core/Notify > /dev/null
24     
25 ";
26     
27     static $cli_opts = array(
28         'debug' => array(
29             'desc' => 'Turn on debugging (see DataObjects debugLevel )',
30             'default' => 0,
31             'short' => 'v',
32             'min' => 1,
33             'max' => 1,
34             
35         ),
36         'list' => array(
37             'desc' => 'List message to send, do not send them..',
38             'default' => 0,
39             'short' => 'l',
40             'min' => 0,
41             'max' => 0,
42             
43         ),
44         'old' => array(
45             'desc' => 'Show old messages.. (and new messages...)',
46             'default' => 0,
47             'short' => 'o',
48             'min' => 0,
49             'max' => 0,
50             
51         ),
52         'force' => array(
53             'desc' => 'Force redelivery, even if it has been sent before or not queued...',
54             'default' => 0,
55             'short' => 'f',
56             'min' => 0,
57             'max' => 0,
58         ),
59        /* removed - use GenerateNotifcations.php hooked classes
60          'generate' =>  'Generate notifications for a table, eg. cash_invoice',
61             
62         ),
63         */
64          'limit' => array(
65             'desc' => 'Limit search for no. to send to ',
66             'default' => 1000,
67             'short' => 'L',
68             'min' => 0,
69             'max' => 999,
70         ),
71         'dryrun' => array(
72             'desc' => 'Dry run - do not send.',
73             'default' => 0,
74             'short' => 'D',
75             'min' => 0,
76             'max' => 0,
77         ),
78         'poolsize' => array(
79             'desc' => 'Pool size',
80             'default' => 10,
81             'short' => 'P',
82             'min' => 0,
83             'max' => 100,
84         ),
85     );
86     /**
87      * @var $nice_level Unix 'nice' level to stop it jamming server up.
88      */
89     var $nice_level = false;
90     /**
91      * @var $max_pool_size maximum runners to start at once.
92      */
93     var $max_pool_size = 10;
94     /**
95      * @var $max_to_domain maximum connections to make to a single domain
96      */
97     var $max_to_domain = 10;
98     
99     /**
100      * @var $maxruntime - maximum seconds a child is allowed to run - defaut 2 minutes
101      */
102     var $maxruntime = 120;
103     
104     /**
105     * @var {Boolean} log_events - default true if events should be logged.
106     */
107     var $log_events = true;
108     /**
109     * @var {Number} try_again_minutes how long after failing to try again default = 30 if max runtime fails
110     */
111     var $try_again_minutes = 30;
112     
113     /**
114      * @var {String} table - the table that the class will query for notification events
115      */
116     var $table = 'core_notify';
117     /**
118      * @var {String} target - the application that will run for each Row in the table (eg. Pman/Core/NotifySend)
119      */
120     var $target = 'Core/NotifySend';
121     
122     
123     
124     var $evtype = ''; // any notification...
125                     // this script should only handle EMAIL notifications..
126                     
127     var $opts; 
128     var $force = false;
129     function getAuth()
130     {
131         $ff = HTML_FlexyFramework::get();
132         if (!$ff->cli) {
133             die("access denied");
134         }
135         HTML_FlexyFramework::ensureSingle($_SERVER["SCRIPT_NAME"] .'|'. __FILE__ .'|'. (empty($_SERVER['argv'][1]) ? '': $_SERVER['argv'][1]), $this);
136         return true;
137     }
138     
139     var $pool = array();
140     
141     function parseArgs(&$opts)
142     {
143         if ($opts['debug']) {
144             DB_DataObject::debugLevel($opts['debug']);
145             print_r($opts);
146         }
147         $this->opts = $opts;
148         if (!empty($opts['poolsize'])) {
149             $this->max_pool_size = $opts['poolsize'];
150         }
151         
152         if (empty($opts['limit'])) {
153             $opts['limit'] = '1000'; // not sure why it's not picking up the defautl..
154         }
155         
156         if (!empty($opts['old'])) {
157             $opts['list'] = 1; // force listing..
158         }
159         
160         $this->force = empty($opts['force']) ? 0 : 1;
161      
162         if (!empty($opts['send-to'])) {
163             $this->send_to = $opts['send-to'];
164         }
165     }
166     
167     var $queue = array();
168     var $domain_queue = array(); // false to use nextquee
169     var $next_queue = array();
170    
171     function get($r,$opts=array())    
172     {
173         $this->parseArgs($opts); 
174          
175         //date_default_timezone_set('UTC');
176         
177         
178         $this->generateNotifications();
179         
180         $this->assignQueues();
181         
182         //DB_DataObject::debugLevel(1);
183         $w = DB_DataObject::factory($this->table);
184         $total = 0;
185         
186         if (!empty($opts['old'])) {
187             // show old and new...
188             
189             $w->orderBy('act_when DESC'); // latest first
190             $w->limit($opts['limit']); // we can run 
191             $total = min($w->count(), $opts['limit']);
192         } else {   
193             // standard
194             
195             //$w->whereAdd('act_when > sent'); // eg.. sent is not valid..
196             $w->whereAdd("sent < '1970-01-01' OR sent IS NULL"); // eg.. sent is not valid..
197             
198             $w->whereAdd('act_start > NOW() - INTERVAL 14 DAY'); // ignore the ones stuck in the queue
199             if (!$this->force) {
200                 $w->whereAdd('act_when < NOW()'); // eg.. not if future..
201             }
202     
203             $w->orderBy('act_when ASC'); // oldest first.
204             $total = min($w->count(), $opts['limit']);
205             $this->logecho("QUEUE is {$w->count()} only running " . ((int) $opts['limit']));
206             
207             $w->limit($opts['limit']); // we can run 1000 ...
208         }
209         
210         if (!empty($this->evtype)) {
211             $w->evtype = $this->evtype;
212         }
213         
214         $ff = HTML_FlexyFramework::get();
215         if (!empty($ff->Core_Notify['servers'])) {
216             if (!isset($ff->Core_Notify['servers'][gethostname()])) {
217                 $this->jerr("Core_Notify['servers']['" . gethostname() ."'] is not set");
218             }
219             $w->server_id = array_search(gethostname(),array_keys($ff->Core_Notify['servers']));
220         }
221         
222     
223         
224          
225         $w->autoJoin();
226         $w->find();
227         
228         
229         
230         if (!empty($opts['list'])) {
231             
232             
233             while ($w->fetch()) { 
234                 $o = $w->object();
235                 
236                 
237                 $this->logecho("{$w->id} : {$w->person()->email} email    : ".
238                         $o->toEventString()."    ". $w->status()  );
239             }
240             exit;
241         }
242         
243         //echo "BATCH SIZE: ".  count($ar) . "\n";
244        
245         
246         while (true) {
247             // only add if we don't have any queued up..
248             if (empty($this->queue) && $w->fetch()) {
249                 $this->queue[] = clone($w);
250                 $total--;
251             }
252             
253             $this->logecho("BATCH SIZE: ".  (count($this->queue) + $total) );
254             
255             if (empty($this->queue)) {
256                 $this->logecho("COMPLETED MAIN QUEUE - running maxed out domains");
257                 if ($this->domain_queue !== false) {
258                     $this->queue  = $this->remainingDomainQueue();
259                      
260                     continue;
261                 }
262                 break; // nothing more in queue.. and no remaining one
263             }
264             
265             
266             $p = array_shift($this->queue);
267             if (!$this->poolfree()) {
268                 array_unshift($this->queue,$p); /// put it back on..
269                 sleep(3);
270                 continue;
271             }
272             $email = $p->person() ? $p->person()->email : $p->to_email;
273             
274             if ($this->poolHasDomain($email) > $this->max_to_domain) {
275                 
276                 // push it to a 'domain specific queue'
277                 $this->logecho("REQUEING - maxed out that domain - {$email}");
278                 $this->pushQueueDomain($p, $email);
279                   
280                 
281                 //sleep(3);
282                 continue;
283             }
284             
285             
286             $this->run($p->id,$email);
287             
288             
289             
290         }
291         
292         // we should have a time limit here...
293         while(count($this->pool)) {
294             $this->poolfree();
295             sleep(3);
296         }
297          
298         foreach($this->next_queue as $p) {
299             $pp = clone($p);
300             $p->act_when = $p->sqlValue('NOW + INTERVAL 1 MINUTE');
301             $this->updateServer($p);
302             $p->update($pp);
303             
304         }
305         
306         
307         $this->logecho("DONE");
308         exit;
309     }
310     
311     // this sequentially distributes requeued emails.. - to other servers.
312     function updateServer($w)
313     {
314         $ff = HTML_FlexyFramework::get();
315         static $num = 0;
316         if (empty($ff->Core_Notify['servers'])) {
317             return;
318         }
319         $num++;
320         // next server..
321         $w->server_id = $num % count(array_keys($ff->Core_Notify['servers']));
322          
323     }
324   
325     
326     function generateNotifications()
327     {
328         // this should check each module for 'GenerateNotifications.php' class..
329         //and run it if found..
330         $ff = HTML_FlexyFramework::get();
331        
332         $disabled = explode(',', $ff->disable);
333
334         $modules = array_reverse($this->modulesList());
335         
336         // move 'project' one to the end...
337         
338         foreach ($modules as $module){
339             if(in_array($module, $disabled)){
340                 continue;
341             }
342             $file = $this->rootDir. "/Pman/$module/GenerateNotifications.php";
343             if(!file_exists($file)){
344                 continue;
345             }
346             
347             require_once $file;
348             $class = "Pman_{$module}_GenerateNotifications";
349             $x = new $class;
350             if(!method_exists($x, 'generate')){
351                 continue;
352             };
353             //echo "$module\n";
354             $x->generate($this);
355         }
356                 
357     
358     }
359     
360     function assignQueues()
361     {
362         $ff = HTML_FlexyFramework::get();
363         
364         if (empty($ff->Core_Notify['servers'])) {
365             return;
366         }
367         
368         $num_servers = count(array_keys($ff->Core_Notify['servers']));
369         $p = DB_DataObject::factory($this->table);
370         // 6 seconds on this machne...
371         $p->query("
372             UPDATE
373                 {$this->table}
374             SET
375                 server_id = ((@row_number := CASE WHEN @row_number IS NULL THEN 0 ELSE @row_number END  +1) % {$num_servers})
376             WHERE
377                 sent < '2000-01-01'
378                 and
379                 event_id = 0
380                 and
381                 act_start < NOW()
382                 and
383                 server_id < 0
384             ORDER BY
385                 id ASC
386             LIMIT
387                 20000
388         ");
389
390         
391     }
392     
393     function run($id, $email='', $cmdOpts="")
394     {
395         
396         static $renice = false;
397         if (!$renice) {
398             require_once 'System.php';
399             $renice = System::which('renice');
400         }
401         
402         // phpinfo();exit;
403         
404         
405         $tn =  $this->tempName('stdout', true);
406         $descriptorspec = array(
407             0 => array("pipe", 'r'),  // stdin is a pipe that the child will read from
408             1 => array("file", $tn, 'w'),  // stdout is a pipe that the child will write to
409             2 => array("pipe", "w") // stderr is a file to write to
410          );
411         
412         static $php = false;
413         if (!$php) {
414             require_once 'System.php';
415             $php = System::which('php');
416         }
417         
418         $sn =  $_SERVER["SCRIPT_NAME"];
419         
420         $cwd = $sn[0] == '/' ? dirname($sn) : dirname(realpath(getcwd() . '/'. $sn)); // same as run on.. (so script should end up being same relatively..)
421         $app = $cwd . '/' . basename($_SERVER["SCRIPT_NAME"]) . '  ' . $this->target . '/'. $id;
422         if ($this->force) {
423             $app .= ' -f';
424         }
425         if (!empty($this->send_to)) {
426             $app .= ' --sent-to='.escapeshellarg($this->send_to);
427         }
428         $cmd = 'exec ' . $php . ' ' . $app . ' ' . $cmdOpts; //. ' &';
429         
430        
431         $pipe = array();
432         //$this->logecho("call proc_open $cmd");
433         
434         
435         if ($this->max_pool_size === 1) {
436             this->logecho("call passthru [{$email}] $cmd");
437             passthru($cmd);
438             return;
439         }
440         
441         
442         if (!empty($this->opts['dryrun'])) {
443             $this->logecho("DRY RUN");
444             return;
445         }
446         
447         $p = proc_open($cmd, $descriptorspec, $pipes, $cwd );
448         $info =  proc_get_status($p);
449         
450         if ($this->nice_level !== false) { 
451             $rcmd = "$renice {$this->nice_level} {$info['pid']}";
452             `$rcmd`;
453         } 
454         $this->pool[] = array(
455                 'proc' => $p,
456                 'pid' => $info['pid'],
457                 'out' => $tn,
458                 'cmd' => $cmd,
459                 'email' => $email,
460                 'pipes' => $pipes,
461                 'notify_id' => $id,
462                 'started' => time()
463             
464                 
465         );
466         $this->logecho("RUN [{$email}] ({$info['pid']}) $cmd ");
467     }
468     
469     function poolfree()
470     {
471         $pool = array();
472         clearstatcache();
473          
474         foreach($this->pool as $p) {
475              
476             //echo "CHECK PID: " . $p['pid'] . "\n";
477             $info =  proc_get_status($p['proc']);
478             //var_dump($info);
479             
480             // update if necessday.
481             if ($info['pid'] && $p['pid'] != $info['pid']) {
482                 $this->logecho("CHANING PID FROM " . $p['pid']  .  "  TO ". $info['pid']);
483                 $p['pid'] = $info['pid'];
484             }
485             
486             //echo @file_get_contents('/proc/'. $p['pid'] .'/cmdline') . "\n";
487             
488             if ($info['running']) {
489             
490                 //if (file_exists('/proc/'.$p['pid'])) {
491                 $runtime = time() - $p['started'];
492                 //echo "RUNTIME ({$p['pid']}): $runtime\n";
493                 if ($runtime > $this->maxruntime) {
494                     
495                     proc_terminate($p['proc'], 9);
496                     //fclose($p['pipes'][1]);
497                     fclose($p['pipes'][0]);
498                     fclose($p['pipes'][2]);
499                     $this->logecho("TERMINATING: ({$p['pid']}) " . $p['cmd'] . " : " . file_get_contents($p['out']));
500                     @unlink($p['out']);
501                     
502                     // schedule again
503                     $w = DB_DataObject::factory($this->table);
504                     $w->get($p['notify_id']);
505                     $ww = clone($w);
506                     if ($this->log_events) {
507                         $this->addEvent('NOTIFY', $w, 'TERMINATED - TIMEOUT');
508                     }
509                     $w->act_when = date('Y-m-d H:i:s', strtotime("NOW + {$this->try_again_minutes} MINUTES"));
510                     $w->update($ww);
511                     
512                     continue;
513                 }
514                 
515                 $pool[] = $p;
516                 continue;
517             }
518             fclose($p['pipes'][0]);
519             fclose($p['pipes'][2]);
520             //echo "CLOSING: ({$p['pid']}) " . $p['cmd'] . " : " . file_get_contents($p['out']) . "\n";
521             //fclose($p['pipes'][1]);
522             
523             proc_close($p['proc']);
524             
525             
526             //clearstatcache();
527             //if (file_exists('/proc/'.$p['pid'])) {
528             //    $pool[] = $p;
529             //    continue;
530             //}
531             $this->logecho("ENDED: ({$p['pid']}) " .  $p['cmd'] . " : " . file_get_contents($p['out']) );
532             @unlink($p['out']);
533             // at this point we could pop onto the queue the 
534             $this->popQueueDomain($p['email']);
535             
536             //unlink($p['out']);
537         }
538         $this->logecho("POOL SIZE: ". count($pool) );
539         $this->pool = $pool;
540         if (count($pool) < $this->max_pool_size) {
541             return true;
542         }
543         return false;
544         
545     }
546     /**
547      * see if pool is already trying to deliver to this domain.?
548      * -- if so it get's pushed to the end of the queue.
549      *
550      */
551     function poolHasDomain($email)
552     {
553         $ret = 0;
554         $ea = explode('@',$email);
555         $dom = strtolower(array_pop($ea));
556         foreach($this->pool as $p) {
557             $ea = explode('@',$p['email']);
558             $mdom = strtolower(array_pop($ea));
559             if ($mdom == $dom) {
560                 $ret++;
561             }
562         }
563         return $ret;
564         
565     }
566     function popQueueDomain($email)
567     {
568         $ea = explode('@',$email);
569         $dom = strtolower(array_pop($ea));
570         if (empty($this->domain_queue[$dom])) {
571             return;
572         }
573         array_unshift($this->queue, array_shift($this->domain_queue[$dom]));
574         
575     }
576     
577     function pushQueueDomain($e, $email)
578     {
579         if ($this->domain_queue === false) {
580             $this->next_queue[] = $e;
581             return;
582         }
583         
584         $ea = explode('@',$email);
585         $dom = strtolower(array_pop($ea));
586         if (!isset($this->domain_queue[$dom])) {
587             $this->domain_queue[$dom] = array();
588         }
589         $this->domain_queue[$dom][] = $e;
590     }
591     function remainingDomainQueue()
592     {
593         $ret = array();
594         foreach($this->domain_queue as $dom => $ar) {
595             $ret = array_merge($ret, $ar);
596         }
597         $this->domain_queue = false;
598         return $ret;
599     }
600     
601     
602
603     function output()
604     {
605         $this->logecho("DONE");
606         exit;
607     }
608     function logecho($str)
609     {
610         echo date("Y-m-d H:i:s - ") . $str . "\n";
611     }
612 }