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     );
39     
40     
41     
42     var $table = 'core_notify';
43     var $target = 'Core/NotifySend';
44     var $evtype = ''; // any notification...
45                     // this script should only handle EMAIL notifications..
46     
47     function getAuth()
48     {
49         $ff = HTML_FlexyFramework::get();
50         if (!$ff->cli) {
51             die("access denied");
52         }
53         HTML_FlexyFramework::ensureSingle(__FILE__, $this);
54         return true;
55         
56     }
57     
58     var $pool = array();
59     
60     function get($r,$opts)    
61     {
62         if ($opts['debug']) {
63             DB_DataObject::debugLevel($opts['debug']);
64             print_r($opts);
65         }
66         //date_default_timezone_set('UTC');
67        // phpinfo();exit;
68         
69         
70         
71         $w = DB_DataObject::factory($this->table);
72         $w->whereAdd('act_when > sent'); // eg.. sent is not valid..
73         $w->whereAdd('act_when < NOW()'); // eg.. not if future..
74
75         $w->orderBy('act_when ASC'); // oldest first.
76         if (!empty($this->evtype)) {
77             $w->evtype = $this->evtype;
78         }
79         
80         $w->autoJoin();
81         $w->limit(1000); // we can run 1000 ...
82         
83         $ar = $w->fetchAll();
84         
85         if (!empty($opts['list'])) {
86             foreach($ar as $w) {
87                 $o = $w->object();
88                 echo "$e->id : $w->person_id_email email    : ". $o->toEventString()."\n";
89             }
90             exit;
91             
92             
93         }
94         
95         
96         
97         while (true) {
98             if (empty($ar)) {
99                 break;
100             }
101             
102             $p = array_shift($ar);
103             if (!$this->poolfree()) {
104                 array_unshift($ar,$p); /// put it back on..
105                 sleep(3);
106                 continue;
107             }
108             if ($this->poolHasDomain($p->person_id_email)) {
109                 $ar[] = $p; // push it on the end..
110                 echo "domain {$p->person_id_email} already on queue, pushing to end.\n";
111                 sleep(3);
112                 continue;
113             }
114             
115             
116             $this->run($p->id,$p->person_id_email);
117         }
118         while(count($this->pool)) {
119             $this->poolfree();
120             sleep(3);
121         }
122         
123         die("DONE\n");
124     }
125     
126     function run($id, $email)
127     {
128        // phpinfo();exit;
129         $tn = tempnam(ini_get('session.save_path'),'stdout') . '.stdout';
130         $descriptorspec = array(
131             0 => array("pipe", 'r'),  // stdin is a pipe that the child will read from
132             1 => array("file", $tn, 'w'),  // stdout is a pipe that the child will write to
133             2 => array("pipe", "w") // stderr is a file to write to
134          );
135         $php = $_SERVER["_"];
136         $sn =  $_SERVER["SCRIPT_NAME"];
137         
138         $cwd = $sn[0] == '/' ? dirname($sn) : dirname(realpath(getcwd() . $sn)); // same as run on.. (so script should end up being same relatively..)
139         $app = $cwd . '/' . basename($_SERVER["SCRIPT_NAME"]) . '  ' . $this->target . '/'. $id;
140         $cmd = $php . ' ' . $app. ' &';
141         echo $cmd . "\n";
142         $pipe = array();
143         $p = proc_open($cmd, $descriptorspec, $pipes, $cwd );
144         $this->pool[] = array(
145                 'proc' => $p,
146                 'out' => $tn,
147                 'cmd' => $cmd,
148                 'email' => $email
149         );
150     }
151     
152     function poolfree()
153     {
154         $pool = array();
155         foreach($this->pool as $p) {
156             $ar = proc_get_status($p['proc']);
157            // print_r($p);
158             //print_r($ar);
159             if ($ar['running']) {
160                 $pool[] = $p;
161                 continue;
162             }
163             echo $p['cmd'] . " : " . file_get_contents($p['out']);
164             //unlink($p['out']);
165         }
166         $this->pool = $pool;
167         if (count($pool) < 10) {
168             return true;
169         }
170         return false;
171         
172     }
173     /**
174      * see if pool is already trying to deliver to this domain.?
175      * -- if so it get's pushed to the end of the queue.
176      *
177      */
178     function poolHasDomain($email)
179     {
180         $dom = strtolower(array_pop(explode('@',$email)));
181         foreach($this->pool as $p) {
182             $mdom = strtolower(array_pop(explode('@',$p['email'])));
183             if ($mdom == $dom) {
184                 return true;
185             }
186         }
187         return false;
188         
189     }
190
191 }