add force to getCurrent server
[Pman.Core] / DataObjects / Core_notify_server.php
1 <?php
2 /**
3  * Table Definition for core_notify_server
4  */
5 class_exists('DB_DataObject') ? '' : require_once 'DB/DataObject.php';
6
7 class Pman_Core_DataObjects_Core_notify_server extends DB_DataObject 
8 {
9     ###START_AUTOCODE
10     /* the code below is auto generated do not remove the above tag */
11
12     public $__table = 'core_notify_server';    // table name
13     public $id;                              // int(11)  not_null primary_key auto_increment
14     public $hostname;
15     public $helo;
16     public $poolname;
17     public $is_active;
18     public $last_send;
19     
20     
21     
22     function  applyFilters($q, $au, $roo)
23     {
24         if (isset($q['_with_queue_size'])) {
25             $this->addQueueSize();
26         }
27     }
28     
29     
30     function addQueueSize()
31     {
32         // look for database links for server_id (which should find core_notify + others..)
33         $cn = get_class(DB_DataObject::factory('core_notify'));
34         $tables = array();
35         foreach($this->databaseLinks() as $tbl => $kv) {
36             foreach($kv as $k=>$v) {
37                 if ($v != 'core_notify_server:id') {
38                     continue;
39                 }
40                 
41                 $test = DB_DAtaObject::factory($tbl);
42                 if (!is_a($test, $cn)) {
43                     break;
44                 }
45                 $tables[] = $tbl;
46             }
47         }
48         if (empty($tables)) {
49             die("OOPS - no tables for notify_server references");
50         }
51         $totals = array();
52         foreach($tables as $t) {
53             $totals[] = "
54                 COALESCE((SELECT
55                     count(id)
56                 FROM
57                     $t
58                 WHERE
59                     server_id = core_notify_server.id
60                 AND
61                     sent < '1970-01-01' OR sent IS NULL
62                  and
63                         event_id = 0
64                 ),0)
65             ";
66         }
67         $this->selectAdd("(" . implode(" + ", $totals) . ") as in_queue ");
68         
69         
70         
71         
72         
73     }
74     
75     
76     // most services should call this first..
77     
78     function getCurrent($notify, $force = false)
79     {
80         static $current = false;;
81         
82         if ($current !== false) {
83             return $current;
84         }
85         
86         $ns = DB_DataObject::factory('core_notify_server');
87         
88         $ns->poolname = $notify->poolname;
89         $ns->is_active = 1;
90         $ns->hostname = gethostname();
91         $ns->limit(1);
92         if ($ns->find(true)) {
93             $current = $ns;
94             return $ns;
95         }
96         if (!$force) {
97             $notify->jerr("Server not found for this server " .  gethostname() . " in core_notify_server" );
98         }
99         // fallback to any server - if we are using force. (this is so helo will work...)
100         
101         $ns = DB_DataObject::factory('core_notify_server');
102         $ns->is_active = 1;
103         $ns->hostname = gethostname();
104         if (!$ns->find(true)) {
105             $notify->jerr("Server not found for this server " .  gethostname() . " in core_notify_server" );
106         }
107         $current = $ns;
108         return $ns;
109     }
110     
111     
112     function isFirstServer()
113     {
114         $servers = $this->availableServers();
115         if (empty($servers)) {
116             return false;
117         }
118         // only run this on the first server...
119         return $this->id == $servers[0]->id;
120     }
121     
122     
123     // called on current server.
124     function assignQueues($notify)
125     {
126          
127         
128         $servers = $this->availableServers();
129         $ids = array();
130         foreach($servers as $s) {
131             $ids[] = $s->id;
132         }
133         
134         
135         if (empty($ids)) {
136             $notify->jerr("no configured servers in core_notify_server for poolname = {$notify->poolname}");
137             
138         }
139          
140         // only run this on the first server...
141         if ($this->id != $ids[0]) {
142             return; 
143         }
144         foreach($ids as $rn) {
145             $up[$rn]  = array();
146         }
147         
148         $num_servers = count($ids);
149         
150         if ($num_servers == 1) {
151             $p = DB_DataObject::factory($notify->table);
152             $p->query("
153                 UPDATE
154                     {$notify->table}
155                 SET
156                     server_id = {$ids[0]}
157                 WHERE
158                     sent < '2000-01-01'
159                     and
160                     event_id = 0
161                     and
162                     act_start < NOW() +  INTERVAL 3 HOUR 
163                     and
164                     server_id != {$ids[0]}
165             ");
166             return;
167         }
168         
169         // ((@row_number := CASE WHEN @row_number IS NULL THEN 0 ELSE @row_number END  +1) % {$num_servers})
170         
171         
172         
173         $p = DB_DataObject::factory($notify->table);
174         $p->whereAdd("
175                 sent < '2000-01-01'
176                 and
177                 event_id = 0
178                 and
179                 act_start < NOW() +  INTERVAL 3 HOUR 
180                 and
181                 server_id NOT IN (" . implode(",", $ids) . ")
182         ");
183         if ($p->count() < 1) {
184             return;
185         }
186         
187         $p->selectAdd();
188         $p->selectAdd("id, ((@row_number := CASE WHEN @row_number IS NULL THEN 0 ELSE @row_number END  +1) % {$num_servers})  as rn");
189         $kv = $p->fetchAll('id','rn');
190         foreach($kv as $id => $r) {
191             $up[ $ids[$r] ][] = $id;
192         }
193         foreach($up as $sid => $nids) {
194             if (empty($nids)) {
195                 continue;
196             }
197             $p = DB_DataObject::factory($notify->table);
198             $p->query("
199                 UPDATE
200                     {$notify->table}
201                 SET
202                     server_id = $sid
203                 WHERE
204                     id IN (". implode(',', $nids). ')'
205             );
206         }
207          
208         DB_DataObject::factory("core_notify_blacklist")->prune();
209         
210     }
211         // called on current server.
212
213     function availableServers()
214     {
215         $ns = DB_DataObject::factory('core_notify_server');
216         $ns->poolname = $this->poolname;
217         $ns->is_active = 1;
218         $ns->orderBy('id ASC');
219         return  $ns->fetchAll();
220         
221     }
222     
223     function updateNotifyToNextServer( $cn , $when = false, $allow_same = false)
224     {
225         // fixme - this should take into account blacklisted - and return false if no more servers are available
226         $email = empty($cn->to_email) ? ($cn->person() ? $cn->person()->email : $cn->to_email) : $cn->to_email;
227
228         $w = DB_DataObject::factory($cn->tableName());
229         $w->get($cn->id);
230         
231         $servers = $this->availableServers();
232         $start = 0;
233         foreach($servers as $i => $s) {
234             if ($s->id == $this->id) {
235                 $start = $i;
236             }
237         }
238         
239         $offset = ($start + 1)  % count($servers);
240         $good = false;
241         while ($offset  != $start) {
242             $s = $servers[$offset];
243             if (!$s->isBlacklisted($email)) {
244                 $good = $s;
245                 break;
246             }
247         }
248         if ($good == false && $allow_same) {
249             $good = $this;
250         }
251         
252         if ($good == false) {
253             return false;
254         }
255         
256         
257         // next server..
258         $pp = clone($w);
259         $w->server_id = $good->id;   
260         $w->act_when = $when === false ? $w->sqlValue('NOW() + INTERVAL 1 MINUTE') : $when;
261         $w->update($pp);
262         return true;
263     }
264     
265     
266     function isBlacklisted($email)
267     {
268         // return current server id..
269         static $cache = array();
270         
271         // get the domain..
272         $ea = explode('@',$email);
273         $dom = strtolower(array_pop($ea));
274         if (isset($cache[$dom])) {
275             return $cache[$dom];
276         }
277         
278         $cd = DB_DataObject::factory('core_domain')->loadOrCreate($dom);
279         
280         $bl = DB_DataObject::factory('core_notify_blacklist');
281         $bl->server_id = $this->id;
282         $bl->domain_id = $cd->id;
283         if ($bl->count()) {
284             $cache[$dom] = true;
285             return true;
286         }
287         
288         return false; 
289     }
290     function initHelo()
291     {
292         $ff = HTML_FlexyFramework::get();
293         $ff->Mail['helo'] = $this->helo;
294         
295     }
296     function checkSmtpResponse($errmsg, $core_domain)
297     {
298         $bl = DB_DataObject::factory('core_notify_blacklist');
299         $bl->server_id = $this->id;
300         $bl->domain_id = $core_domain->id;
301         if ($bl->count()) {
302             return true;
303         }
304         // is it a blacklist message
305         if (!$bl->messageIsBlacklisted($errmsg)) {
306             return false;
307         }
308         $bl->error_str = $errmsg;
309         $bl->added_dt = $bl->sqlValue("NOW()");
310         $bl->insert();
311         return true;
312         
313     }
314     
315 }