]> git.mxchange.org Git - friendica.git/blob - include/queue.php
Merge pull request #927 from annando/master
[friendica.git] / include / queue.php
1 <?php
2 require_once("boot.php");
3 require_once('include/queue_fn.php');
4
5 function handle_pubsubhubbub() {
6         global $a, $db;
7
8         logger('queue [pubsubhubbub]: start');
9
10         // We'll push to each subscriber that has push > 0,
11         // i.e. there has been an update (set in notifier.php).
12
13         $r = q("SELECT * FROM `push_subscriber` WHERE `push` > 0");
14
15         foreach($r as $rr) {
16                 $params = get_feed_for($a, '', $rr['nickname'], $rr['last_update']);
17                 $hmac_sig = hash_hmac("sha1", $params, $rr['secret']);
18
19                 $headers = array("Content-type: application/atom+xml",
20                                                  sprintf("Link: <%s>;rel=hub," .
21                                                                  "<%s>;rel=self",
22                                                                  $a->get_baseurl() . '/pubsubhubbub',
23                                                                  $rr['topic']),
24                                                  "X-Hub-Signature: sha1=" . $hmac_sig);
25
26                 logger('queue [pubsubhubbub]: POST', $headers);
27
28                 post_url($rr['callback_url'], $params, $headers);
29                 $ret = $a->get_curl_code();
30
31                 if ($ret >= 200 && $ret <= 299) {
32                         logger('queue [pubsubhubbub]: successfully pushed to ' .
33                                    $rr['callback_url']);
34
35                         // set last_update to "now", and reset push=0
36                         $date_now = datetime_convert('UTC','UTC','now','Y-m-d H:i:s');
37                         q("UPDATE `push_subscriber` SET `push` = 0, last_update = '%s' " .
38                           "WHERE id = %d",
39                           dbesc($date_now),
40                           intval($rr['id']));
41
42                 } else {
43                         logger('queue [pubsubhubbub]: error when pushing to ' .
44                                    $rr['callback_url'] . 'HTTP: ', $ret);
45
46                         // we use the push variable also as a counter, if we failed we
47                         // increment this until some upper limit where we give up
48                         $new_push = intval($rr['push']) + 1;
49
50                         if ($new_push > 30) // OK, let's give up
51                                 $new_push = 0;
52
53                         q("UPDATE `push_subscriber` SET `push` = %d, last_update = '%s' " .
54                           "WHERE id = %d",
55                           $new_push,
56                           dbesc($date_now),
57                           intval($rr['id']));
58                 }
59         }
60 }
61
62
63 function queue_run(&$argv, &$argc){
64         global $a, $db;
65
66         if(is_null($a)){
67                 $a = new App;
68         }
69
70         if(is_null($db)){
71                 @include(".htconfig.php");
72                 require_once("include/dba.php");
73                 $db = new dba($db_host, $db_user, $db_pass, $db_data);
74                 unset($db_host, $db_user, $db_pass, $db_data);
75         };
76
77
78         require_once("include/session.php");
79         require_once("include/datetime.php");
80         require_once('include/items.php');
81         require_once('include/bbcode.php');
82         require_once('include/pidfile.php');
83
84         load_config('config');
85         load_config('system');
86
87         $lockpath = get_config('system','lockpath');
88         if ($lockpath != '') {
89                 $pidfile = new pidfile($lockpath, 'queue.lck');
90                 if($pidfile->is_already_running()) {
91                         logger("queue: Already running");
92                         return;
93                 }
94         }
95
96         $a->set_baseurl(get_config('system','url'));
97
98         load_hooks();
99
100         if($argc > 1)
101                 $queue_id = intval($argv[1]);
102         else
103                 $queue_id = 0;
104
105         $deadguys = array();
106
107         logger('queue: start');
108
109         handle_pubsubhubbub();
110
111         $interval = ((get_config('system','delivery_interval') === false) ? 2 : intval(get_config('system','delivery_interval')));
112
113         $r = q("select * from deliverq where 1");
114         if($r) {
115                 foreach($r as $rr) {
116                         logger('queue: deliverq');
117                         proc_run('php','include/delivery.php',$rr['cmd'],$rr['item'],$rr['contact']);
118                         if($interval)
119                                 @time_sleep_until(microtime(true) + (float) $interval);
120                 }
121         }
122
123         $r = q("SELECT `queue`.*, `contact`.`name`, `contact`.`uid` FROM `queue` 
124                 INNER JOIN `contact` ON `queue`.`cid` = `contact`.`id` 
125                 WHERE `queue`.`created` < UTC_TIMESTAMP() - INTERVAL 3 DAY");
126         if($r) {
127                 foreach($r as $rr) {
128                         logger('Removing expired queue item for ' . $rr['name'] . ', uid=' . $rr['uid']);
129                         logger('Expired queue data :' . $rr['content'], LOGGER_DATA);
130                 }
131                 q("DELETE FROM `queue` WHERE `created` < UTC_TIMESTAMP() - INTERVAL 3 DAY");
132         }
133
134         if($queue_id) {
135                 $r = q("SELECT `id` FROM `queue` WHERE `id` = %d LIMIT 1",
136                         intval($queue_id)
137                 );
138         }
139         else {
140
141                 // For the first 12 hours we'll try to deliver every 15 minutes
142                 // After that, we'll only attempt delivery once per hour. 
143
144                 $r = q("SELECT `id` FROM `queue` WHERE (( `created` > UTC_TIMESTAMP() - INTERVAL 12 HOUR && `last` < UTC_TIMESTAMP() - INTERVAL 15 MINUTE ) OR ( `last` < UTC_TIMESTAMP() - INTERVAL 1 HOUR ))");
145         }
146         if(! $r){
147                 return;
148         }
149
150         if(! $queue_id)
151                 call_hooks('queue_predeliver', $a, $r);
152
153
154         // delivery loop
155
156         require_once('include/salmon.php');
157         require_once('include/diaspora.php');
158
159         foreach($r as $q_item) {
160
161                 // queue_predeliver hooks may have changed the queue db details, 
162                 // so check again if this entry still needs processing
163
164                 if($queue_id) {
165                         $qi = q("select * from queue where `id` = %d limit 1",
166                                 intval($queue_id)
167                         );
168                 }
169                 else {
170                         $qi = q("SELECT * FROM `queue` WHERE `id` = %d AND `last` < UTC_TIMESTAMP() - INTERVAL 15 MINUTE ",
171                                 intval($q_item['id'])
172                         );
173                 }
174                 if(! count($qi))
175                         continue;
176
177
178                 $c = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
179                         intval($qi[0]['cid'])
180                 );
181                 if(! count($c)) {
182                         remove_queue_item($q_item['id']);
183                         continue;
184                 }
185                 if(in_array($c[0]['notify'],$deadguys)) {
186                                 logger('queue: skipping known dead url: ' . $c[0]['notify']);
187                                 update_queue_time($q_item['id']);
188                                 continue;
189                 }
190
191                 $u = q("SELECT `user`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey` 
192                         FROM `user` WHERE `uid` = %d LIMIT 1",
193                         intval($c[0]['uid'])
194                 );
195                 if(! count($u)) {
196                         remove_queue_item($q_item['id']);
197                         continue;
198                 }
199
200                 $data      = $qi[0]['content'];
201                 $public    = $qi[0]['batch'];
202                 $contact   = $c[0];
203                 $owner     = $u[0];
204
205                 $deliver_status = 0;
206
207                 switch($contact['network']) {
208                         case NETWORK_DFRN:
209                                 logger('queue: dfrndelivery: item ' . $q_item['id'] . ' for ' . $contact['name']);
210                                 $deliver_status = dfrn_deliver($owner,$contact,$data);
211
212                                 if($deliver_status == (-1)) {
213                                         update_queue_time($q_item['id']);
214                                         $deadguys[] = $contact['notify'];
215                                 }
216                                 else {
217                                         remove_queue_item($q_item['id']);
218                                 }
219                                 break;
220                         case NETWORK_OSTATUS:
221                                 if($contact['notify']) {
222                                         logger('queue: slapdelivery: item ' . $q_item['id'] . ' for ' . $contact['name']);
223                                         $deliver_status = slapper($owner,$contact['notify'],$data);
224
225                                         if($deliver_status == (-1))
226                                                 update_queue_time($q_item['id']);
227                                         else
228                                                 remove_queue_item($q_item['id']);
229                                 }
230                                 break;
231                         case NETWORK_DIASPORA:
232                                 if($contact['notify']) {
233                                         logger('queue: diaspora_delivery: item ' . $q_item['id'] . ' for ' . $contact['name']);
234                                         $deliver_status = diaspora_transmit($owner,$contact,$data,$public,true);
235
236                                         if($deliver_status == (-1))
237                                                 update_queue_time($q_item['id']);
238                                         else
239                                                 remove_queue_item($q_item['id']);
240                                 }
241                                 break;
242
243                         default:
244                                 $params = array('owner' => $owner, 'contact' => $contact, 'queue' => $q_item, 'result' => false);
245                                 call_hooks('queue_deliver', $a, $params);
246
247                                 if($params['result'])
248                                                 remove_queue_item($q_item['id']);
249                                 else
250                                                 update_queue_time($q_item['id']);
251
252                                 break;
253
254                 }
255         }
256
257         return;
258
259 }
260
261 if (array_search(__file__,get_included_files())===0){
262   queue_run($argv,$argc);
263   killme();
264 }