aa625c1b7c2a1edd154c5984e7e19b43913ee18d
[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         
170         
171         $p = DB_DataObject::factory($notify->table);
172         $p->whereAdd("
173                 sent < '2000-01-01'
174                 and
175                 event_id = 0
176                 and
177                 act_start < NOW() +  INTERVAL 3 HOUR 
178                 and
179                 server_id NOT IN (" . implode(",", $ids) . ")
180         ");
181         $p->orderBy('act_when asc'); //?
182         $total_add = $p->count();
183         if ($total_add < 1) {
184             return;
185         }
186         
187         $to_add = $p->fetchAll('id');
188         
189         $p = DB_DataObject::factory($notify->table);
190         $p->whereAdd("
191                 sent < '2000-01-01'
192                 and
193                 event_id = 0
194                 and
195                 act_start < NOW() +  INTERVAL 3 HOUR 
196                 and
197                 server_id IN (" . implode(",", $ids) . ")
198         ");
199         $p->selectAdd();
200         $p->selectAdd('server_id, count(id) as $n');
201         $p->groupBy('server_id');
202         $in_q = $p->fetchAll('server_id', 'n');
203         $totalq = 0;
204         foreach($in_q as $sid => $n) {
205             $totalq += $n;
206         }
207         
208         // new average queue
209         $target_len = floor(  ($totalq + $total_add) / $num_servers );
210         
211         foreach($in_q as $sid => $cq) {
212             
213             $up[ $sid ] = array_slice($to_add, 0, $target_len - $cq);
214         }
215         foreach($to_add as $i) {
216             $up[  $ids[0] ][] = $i;
217         }
218         
219         // distribution needs to go to ones that have the shortest queues. - so to balance out the queues
220         
221          
222         
223         foreach($up as $sid => $nids) {
224             if (empty($nids)) {
225                 continue;
226             }
227             $p = DB_DataObject::factory($notify->table);
228             $p->query("
229                 UPDATE
230                     {$notify->table}
231                 SET
232                     server_id = $sid
233                 WHERE
234                     id IN (". implode(',', $nids). ')'
235             );
236         }
237          
238         DB_DataObject::factory("core_notify_blacklist")->prune();
239         
240     }
241         // called on current server.
242
243     function availableServers()
244     {
245         $ns = DB_DataObject::factory('core_notify_server');
246         $ns->poolname = $this->poolname;
247         $ns->is_active = 1;
248         $ns->orderBy('id ASC');
249         return  $ns->fetchAll();
250         
251     }
252     
253     function updateNotifyToNextServer( $cn , $when = false, $allow_same = false)
254     {
255         // fixme - this should take into account blacklisted - and return false if no more servers are available
256         $email = empty($cn->to_email) ? ($cn->person() ? $cn->person()->email : $cn->to_email) : $cn->to_email;
257
258         $w = DB_DataObject::factory($cn->tableName());
259         $w->get($cn->id);
260         
261         $servers = $this->availableServers();
262         $start = 0;
263         foreach($servers as $i => $s) {
264             if ($s->id == $this->id) {
265                 $start = $i;
266             }
267         }
268         
269         $offset = ($start + 1)  % count($servers);
270         $good = false;
271         while ($offset  != $start) {
272             $s = $servers[$offset];
273             if (!$s->isBlacklisted($email)) {
274                 $good = $s;
275                 break;
276             }
277         }
278         if ($good == false && $allow_same) {
279             $good = $this;
280         }
281         
282         if ($good == false) {
283             return false;
284         }
285         
286         
287         // next server..
288         $pp = clone($w);
289         $w->server_id = $good->id;   
290         $w->act_when = $when === false ? $w->sqlValue('NOW() + INTERVAL 1 MINUTE') : $when;
291         $w->update($pp);
292         return true;
293     }
294     
295     
296     function isBlacklisted($email)
297     {
298         // return current server id..
299         static $cache = array();
300         
301         // get the domain..
302         $ea = explode('@',$email);
303         $dom = strtolower(array_pop($ea));
304         if (isset($cache[$dom])) {
305             return $cache[$dom];
306         }
307         
308         $cd = DB_DataObject::factory('core_domain')->loadOrCreate($dom);
309         
310         $bl = DB_DataObject::factory('core_notify_blacklist');
311         $bl->server_id = $this->id;
312         $bl->domain_id = $cd->id;
313         if ($bl->count()) {
314             $cache[$dom] = true;
315             return true;
316         }
317         
318         return false; 
319     }
320     function initHelo()
321     {
322         $ff = HTML_FlexyFramework::get();
323         $ff->Mail['helo'] = $this->helo;
324         
325     }
326     function checkSmtpResponse($errmsg, $core_domain)
327     {
328         $bl = DB_DataObject::factory('core_notify_blacklist');
329         $bl->server_id = $this->id;
330         $bl->domain_id = $core_domain->id;
331         if ($bl->count()) {
332             return true;
333         }
334         // is it a blacklist message
335         if (!$bl->messageIsBlacklisted($errmsg)) {
336             return false;
337         }
338         $bl->error_str = $errmsg;
339         $bl->added_dt = $bl->sqlValue("NOW()");
340         $bl->insert();
341         return true;
342         
343     }
344     
345 }