Notify.php
[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 $server;  // core_notify_server
128     
129     var $poolname = 'core';
130     
131     var $opts; 
132     var $force = false;
133     function getAuth()
134     {
135         $ff = HTML_FlexyFramework::get();
136         if (!$ff->cli) {
137             die("access denied");
138         }
139         HTML_FlexyFramework::ensureSingle($_SERVER["SCRIPT_NAME"] .'|'. __FILE__ .'|'. (empty($_SERVER['argv'][1]) ? '': $_SERVER['argv'][1]), $this);
140         return true;
141     }
142     
143     var $pool = array();
144     
145     function parseArgs(&$opts)
146     {
147         if ($opts['debug']) {
148             DB_DataObject::debugLevel($opts['debug']);
149             print_r($opts);
150         }
151         $this->opts = $opts;
152         if (!empty($opts['poolsize'])) {
153             $this->max_pool_size = $opts['poolsize'];
154         }
155         
156         if (empty($opts['limit'])) {
157             $opts['limit'] = '1000'; // not sure why it's not picking up the defautl..
158         }
159         
160         if (!empty($opts['old'])) {
161             $opts['list'] = 1; // force listing..
162         }
163         
164         $this->force = empty($opts['force']) ? 0 : 1;
165      
166         if (!empty($opts['send-to'])) {
167             $this->send_to = $opts['send-to'];
168         }
169     }
170     
171     var $queue = array();
172     var $domain_queue = array(); // false to use nextquee
173     var $next_queue = array();
174
175    
176     function get($r,$opts=array())    
177     {
178         $this->parseArgs($opts); 
179          
180         //date_default_timezone_set('UTC');
181         
182         
183         $this->generateNotifications();
184         
185         $this->assignQueues();
186         
187         //DB_DataObject::debugLevel(1);
188         $w = DB_DataObject::factory($this->table);
189         $total = 0;
190         
191         
192         
193         $ff = HTML_FlexyFramework::get();
194         
195         
196         $this->server = DB_DataObject::Factory('core_notify_server')->getCurrent($this);
197         
198         if (!empty($this->evtype)) {
199             $w->evtype = $this->evtype;
200         }
201         
202         
203         
204         if (!empty($opts['old'])) {
205             // show old and new...
206             
207             $w->orderBy('act_when DESC'); // latest first
208             $w->limit($opts['limit']); // we can run 
209             $total = min($w->count(), $opts['limit']);
210         } else {   
211             // standard
212             
213             //$w->whereAdd('act_when > sent'); // eg.. sent is not valid..
214             $w->whereAdd("sent < '1970-01-01' OR sent IS NULL"); // eg.. sent is not valid..
215             
216             $w->whereAdd('act_start > NOW() - INTERVAL 14 DAY'); // ignore the ones stuck in the queue
217             if (!$this->force) {
218                 $w->whereAdd('act_when < NOW()'); // eg.. not if future..
219             }
220     
221             $w->orderBy('act_when ASC'); // oldest first.
222             $total = min($w->count(), $opts['limit']);
223             $this->logecho("QUEUE is {$w->count()} only running " . ((int) $opts['limit']));
224             
225             $w->limit($opts['limit']); // we can run 1000 ...
226         }
227         
228         
229         
230     
231         
232          
233         $w->autoJoin();
234         $total = $w->find();
235         
236         if (empty($total)) {
237             $this->logecho("Nothing In Queue - DONE");
238             exit;
239         }
240         
241         
242         if (!empty($opts['list'])) {
243             
244             
245             while ($w->fetch()) { 
246                 $o = $w->object();
247                 
248                 
249                 $this->logecho("{$w->id} : {$w->person()->email} email    : ".
250                         $o->toEventString()."    ". $w->status()  );
251             }
252             exit;
253         }
254         
255         //echo "BATCH SIZE: ".  count($ar) . "\n";
256        
257         
258         while (true) {
259             // only add if we don't have any queued up..
260             if (empty($this->queue) && $w->fetch()) {
261                 $this->queue[] = clone($w);
262                 $total--;
263             }
264           
265             $this->logecho("BATCH SIZE: Queue=".  count($this->queue) . " TOTAL = " . $total  );
266             
267             if (empty($this->queue)) {
268                 $this->logecho("COMPLETED MAIN QUEUE - running maxed out domains");
269                 if ($this->domain_queue !== false) {
270                     $this->queue  = $this->remainingDomainQueue();
271                      
272                     continue;
273                 }
274                 break; // nothing more in queue.. and no remaining one
275             }
276             
277             
278             $p = array_shift($this->queue);
279             if (!$this->poolfree()) {
280                 array_unshift($this->queue,$p); /// put it back on..
281                 sleep(3);
282                 continue;
283             }
284             // not sure what happesn if person email and to_email is empty!!?
285             $email = empty($p->to_email) ? ($p->person() ? $p->person()->email : $p->to_email) : $p->to_email;
286             
287             $black = $this->isBlacklisted($email);
288             if ($black !== false) {
289                 $this->logecho("DOMAIN blacklisted - {$email} - moving to another pool");
290                 $this->updateServer($p, $black);
291                 continue;
292             }
293              
294             
295             if ($this->poolHasDomain($email) > $this->max_to_domain) {
296                 
297                 // push it to a 'domain specific queue'
298                 $this->logecho("REQUEING - maxed out that domain - {$email}");
299                 $this->pushQueueDomain($p, $email);
300                   
301                 
302                 //sleep(3);
303                 continue;
304             }
305             
306             
307             $this->run($p->id,$email);
308             
309             
310             
311         }
312          $this->logecho("REQUEUING all emails that maxed out:" . count($this->next_queue));
313         if (!empty($this->next_queue)) {
314              
315             foreach($this->next_queue as $p) {
316                 $this->updateServer($p);
317             }
318         }
319         
320         
321         $this->logecho("QUEUE COMPLETE - waiting for pool to end");
322         // we should have a time limit here...
323         while(count($this->pool)) {
324             $this->poolfree();
325             sleep(3);
326         }
327          
328         
329         
330         
331         $this->logecho("DONE");
332         exit;
333     }
334     
335     
336     function isBlacklisted($email)
337     {
338         return $this->server->isBlacklisted(); 
339     }
340     
341     // this sequentially distributes requeued emails.. - to other servers. (can exclude current one if we have that flagged.)
342     function updateServer($ww, $exclude = -1)
343     {
344         return $this->server->updateNotifyToNextServer( $ww, $exclude);
345         
346         
347          
348     }
349   
350     
351     function generateNotifications()
352     {
353         // this should check each module for 'GenerateNotifications.php' class..
354         //and run it if found..
355         $ff = HTML_FlexyFramework::get();
356        
357         $disabled = explode(',', $ff->disable);
358
359         $modules = array_reverse($this->modulesList());
360         
361         // move 'project' one to the end...
362         
363         foreach ($modules as $module){
364             if(in_array($module, $disabled)){
365                 continue;
366             }
367             $file = $this->rootDir. "/Pman/$module/GenerateNotifications.php";
368             if(!file_exists($file)){
369                 continue;
370             }
371             
372             require_once $file;
373             $class = "Pman_{$module}_GenerateNotifications";
374             $x = new $class;
375             if(!method_exists($x, 'generate')){
376                 continue;
377             };
378             //echo "$module\n";
379             $x->generate($this);
380         }
381                 
382     
383     }
384     
385     function assignQueues()
386     {
387         
388         DB_DataObject::Factory('core_notify_server')->assignQueues($this);
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['email']} " . $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['email']} " .  $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 }