NotifySend.php
[Pman.Core] / NotifySend.php
1 <?php
2 require_once 'Pman.php';
3
4 /**
5  * notification script runner
6  *
7  * This does not actualy send stuf out, it only starts the NotifySend/{id}
8  * which does the actuall notifcations.
9  *
10  * It manages a pool of notifiers.
11  * 
12  * 
13  */
14
15
16 class Pman_Core_NotifySend extends Pman
17 {
18     
19     var $table = 'core_notify';
20     function getAuth()
21     {
22         $ff = HTML_FlexyFramework::get();
23         if (!$ff->cli) {
24             die("access denied");
25         }
26         //HTML_FlexyFramework::ensureSingle(__FILE__, $this);
27         return true;
28         
29     }
30     
31     var $pool = array();
32     
33     function get($id)    
34     {
35         DB_DataObject::debugLevel(1);
36         //date_default_timezone_set('UTC');
37         // phpinfo();exit;
38         
39         $w = DB_DataObject::factory($this->table);
40         
41         if (!$w->get($id) || strtotime($w->act_when) < strtotime($w->sent)) {
42             die("invalid id or time");
43         }
44          
45         $o = $w->object();
46         $p = $w->person();
47         
48         // let's work out the last notification sent to this user..
49         $l = DB_DataObject::factory($this->table);
50         $l->setFrom( array(
51                 'ontable' => $w->ontable,
52                 'onid' => $w->onid,
53                 'person_id' => $w->person_id,
54         ));        
55         $l->whereAdd('id != '. $w->id);
56         $l->orderBy('sent DESC');
57         $l->limit(1);
58         $ar = $l->fetchAll('sent');
59         $last = empty($ar) ? date('Y-m-d H:i:s', 0) : $ar[0];
60         
61         
62         $email = $o->toEmail($p,$last);
63         // should we fetch the watch that caused it.. - which should contain the method to call..
64         $dom = array_pop(explode('@', $p->email));
65         
66         bool getmxrr ( $dom , array &$mxhosts [, array &$weight ] )
67
68         
69         Mail::factory('smtp', array( 
70             'host'         => 'smtp.gmail.com', 
71             'persist'      =>  FALSE
72         )); 
73         
74         
75         
76          
77         die("DONE\n");
78     }
79     function mx($fqdn)
80     {
81         $mx_records = array();
82         $mx_weight = array();
83         
84         if (getmxrr($fqdn, $mx_records, $mx_weight)) {
85             // copy mx records and weight into array $mxs
86             // ignore multiple mx's at the same weight
87             for ($i = 0; $i < count($mx_records); $i++) {
88                 $mxs[$mx_weight[$i]] = $mx_records[$i];
89             }
90             // sort array mxs to get servers with highest priority
91             ksort ($mxs, SORT_NUMERIC);
92             reset ($mxs);
93         } else {
94             // No MX so use A
95             $mxs[0]= $fqdn;
96         }
97     
98 }