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