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 = "Send out notification emails (usually from cron)";
20     
21     static $cli_opts = array(
22         'debug' => array(
23             'desc' => 'Turn on debugging (see DataObjects debugLevel )',
24             'default' => 0,
25             'short' => 'v',
26             'min' => 1,
27             'max' => 1,
28             
29         ),
30         'list' => array(
31             'desc' => 'List message to send, do not send them..',
32             'default' => 0,
33             'short' => 'l',
34             'min' => 0,
35             'max' => 0,
36             
37         ),
38         'old' => array(
39             'desc' => 'Show old messages..',
40             'default' => 0,
41             'short' => 'o',
42             'min' => 0,
43             'max' => 0,
44             
45         ),
46         'force' => array(
47             'desc' => 'Force redelivery, even if it has been sent before or not queued...',
48             'default' => 0,
49             'short' => 'f',
50             'min' => 0,
51             'max' => 0,
52         ),
53         'generate' => array(
54             'desc' => 'Generate notifications for a table, eg. cash_invoice',
55             'default' => 0,
56             'short' => 'g',
57             'min' => 0,
58             'max' => 0,
59         ),
60     );
61     
62     
63     
64     var $table = 'core_notify';
65     var $target = 'Core/NotifySend';
66     var $evtype = ''; // any notification...
67                     // this script should only handle EMAIL notifications..
68     
69     function getAuth()
70     {
71         $ff = HTML_FlexyFramework::get();
72         if (!$ff->cli) {
73             die("access denied");
74         }
75         HTML_FlexyFramework::ensureSingle(__FILE__, $this);
76         return true;
77         
78     }
79     
80     var $pool = array();
81     
82     function get($r,$opts)    
83     {
84         if ($opts['debug']) {
85             DB_DataObject::debugLevel($opts['debug']);
86             print_r($opts);
87         }
88         //date_default_timezone_set('UTC');
89        // phpinfo();exit;
90         $showold = !empty($opts['old']);
91         if (!empty($opts['old'])) {
92             $opts['list'] = 1; // force listing..
93         }
94         
95         $this->force = empty($opts['force']) ? 0 : 1;
96      
97         if (!empty($opts['send-to'])) {
98             $this->send_to = $opts['send-to'];
99         }
100      
101         
102         $w = DB_DataObject::factory('core_notify_recur');
103         if (is_a($w, 'DB_DataObject')) {
104             $w->generateNotifications();
105         }
106         if (!empty($opts['generate'])) {
107             $w = DB_DataObject::factory($opts['generate']);
108             if (is_a($w, 'DB_DataObject')) {
109                 $w->generateNotifications();
110             }
111             
112             
113         }
114      
115         //DB_DataObject::debugLevel(1);
116         $w = DB_DataObject::factory($this->table);
117         
118         if (!$showold) {
119             $w->whereAdd('act_when > sent'); // eg.. sent is not valid..
120             
121             if (!$this->force) {
122                 $w->whereAdd('act_when < NOW()'); // eg.. not if future..
123             }
124     
125             $w->orderBy('act_when ASC'); // oldest first.
126             $w->limit(1000); // we can run 1000 ...
127         } else {
128             $w->orderBy('act_when DESC'); // latest first
129             $w->limit(50); // we can run 1000 ...
130         }
131         if (!empty($this->evtype)) {
132             $w->evtype = $this->evtype;
133         }
134         
135         $w->autoJoin();
136         
137         
138         $ar = $w->fetchAll();
139         
140         if (!empty($opts['list'])) {
141             if (empty($ar)) {
142                 die("Nothing in Queue\n");
143             }
144             foreach($ar as $w) {
145                 $o = $w->object();
146                 
147                 
148                 echo "$w->id : $w->person_id_email email    : ".
149                         $o->toEventString()."    ". $w->status() . "\n";
150             }
151             exit;
152         }
153         
154         
155         $pushed = array();
156         while (true) {
157             if (empty($ar)) {
158                 break;
159             }
160             
161             
162             $p = array_shift($ar);
163             if (!$this->poolfree()) {
164                 array_unshift($ar,$p); /// put it back on..
165                 sleep(3);
166                 continue;
167             }
168             if ($this->poolHasDomain($p->person_id_email)) {
169                 if (in_array($p->person_id_email, $pushed)) {
170                     // it's been pushed to the end, and nothing has
171                     // been pushed since.
172                     // give up, let the next run sort it out.
173                     break;
174                 }
175                 
176                 $ar[] = $p; // push it on the end..
177                 
178                 $pushed[] = $p->person_id_email;
179                 
180                 echo "domain {$p->person_id_email} already on queue, pushing to end.\n";
181                 sleep(3);
182                 continue;
183             }
184             
185             
186             $this->run($p->id,$p->person_id_email);
187             $pushed = array();
188             
189         }
190         
191         // we should have a time limit here...
192         while(count($this->pool)) {
193             $this->poolfree();
194             sleep(3);
195         }
196         
197         die("DONE\n");
198     }
199     
200     function run($id, $email, $cmdOpts="")
201     {
202        // phpinfo();exit;
203         $tn = tempnam(ini_get('session.save_path'),'stdout') . '.stdout';
204         $descriptorspec = array(
205             0 => array("pipe", 'r'),  // stdin is a pipe that the child will read from
206             1 => array("file", $tn, 'w'),  // stdout is a pipe that the child will write to
207             2 => array("pipe", "w") // stderr is a file to write to
208          );
209         $php = $_SERVER["_"];
210         $sn =  $_SERVER["SCRIPT_NAME"];
211         
212         $cwd = $sn[0] == '/' ? dirname($sn) : dirname(realpath(getcwd() . '/'. $sn)); // same as run on.. (so script should end up being same relatively..)
213         $app = $cwd . '/' . basename($_SERVER["SCRIPT_NAME"]) . '  ' . $this->target . '/'. $id;
214         if ($this->force) {
215             $app .= ' -f';
216         }
217         if (!empty($this->send_to)) {
218             $app .= ' --sent-to='.escapeshellarg($this->send_to);
219         }
220         $cmd = 'exec ' . $php . ' ' . $app . ' ' . $cmdOpts; //. ' &';
221         
222        
223         $pipe = array();
224         echo "call proc_open $cmd\n";
225         $p = proc_open($cmd, $descriptorspec, $pipes, $cwd );
226         $info =  proc_get_status($p);
227         $this->pool[] = array(
228                 'proc' => $p,
229                 'pid' => $info['pid'],
230                 'out' => $tn,
231                 'cmd' => $cmd,
232                 'email' => $email,
233                 'pipes' => $pipes,
234                 'started' => time()
235             
236                 
237         );
238         echo "RUN ({$info['pid']}) $cmd  \n";
239     }
240     
241     function poolfree()
242     {
243         $pool = array();
244         clearstatcache();
245         $maxruntime = 2 * 60; // 2 minutes.. ?? should be long enoguh
246         
247         foreach($this->pool as $p) {
248              
249             //echo "CHECK PID: " . $p['pid'] . "\n";
250             $info =  proc_get_status($p['proc']);
251             //var_dump($info);
252             
253             // update if necessday.
254             if ($info['pid']) {
255                 echo "CHANING PID FROM " . $p['pid']  .  "  TO ". $info['pid']. "\n";
256                 $p['pid'] = $info['pid'];
257             }
258             
259             echo @file_get_contents('/proc/'. $p['pid'] .'/cmdline') . "\n";
260             
261             if ($info['running']) {
262             
263                 //if (file_exists('/proc/'.$p['pid'])) {
264                 $runtime = time() - $p['started'];
265                 //echo "RUNTIME ({$p['pid']}): $runtime\n";
266                 if ($runtime > $maxruntime) {
267                     
268                     proc_terminate($p['proc'], 9);
269                     //fclose($p['pipes'][1]);
270                     fclose($p['pipes'][0]);
271                     fclose($p['pipes'][2]);
272                     echo "\nTERMINATING: ({$p['pid']}) " . $p['cmd'] . " : " . file_get_contents($p['out']) . "\n";
273                     @unlink($p['out']);
274                     
275                     continue;
276                 }
277                 
278                 $pool[] = $p;
279                 continue;
280             }
281             fclose($p['pipes'][0]);
282             fclose($p['pipes'][2]);
283             //echo "CLOSING: ({$p['pid']}) " . $p['cmd'] . " : " . file_get_contents($p['out']) . "\n";
284             //fclose($p['pipes'][1]);
285             
286             proc_close($p['proc']);
287             
288             
289             //clearstatcache();
290             //if (file_exists('/proc/'.$p['pid'])) {
291             //    $pool[] = $p;
292             //    continue;
293             //}
294             echo "\nENDED: ({$p['pid']}) " .  $p['cmd'] . " : " . file_get_contents($p['out']) . "\n";
295             @unlink($p['out']);
296             //unlink($p['out']);
297         }
298         echo "POOL SIZE: ". count($pool) ."\n";
299         $this->pool = $pool;
300         if (count($pool) < 10) {
301             return true;
302         }
303         return false;
304         
305     }
306     /**
307      * see if pool is already trying to deliver to this domain.?
308      * -- if so it get's pushed to the end of the queue.
309      *
310      */
311     function poolHasDomain($email)
312     {
313         $dom = strtolower(array_pop(explode('@',$email)));
314         foreach($this->pool as $p) {
315             $mdom = strtolower(array_pop(explode('@',$p['email'])));
316             if ($mdom == $dom) {
317                 return true;
318             }
319         }
320         return false;
321         
322     }
323
324     function output()
325     {
326         die("Done\n");
327     }
328 }