DataObjects/Core_watch.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         if (!empty($opts['debug'])) {
98             print_r($w);
99         }
100         
101         
102         if (!$force && !empty($w->msgid)) {
103             $ww = clone($w);
104             $w->sent = $w->sqlValue("NOW()");
105             $w->update($ww);
106             
107             die("message has been sent already.\n");
108         }
109         
110         
111         $o = $w->object();
112         
113         if ($o === false)  {
114             
115             $ev = $this->addEvent('NOTIFY', $w,
116                             "Notification event cleared (underlying object does not exist)" );;
117             $ww = clone($w);
118             $w->sent = date('Y-m-d H:i:s');
119             $w->msgid = '';
120             $w->event_id = $ev->id;
121             $w->update($ww);
122             die(date('Y-m-d h:i:s ') . 
123                      "Notification event cleared (underlying object does not exist)" 
124                     ."\n");
125         }
126      
127         
128         
129         $p = $w->person();
130         
131         if (isset($p->active) && empty($p->active)) {
132             $ev = $this->addEvent('NOTIFY', $w,
133                             "Notification event cleared (not user not active any more)" );;
134             $ww = clone($w);
135             $w->sent = date('Y-m-d H:i:s');
136             $w->msgid = '';
137             $w->event_id = $ev->id;
138             $w->update($ww);
139             die(date('Y-m-d h:i:s ') . 
140                      "Notification event cleared (not user not active any more)" 
141                     ."\n");
142             die("message has been sent already.\n");
143         }
144         
145         
146         // let's work out the last notification sent to this user..
147         $l = DB_DataObject::factory($this->table);
148         $l->setFrom( array(
149                 'ontable' => $w->ontable,
150                 'onid' => $w->onid,
151                 'person_id' => $w->person_id,
152         ));        
153         $l->whereAdd('id != '. $w->id);
154         $l->orderBy('sent DESC');
155         $l->limit(1);
156         $ar = $l->fetchAll('sent');
157         $last = empty($ar) ? date('Y-m-d H:i:s', 0) : $ar[0];
158         
159         // find last event..
160         $ev = DB_DataObject::factory('Events');
161         $ev->on_id = $w->id;                           // int(11)
162         $ev->on_table = $this->table;
163         $ev->limit(1);
164         $ev->orderBy('event_when DESC');
165         $ar = $ev->fetchAll('event_when');
166         $last_event = empty($ar) ? 0 : $ar[0];
167         $next_try_min = 5;
168         if ($last_event) {
169             $next_try_min = floor((time() - strtotime($last_event)) / 60) * 2;
170         }
171         $next_try = $next_try_min . ' MINUTES';
172          
173         // this may modify $p->email. (it will not update it though)
174         $email =  $this->makeEmail($o, $p, $last, $w, $force);
175         
176         
177         if ($email === true)  {
178             
179             $ev = $this->addEvent('NOTIFY', $w,
180                             "Notification event cleared (not required any more)" );;
181             $ww = clone($w);
182             $w->sent = date('Y-m-d H:i:s');
183             $w->msgid = '';
184             $w->event_id = $ev->id;
185             $w->update($ww);
186             die(date('Y-m-d h:i:s ') . 
187                      "Notification event cleared (not required any more)" 
188                     ."\n");
189         }
190      
191        
192         
193         if ($email === false || isset($email['error'])) {
194             // object returned 'false' - it does not know how to send it..
195             $ev = $this->addEvent('NOTIFY', $w, isset($email['error'])  ?
196                             $email['error'] : "INTERNAL ERROR  - We can not handle " . $w->ontable); 
197             $ww = clone($w);
198             $w->sent = date('Y-m-d H:i:s');
199             $w->msgid = '';
200             $w->event_id = $ev->id;
201             $w->update($ww);
202             die(date('Y-m-d h:i:s ') . 
203                     (isset($email['error'])  ?
204                             $email['error'] : "INTERNAL ERROR  - We can not handle " . $w->ontable)
205                     ."\n");
206         }
207         
208         
209         
210         
211         
212         if (isset($email['later'])) {
213             $old = clone($w);
214             $w->act_when = $email['later'];
215             $w->update($old);
216             die(date('Y-m-d h:i:s ') . " Delivery postponed by email creator");
217         }
218         
219          
220         if (!isset($email['headers']['Message-Id'])) {
221             $HOST = gethostname();
222             $email['headers']['Message-Id'] = "<{$this->table}-{$id}@{$HOST}>";
223             
224         }
225         //$p->email = 'alan@akbkhome.com'; //for testing..
226         //print_r($email);exit;
227         // should we fetch the watch that caused it.. - which should contain the method to call..
228         // --send-to=test@xxx.com
229        
230         if (!empty($email['send-to'])) {
231             $p->email = $email['send-to'];
232         }
233          if (!empty($opts['send-to'])) {
234             $p->email = $opts['send-to'];
235         }
236         
237         //print_r($p);
238         require_once 'Validate.php';
239         if (!Validate::email($p->email, true)) {
240             $ev = $this->addEvent('NOTIFY', $w, "INVALID ADDRESS: " . $p->email);
241             $ww = clone($w);
242             $w->sent = date('Y-m-d H:i:s');
243             $w->msgid = '';
244             $w->event_id = $ev->id;
245             $w->update($ww);
246             die(date('Y-m-d h:i:s ') . "INVALID ADDRESS: " . $p->email. "\n");
247             
248         }
249         
250         
251         $ff = HTML_FlexyFramework::get();
252         
253         $dom = array_pop(explode('@', $p->email));
254         
255         $mxs = $this->mxs($dom);
256         $ww = clone($w);
257
258         
259         if ($mxs === false) {
260             $ev = $this->addEvent('NOTIFY', $w, "BAD ADDRESS - ". $p->email );
261             $w->sent = date('Y-m-d H:i:s');
262             $w->msgid = '';
263             $w->event_id = $ev->id;
264             $w->update($ww);
265             die(date('Y-m-d h:i:s') . " - FAILED -  BAD EMAIL - {$p->email} \n");
266             
267             
268         }
269         
270         
271           // we try for 3 days..
272         $retry = 5;
273         if (strtotime($w->act_start) <  strtotime('NOW - 1 HOUR')) {
274             // older that 1 hour.
275             $retry = 15;
276         }
277         
278         if (strtotime($w->act_start) <  strtotime('NOW - 1 DAY')) {
279             // older that 1 day.
280             $retry = 60;
281         }
282         if (strtotime($w->act_start) <  strtotime('NOW - 2 DAY')) {
283             // older that 1 day.
284             $retry = 120;
285         }
286         if (strtotime($w->act_start) <  strtotime('NOW - 14 DAY')) {
287             $ev = $this->addEvent('NOTIFY', $w, "BAD ADDRESS - ". $p->email );
288             $w->sent = date('Y-m-d H:i:s');
289             $w->msgid = '';
290             $w->event_id = $ev->id;
291             $w->update($ww);
292             die(date('Y-m-d h:i:s') . " - FAILED -  GAVE UP TO OLD - {$p->email} \n");
293         }
294         
295         
296         
297         $w->to_email = $p->email; 
298         //$this->addEvent('NOTIFY', $w, 'GREYLISTED ' . $p->email . ' ' . $res->toString());
299         $w->act_when = date('Y-m-d H:i:s', strtotime('NOW + ' . $retry . ' MINUTES'));
300         $w->update($ww);
301         
302         
303         
304         
305         $fail = false;
306         require_once 'Mail.php';
307         
308         foreach($mxs as $dom) {
309             
310             
311             
312             if (!isset($ff->Mail['helo'])) {
313                 die("config Mail[helo] is not set");
314             }
315             
316             $this->debug("Trying SMTP: $dom / HELO {$ff->Mail['helo']}");
317             $mailer = Mail::factory('smtp', array(
318                     'host'    => $dom ,
319                     'localhost' => $ff->Mail['helo'],
320                     'timeout' => 15,
321                   //  'debug' => true
322                 ));
323             $res = $mailer->send($p->email, $email['headers'], $email['body']);
324             
325             
326             
327             
328             if ($res === true) {
329                 // success....
330                 
331                 $ev = $this->addEvent('NOTIFYSENT', $w, "{$w->to_email} - {$email['headers']['Subject']}");
332                
333                 
334                 
335                 $w->sent = date('Y-m-d H:i:s');
336                 $w->msgid = $email['headers']['Message-Id'];
337                 $w->event_id = $ev->id; // sent ok.. - no need to record it..
338                 $w->update($ww);
339                 
340                 // enable cc in notify..
341                 if (!empty($email['headers']['Cc'])) {
342                     $mailer = Mail::factory('smtp', array(
343                        //'host'    => $dom ,
344                       //  'debug' => true
345                     ));
346                     $email['headers']['Subject'] = "(CC): " . $email['headers']['Subject'];
347                     $mailer->send($email['headers']['Cc'],
348                                   $email['headers'], $email['body']);
349                     
350                 }
351                 
352                 
353                 
354                 
355                 die(date('Y-m-d h:i:s') . " - SENT\n");
356             }
357             // what type of error..
358             $code = empty($res->userinfo['smtpcode']) ? -1 : $res->userinfo['smtpcode'];
359             if (!empty($res->code) && $res->code == 10001) {
360                 // fake greylist if timed out.
361                 $code = 421;
362             }
363             
364             if ($code < 0) {
365                 $this->debug($res->message);
366                 continue; // try next mx... ??? should we wait??? - nope we did not even connect..
367             }
368             // give up after 2 days..
369             if (in_array($code, array( 421, 450, 451, 452))   && $next_try_min < (2*24*60)) {
370                 // try again later..
371                 // check last event for this item..
372                 
373                 //print_r($res);
374                 $this->addEvent('NOTIFY', $w, 'GREYLISTED ' . $p->email . ' ' . $res->toString());
375                 $w->act_when = date('Y-m-d H:i:s', strtotime('NOW + ' . $retry . ' MINUTES'));
376                 $w->update($ww);
377                 die(date('Y-m-d h:i:s') . " - GREYLISTED\n");
378             }
379             $fail = true;
380             break;
381         }
382         if ($fail || $next_try_min > (2*24*60)) {
383         // fail.. = log and give up..
384             $ev = $this->addEvent('NOTIFY', $w, ($fail ? "FAILED - " : "RETRY TIME EXCEEDED - ") .
385                         $p->email . ' ' .
386                         ($fail ? ($res->userinfo['smtpcode'] . ' : ' .$res->toString()) :  " - UNKNOWN ERROR"));
387             $w->sent = date('Y-m-d H:i:s');
388             $w->msgid = '';
389             $w->event_id = $ev->id;
390             $w->update($ww);
391             die(date('Y-m-d h:i:s') . ' - FAILED - '. ($fail ? $res->toString() : "RETRY TIME EXCEEDED\n"));
392         }
393         
394         // handle no host availalbe forever...
395         if (strtotime($w->act_start) < strtotime('NOW - 3 DAYS')) {
396             $ev = $this->addEvent('NOTIFY', $w, "RETRY TIME EXCEEDED - ". $p->email);
397             $w->sent = date('Y-m-d H:i:s');
398             $w->msgid = '';
399             $w->event_id = $ev->id;
400             $w->update($ww);
401             die(date('Y-m-d h:i:s') . " - FAILED - RETRY TIME EXCEEDED\n");
402             
403             
404         }
405         
406         
407         $this->addEvent('NOTIFY', $w, 'NO HOST CAN BE CONTACTED:' . $p->email);
408         $w->act_when = date('Y-m-d H:i:s', strtotime('NOW + 5 MINUTES'));
409         $w->update($ww);
410         die(date('Y-m-d h:i:s') ." - NO HOST AVAILABLE\n");
411
412         
413     }
414     function mxs($fqdn)
415     {
416         $mx_records = array();
417         $mx_weight = array();
418         $mxs = array();
419         if (!getmxrr($fqdn, $mx_records, $mx_weight)) {
420             if (!checkdnsrr($fqdn)) {
421                 return false;
422             }
423             return array($fqdn);
424         }
425         
426         asort($mx_weight,SORT_NUMERIC);
427         
428         foreach($mx_weight as $k => $weight) {
429             $mxs[] = $mx_records[$k];
430         }
431         return $mxs;
432     }
433     
434     /**
435      * wrapper to call object->toEmail()
436      *
437      * return
438      *   {
439         headers : {AssocArray},
440         body: {String}
441         
442         // optional..
443         error :  {String} // error message in log.
444         send-to: {String} // use to override rcpt
445          
446      }
447      **/
448     function makeEmail($object, $rcpt, $last_sent_date, $notify, $force =false)
449     {
450         $m = 'notify'. $notify->evtype;
451         //var_dump($m);
452         
453         if (!empty($notify->evtype) && method_exists($object,$m)) {
454             return $object->$m($rcpt, $last_sent_date, $notify, $force);
455         }
456                 
457         if (!method_exists($object, 'toEmail')) {
458             //var_Dump($object);
459             //exit;
460         }
461         return $object->toEmail($rcpt, $last_sent_date, $notify, $force);
462     }
463     
464     function debug($str)
465     {
466         if (empty($this->cli_args['debug'])) {
467             return;
468             
469         }
470         echo $str . "\n";
471     }
472     function output()
473     {
474         die("done\n");
475     }
476 }