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' => 1,
36             'max' => 1,
37             
38         ),
39         'force' => array(
40             'desc' => 'Force redelivery, even if it has been sent before.',
41             'default' => 0,
42             'short' => 'f',
43             'min' => 1,
44             'max' => 1,
45         )
46         
47         
48         
49     );
50     var $table = 'core_notify';
51     function getAuth()
52     {
53         $ff = HTML_FlexyFramework::get();
54         if (!$ff->cli) {
55             die("access denied");
56         }
57         //HTML_FlexyFramework::ensureSingle(__FILE__, $this);
58         return true;
59         
60     }
61    
62     function get($id,$opts)
63     {
64         if ($opts['debug']) {
65             DB_DataObject::debugLevel($opts['debug']);
66         }
67         //DB_DataObject::debugLevel(1);
68         //date_default_timezone_set('UTC');
69         // phpinfo();exit;
70         $force = $opts['force'];
71         
72         $w = DB_DataObject::factory($this->table);
73         
74         if (!$w->get($id)) {
75             die("invalid id or time\n");
76         }
77         if (!$foce && strtotime($w->act_when) < strtotime($w->sent)) {
78             die("send repeat to early\n");
79         }
80          
81         $o = $w->object();
82         $p = $w->person();
83         
84         // let's work out the last notification sent to this user..
85         $l = DB_DataObject::factory($this->table);
86         $l->setFrom( array(
87                 'ontable' => $w->ontable,
88                 'onid' => $w->onid,
89                 'person_id' => $w->person_id,
90         ));        
91         $l->whereAdd('id != '. $w->id);
92         $l->orderBy('sent DESC');
93         $l->limit(1);
94         $ar = $l->fetchAll('sent');
95         $last = empty($ar) ? date('Y-m-d H:i:s', 0) : $ar[0];
96         
97         // find last event..
98         $ev = DB_DataObject::factory('Events');
99         $ev->on_id = $w->id;                           // int(11)
100         $ev->od_table = $this->table;
101         $ev->limit(1);
102         $ev->orderBy('event_when DESC');
103         $ar = $ev->fetchAll('event_when');
104         $last_event = empty($ar) ? 0 : $ar[0];
105         $next_try_min = 5;
106         if ($last_event) {
107             $next_try_min = floor((time() - strtotime($last_event)) / 60) * 2;
108         }
109         $next_try = $next_try_min . ' MINUTES';
110         
111         $email =  $this->makeEmail($o, $p,$last);
112         
113         
114         
115         //$p->email = 'alan@akbkhome.com'; //for testing..
116         //print_r($email);exit;
117         // should we fetch the watch that caused it.. - which should contain the method to call..
118         $dom = array_pop(explode('@', $p->email));
119         
120         $mxs = $this->mxs($dom);
121         $ww = clone($w);
122         
123         $fail = false;
124         require_once 'Mail.php';
125         
126         foreach($mxs as $dom) {
127             
128             $mailer = Mail::factory('smtp', array(
129                     'host'    => $dom ,
130                   //  'debug' => true
131                 ));
132             $res = $mailer->send($p->email, $email['headers'], $email['body']);
133             if ($res === true) {
134                 // success....
135                 
136                 $w->sent = date('Y-m-d H:i:s');
137                 $w->msgid = $email['headers']['Message-Id'];
138                 $w->event_id = -1; // sent ok.. - no need to record it..
139                 $w->update($ww);
140                 die(date('Y-m-d h:i:s') . " - SENT");
141             }
142             // what type of error..
143             list($code, $response) = $mailer->_smtp->getResponse();
144             if ($code < 0) {
145                 continue; // try next mx... ??? should we wait??? - nope we did not even connect..
146             }
147             // give up after 2 days..
148             if ($code == 421 && $next_try_min < (2*24*60)) {
149                 // try again later..
150                 // check last event for this item..
151                 $this->addEvent('NOTIFY', $w, 'GREYLISTED');
152                 $w->act_when = date('Y-m-d H:i:s', strtotime('NOW + 5 MINUTES'));
153                 $w->update($ww);
154                 die(date('Y-m-d h:i:s') . " - GREYLISTED");
155             }
156             $fail = true;
157             break;
158         }
159         if ($fail || $next_try_min > (2*24*60)) {
160         // fail.. = log and give up..
161             $id = $this->addEvent('NOTIFY', $w, 'FAILED - '. ($fail ? $res->toString() : "RETRY TIME EXCEEDED"));
162             $w->sent = date('Y-m-d H:i:s');
163             $w->msgid = '';
164             $w->event_id = $id;
165             $w->update($ww);
166             die(date('Y-m-d h:i:s') . ' - FAILED - '. ($fail ? $res->toString() : "RETRY TIME EXCEEDED"));
167         }
168         
169         $this->addEvent('NOTIFY', $w, 'NO HOST CAN BE CONTACTED');
170         $w->act_when = date('Y-m-d H:i:s', strtotime('NOW + 5 MINUTES'));
171         $w->update($ww);
172         die(date('Y-m-d h:i:s') ." - NO HOST AVAILABLE");
173
174         
175     }
176     function mxs($fqdn)
177     {
178         $mx_records = array();
179         $mx_weight = array();
180         $mxs = array();
181         if (!getmxrr($fqdn, $mx_records, $mx_weight)) {
182             return array($fqdn);
183         }
184         
185         asort($mx_weight,SORT_NUMERIC);
186         
187         foreach($mx_weight as $k => $weight) {
188             $mxs[] = $mx_records[$k];
189         }
190         return $mxs;
191     }
192     
193     /**
194      * wrapper to call object->toEmail()
195      * 
196      **/
197     function makeEmail($o, $p, $last)
198     {
199         return $o->toEmail($p,$last);
200     }
201 }