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' => '',
56             'short' => 'g',
57             'min' => 0,
58             'max' => 1,
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     var $force = false;
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             exit;
112             
113             
114         }
115      
116         //DB_DataObject::debugLevel(1);
117         $w = DB_DataObject::factory($this->table);
118         
119         if (!$showold) {
120             
121             // standard
122             
123             $w->whereAdd('act_when > sent'); // eg.. sent is not valid..
124             $w->whereAdd('act_start > NOW() - INTERVAL 14 DAYS'); // ignore the ones stuck in the queue
125             if (!$this->force) {
126                 $w->whereAdd('act_when < NOW()'); // eg.. not if future..
127             }
128     
129             $w->orderBy('act_when ASC'); // oldest first.
130             $w->limit(1000); // we can run 1000 ...
131         } else {
132             $w->orderBy('act_when DESC'); // latest first
133             $w->limit(50); // we can run 1000 ...
134         }
135         if (!empty($this->evtype)) {
136             $w->evtype = $this->evtype;
137         }
138         
139         $w->autoJoin();
140         
141         
142         $ar = $w->fetchAll();
143         
144         if (!empty($opts['list'])) {
145             if (empty($ar)) {
146                 die("Nothing in Queue\n");
147             }
148             foreach($ar as $w) {
149                 $o = $w->object();
150                 
151                 
152                 echo "$w->id : $w->person_id_email email    : ".
153                         $o->toEventString()."    ". $w->status() . "\n";
154             }
155             exit;
156         }
157         
158         
159         $pushed = array();
160         while (true) {
161             if (empty($ar)) {
162                 break;
163             }
164             
165             
166             $p = array_shift($ar);
167             if (!$this->poolfree()) {
168                 array_unshift($ar,$p); /// put it back on..
169                 sleep(3);
170                 continue;
171             }
172             if ($this->poolHasDomain($p->person_id_email)) {
173                 if (in_array($p->person_id_email, $pushed)) {
174                     // it's been pushed to the end, and nothing has
175                     // been pushed since.
176                     // give up, let the next run sort it out.
177                     break;
178                 }
179                 
180                 $ar[] = $p; // push it on the end..
181                 
182                 $pushed[] = $p->person_id_email;
183                 
184                 echo "domain {$p->person_id_email} already on queue, pushing to end.\n";
185                 sleep(3);
186                 continue;
187             }
188             
189             
190             $this->run($p->id,$p->person_id_email);
191             $pushed = array();
192             
193         }
194         
195         // we should have a time limit here...
196         while(count($this->pool)) {
197             $this->poolfree();
198             sleep(3);
199         }
200         
201         die("DONE\n");
202     }
203     
204     function run($id, $email, $cmdOpts="")
205     {
206        // phpinfo();exit;
207         $tn = tempnam(ini_get('session.save_path'),'stdout') . '.stdout';
208         $descriptorspec = array(
209             0 => array("pipe", 'r'),  // stdin is a pipe that the child will read from
210             1 => array("file", $tn, 'w'),  // stdout is a pipe that the child will write to
211             2 => array("pipe", "w") // stderr is a file to write to
212          );
213         $php = $_SERVER["_"];
214         $sn =  $_SERVER["SCRIPT_NAME"];
215         
216         $cwd = $sn[0] == '/' ? dirname($sn) : dirname(realpath(getcwd() . '/'. $sn)); // same as run on.. (so script should end up being same relatively..)
217         $app = $cwd . '/' . basename($_SERVER["SCRIPT_NAME"]) . '  ' . $this->target . '/'. $id;
218         if ($this->force) {
219             $app .= ' -f';
220         }
221         if (!empty($this->send_to)) {
222             $app .= ' --sent-to='.escapeshellarg($this->send_to);
223         }
224         $cmd = 'exec ' . $php . ' ' . $app . ' ' . $cmdOpts; //. ' &';
225         
226        
227         $pipe = array();
228         echo "call proc_open $cmd\n";
229         $p = proc_open($cmd, $descriptorspec, $pipes, $cwd );
230         $info =  proc_get_status($p);
231         $this->pool[] = array(
232                 'proc' => $p,
233                 'pid' => $info['pid'],
234                 'out' => $tn,
235                 'cmd' => $cmd,
236                 'email' => $email,
237                 'pipes' => $pipes,
238                 'started' => time()
239             
240                 
241         );
242         echo "RUN ({$info['pid']}) $cmd  \n";
243     }
244     
245     function poolfree()
246     {
247         $pool = array();
248         clearstatcache();
249         $maxruntime = 2 * 60; // 2 minutes.. ?? should be long enoguh
250         
251         foreach($this->pool as $p) {
252              
253             //echo "CHECK PID: " . $p['pid'] . "\n";
254             $info =  proc_get_status($p['proc']);
255             //var_dump($info);
256             
257             // update if necessday.
258             if ($info['pid']) {
259                 echo "CHANING PID FROM " . $p['pid']  .  "  TO ". $info['pid']. "\n";
260                 $p['pid'] = $info['pid'];
261             }
262             
263             echo @file_get_contents('/proc/'. $p['pid'] .'/cmdline') . "\n";
264             
265             if ($info['running']) {
266             
267                 //if (file_exists('/proc/'.$p['pid'])) {
268                 $runtime = time() - $p['started'];
269                 //echo "RUNTIME ({$p['pid']}): $runtime\n";
270                 if ($runtime > $maxruntime) {
271                     
272                     proc_terminate($p['proc'], 9);
273                     //fclose($p['pipes'][1]);
274                     fclose($p['pipes'][0]);
275                     fclose($p['pipes'][2]);
276                     echo "\nTERMINATING: ({$p['pid']}) " . $p['cmd'] . " : " . file_get_contents($p['out']) . "\n";
277                     @unlink($p['out']);
278                     
279                     continue;
280                 }
281                 
282                 $pool[] = $p;
283                 continue;
284             }
285             fclose($p['pipes'][0]);
286             fclose($p['pipes'][2]);
287             //echo "CLOSING: ({$p['pid']}) " . $p['cmd'] . " : " . file_get_contents($p['out']) . "\n";
288             //fclose($p['pipes'][1]);
289             
290             proc_close($p['proc']);
291             
292             
293             //clearstatcache();
294             //if (file_exists('/proc/'.$p['pid'])) {
295             //    $pool[] = $p;
296             //    continue;
297             //}
298             echo "\nENDED: ({$p['pid']}) " .  $p['cmd'] . " : " . file_get_contents($p['out']) . "\n";
299             @unlink($p['out']);
300             //unlink($p['out']);
301         }
302         echo "POOL SIZE: ". count($pool) ."\n";
303         $this->pool = $pool;
304         if (count($pool) < 10) {
305             return true;
306         }
307         return false;
308         
309     }
310     /**
311      * see if pool is already trying to deliver to this domain.?
312      * -- if so it get's pushed to the end of the queue.
313      *
314      */
315     function poolHasDomain($email)
316     {
317         $dom = strtolower(array_pop(explode('@',$email)));
318         foreach($this->pool as $p) {
319             $mdom = strtolower(array_pop(explode('@',$p['email'])));
320             if ($mdom == $dom) {
321                 return true;
322             }
323         }
324         return false;
325         
326     }
327
328     function output()
329     {
330         die("Done\n");
331     }
332 }