NotifySend.php
[Pman.Core] / NotifySend.php
1 <?php
2 require_once 'Pman.php';
3
4 /**
5  * notification script sender - designed to be run by the Notify script - with many children running
6  * in parallel.
7  *
8  * called with an id of a core_notify element
9  *
10  * uses core_notify - to find an event to object and person.
11  *
12  * uses Events table to log failures
13  * 
14  * 
15  * calls $object->toEmail($person,$last_send, $notify) to generate an email struct with
16  *  array (
17  *      headers =>
18  *      recipients =>
19  *      body =>
20  *  )
21  * 
22  * 
23  */
24
25
26 class Pman_Core_NotifySend extends Pman
27 {
28     static $cli_desc = "Send out single notification email (usually called from  Core/Notify)";
29     
30     static $cli_opts = array(
31         'debug' => array(
32             'desc' => 'Turn on debugging (see DataObjects debugLevel )',
33             'default' => 0,
34             'short' => 'v',
35             'min' => 0,
36             'max' => 0,
37             
38         ),
39         'DB_DataObject-debug' => array(
40             'desc' => 'Turn on debugging (see DataObjects debugLevel )',
41             'default' => 0,
42             'short' => 'd',
43             'min' => 1,
44             'max' => 1,
45             
46         ),
47         'force' => array(
48             'desc' => 'Force redelivery, even if it has been sent before or not queued...',
49             'default' => 0,
50             'short' => 'f',
51             'min' => 0,
52             'max' => 0,
53         ),
54         'send-to' => array(
55             'desc' => 'Send the message to this address, rather than the one listed.',
56             'default' => '',
57             'short' => 't',
58             'min' => 0,
59             'max' => 1,
60         )
61         
62         
63         
64     );
65     var $table = 'core_notify';
66     function getAuth()
67     {
68         $ff = HTML_FlexyFramework::get();
69         if (!$ff->cli) {
70             die("access denied");
71         }
72         //HTML_FlexyFramework::ensureSingle(__FILE__, $this);
73         return true;
74         
75     }
76    
77     function get($id,$opts)
78     {
79         if ($opts['DB_DataObject-debug']) {
80             DB_DataObject::debugLevel($opts['DB_DataObject-debug']);
81         }
82         //DB_DataObject::debugLevel(1);
83         //date_default_timezone_set('UTC');
84         // phpinfo();exit;
85         $force = empty($opts['force']) ? 0 : 1;
86         
87         $w = DB_DataObject::factory($this->table);
88         
89         if (!$w->get($id)) {
90             die("invalid id\n");
91         }
92         if (!$force && strtotime($w->act_when) < strtotime($w->sent)) {
93             
94             
95             die("send repeat to early\n");
96         }
97         
98         if (!$force && !empty($w->msgid)) {
99             $ww = clone($w);
100             $w->sent = $w->sqlValue("NOW()");
101             $w->update($ww);
102             
103             die("message has been sent already.\n");
104         }
105         
106         
107         $o = $w->object();
108         $p = $w->person();
109         
110         // let's work out the last notification sent to this user..
111         $l = DB_DataObject::factory($this->table);
112         $l->setFrom( array(
113                 'ontable' => $w->ontable,
114                 'onid' => $w->onid,
115                 'person_id' => $w->person_id,
116         ));        
117         $l->whereAdd('id != '. $w->id);
118         $l->orderBy('sent DESC');
119         $l->limit(1);
120         $ar = $l->fetchAll('sent');
121         $last = empty($ar) ? date('Y-m-d H:i:s', 0) : $ar[0];
122         
123         // find last event..
124         $ev = DB_DataObject::factory('Events');
125         $ev->on_id = $w->id;                           // int(11)
126         $ev->on_table = $this->table;
127         $ev->limit(1);
128         $ev->orderBy('event_when DESC');
129         $ar = $ev->fetchAll('event_when');
130         $last_event = empty($ar) ? 0 : $ar[0];
131         $next_try_min = 5;
132         if ($last_event) {
133             $next_try_min = floor((time() - strtotime($last_event)) / 60) * 2;
134         }
135         $next_try = $next_try_min . ' MINUTES';
136         
137         $email =  $this->makeEmail($o, $p, $last, $w);
138         
139         
140         if ($email === true)  {
141             
142             $ev = $this->addEvent('NOTIFY', $w,
143                             "Notification event cleared (not required any more)" );;
144             $ww = clone($w);
145             $w->sent = date('Y-m-d H:i:s');
146             $w->msgid = '';
147             $w->event_id = $ev->id;
148             $w->update($ww);
149             die(date('Y-m-d h:i:s ') . 
150                      "Notification event cleared (not required any more)" 
151                     ."\n");
152         }
153      
154        
155         
156         if ($email === false || isset($email['error'])) {
157             // object returned 'false' - it does not know how to send it..
158             $ev = $this->addEvent('NOTIFY', $w, isset($email['error'])  ?
159                             $email['error'] : "INTERNAL ERROR  - We can not handle " . $w->ontable); 
160             $ww = clone($w);
161             $w->sent = date('Y-m-d H:i:s');
162             $w->msgid = '';
163             $w->event_id = $ev->id;
164             $w->update($ww);
165             die(date('Y-m-d h:i:s ') . 
166                     (isset($email['error'])  ?
167                             $email['error'] : "INTERNAL ERROR  - We can not handle " . $w->ontable)
168                     ."\n");
169         }
170         
171         
172         
173         
174         
175         if (isset($email['later'])) {
176             $old = clone($w);
177             $w->act_when = $email['later'];
178             $w->update($old);
179             die(date('Y-m-d h:i:s ') . " Delivery postponed by email creator");
180         }
181         
182          
183         if (!isset($email['headers']['Message-Id'])) {
184             $HOST = gethostname();
185             $email['headers']['Message-Id'] = "<{$this->table}-{$id}@{$HOST}>";
186             
187         }
188         //$p->email = 'alan@akbkhome.com'; //for testing..
189         //print_r($email);exit;
190         // should we fetch the watch that caused it.. - which should contain the method to call..
191         // --send-to=test@xxx.com
192         if (!empty($opts['send-to'])) {
193             $p->email = $opts['send-to'];
194         }
195         
196         require_once 'Validate.php';
197         if (!Validate::email($p->email, true)) {
198             $ev = $this->addEvent('NOTIFY', $w, "INVALID ADDRESS: " . $p->email);
199             $ww = clone($w);
200             $w->sent = date('Y-m-d H:i:s');
201             $w->msgid = '';
202             $w->event_id = $ev->id;
203             $w->update($ww);
204             die(date('Y-m-d h:i:s ') . "INVALID ADDRESS: " . $p->email. "\n");
205             
206         }
207         
208         
209         $ff = HTML_FlexyFramework::get();
210         
211         $dom = array_pop(explode('@', $p->email));
212         
213         $mxs = $this->mxs($dom);
214         $ww = clone($w);
215
216         
217         if ($mxs === false) {
218             $ev = $this->addEvent('NOTIFY', $w, "BAD ADDRESS - ". $p->email );
219             $w->sent = date('Y-m-d H:i:s');
220             $w->msgid = '';
221             $w->event_id = $ev->id;
222             $w->update($ww);
223             die(date('Y-m-d h:i:s') . " - FAILED -  BAD EMAIL - {$p->email} \n");
224             
225             
226         }
227         
228         
229         
230         $fail = false;
231         require_once 'Mail.php';
232         
233         foreach($mxs as $dom) {
234             
235             
236             
237             if (!isset($ff->Mail['helo'])) {
238                 die("config Mail[helo] is not set");
239             }
240             
241             $this->debug("Trying SMTP: $dom / HELO {$ff->Mail['helo']}");
242             $mailer = Mail::factory('smtp', array(
243                     'host'    => $dom ,
244                     'localhost' => $ff->Mail['helo'],
245                     'timeout' => 15,
246                   //  'debug' => true
247                 ));
248             $res = $mailer->send($p->email, $email['headers'], $email['body']);
249             
250             
251             
252             
253             if ($res === true) {
254                 // success....
255                 
256                 $ev = $this->addEvent('NOTIFY', $w, 'SUCCESS: ' .$email['headers']['Subject']);
257                
258                 
259                 
260                 $w->sent = date('Y-m-d H:i:s');
261                 $w->msgid = $email['headers']['Message-Id'];
262                 $w->event_id = $ev->id; // sent ok.. - no need to record it..
263                 $w->update($ww);
264                 
265                 // enable cc in notify..
266                 if (!empty($email['headers']['Cc'])) {
267                     $mailer = Mail::factory('smtp', array(
268                        //'host'    => $dom ,
269                       //  'debug' => true
270                     ));
271                     $email['headers']['Subject'] = "(CC): " . $email['headers']['Subject'];
272                     $mailer->send($email['headers']['Cc'],
273                                   $email['headers'], $email['body']);
274                     
275                 }
276                 
277                 
278                 
279                 
280                 die(date('Y-m-d h:i:s') . " - SENT\n");
281             }
282             // what type of error..
283             $code = empty($res->userinfo['smtpcode']) ? -1 : $res->userinfo['smtpcode'];
284             if (!empty($res->code) && $res->code == 10001) {
285                 // fake greylist if timed out.
286                 $code = 421;
287             }
288             
289             if ($code < 0) {
290                 $this->debug($res->message);
291                 continue; // try next mx... ??? should we wait??? - nope we did not even connect..
292             }
293             // give up after 2 days..
294             if (in_array($code, array( 421, 450, 451, 452))   && $next_try_min < (2*24*60)) {
295                 // try again later..
296                 // check last event for this item..
297                 
298                 // we try for 3 days..
299                 $retry = 5;
300                 if (strtotime($w->act_start) <  strtotime('NOW - 1 HOUR')) {
301                     // older that 1 hour.
302                     $retry = 15;
303                 }
304                 
305                 if (strtotime($w->act_start) <  strtotime('NOW - 1 DAY')) {
306                     // older that 1 day.
307                     $retry = 60;
308                 }
309                 if (strtotime($w->act_start) <  strtotime('NOW - 2 DAY')) {
310                     // older that 1 day.
311                     $retry = 120;
312                 }
313                 
314                 $this->addEvent('NOTIFY', $w, 'GREYLISTED ' . $p->email . ' ' . $res->toString());
315                 $w->act_when = date('Y-m-d H:i:s', strtotime('NOW + ' . $retry . ' MINUTES'));
316                 $w->update($ww);
317                 die(date('Y-m-d h:i:s') . " - GREYLISTED\n");
318             }
319             $fail = true;
320             break;
321         }
322         if ($fail || $next_try_min > (2*24*60)) {
323         // fail.. = log and give up..
324             $ev = $this->addEvent('NOTIFY', $w, "RETRY TIME EXCEEDED - ".
325                         $p->email . ' ' .
326                         ($fail ? ($res->userinfo['smtpcode'] . ' : ' .$res->toString()) :  " - UNKNOWN ERROR"));
327             $w->sent = date('Y-m-d H:i:s');
328             $w->msgid = '';
329             $w->event_id = $ev->id;
330             $w->update($ww);
331             die(date('Y-m-d h:i:s') . ' - FAILED - '. ($fail ? $res->toString() : "RETRY TIME EXCEEDED\n"));
332         }
333         
334         // handle no host availalbe forever...
335         if (strtotime($w->act_start) < strtotime('NOW - 3 DAYS')) {
336             $ev = $this->addEvent('NOTIFY', $w, "RETRY TIME EXCEEDED - ". $p->email);
337             $w->sent = date('Y-m-d H:i:s');
338             $w->msgid = '';
339             $w->event_id = $ev->id;
340             $w->update($ww);
341             die(date('Y-m-d h:i:s') . " - FAILED - RETRY TIME EXCEEDED\n");
342             
343             
344         }
345         
346         
347         $this->addEvent('NOTIFY', $w, 'NO HOST CAN BE CONTACTED:' . $p->email);
348         $w->act_when = date('Y-m-d H:i:s', strtotime('NOW + 5 MINUTES'));
349         $w->update($ww);
350         die(date('Y-m-d h:i:s') ." - NO HOST AVAILABLE\n");
351
352         
353     }
354     function mxs($fqdn)
355     {
356         $mx_records = array();
357         $mx_weight = array();
358         $mxs = array();
359         if (!getmxrr($fqdn, $mx_records, $mx_weight)) {
360             if (!checkdnsrr($fqdn)) {
361                 return false;
362             }
363             return array($fqdn);
364         }
365         
366         asort($mx_weight,SORT_NUMERIC);
367         
368         foreach($mx_weight as $k => $weight) {
369             $mxs[] = $mx_records[$k];
370         }
371         return $mxs;
372     }
373     
374     /**
375      * wrapper to call object->toEmail()
376      *
377      * return
378      *   {
379         headers : {AssocArray},
380         body: {String}
381         
382         // optional..
383         error :  {String} // error message in log.
384         send-to: {String} // use to override rcpt
385          
386      }
387      **/
388     function makeEmail($object, $rcpt, $last_sent_date, $notify)
389     {
390         return $object->toEmail($rcpt, $last_sent_date, $notify);
391     }
392     
393     function debug($str)
394     {
395         if (empty($this->cli_args['debug'])) {
396             return;
397             
398         }
399         echo $str . "\n";
400     }
401     
402 }