2010-11-22 17:53:25 -05:00
|
|
|
<?php
|
2017-01-18 16:45:32 -05:00
|
|
|
|
2017-02-26 18:16:49 -05:00
|
|
|
/// @todo Rework the whole file to a single item processing
|
|
|
|
|
2017-01-18 16:45:32 -05:00
|
|
|
use \Friendica\Core\Config;
|
|
|
|
|
2011-06-03 04:16:17 -04:00
|
|
|
require_once('include/queue_fn.php');
|
2016-01-25 09:20:58 -05:00
|
|
|
require_once('include/dfrn.php');
|
2017-02-26 18:16:49 -05:00
|
|
|
require_once("include/datetime.php");
|
|
|
|
require_once('include/items.php');
|
|
|
|
require_once('include/bbcode.php');
|
|
|
|
require_once('include/socgraph.php');
|
2010-11-22 17:53:25 -05:00
|
|
|
|
2012-11-05 03:28:54 -05:00
|
|
|
function queue_run(&$argv, &$argc){
|
2017-02-26 18:16:49 -05:00
|
|
|
global $a;
|
2011-06-05 05:09:31 -04:00
|
|
|
|
2011-08-26 04:32:22 -04:00
|
|
|
if($argc > 1)
|
|
|
|
$queue_id = intval($argv[1]);
|
|
|
|
else
|
|
|
|
$queue_id = 0;
|
|
|
|
|
2010-11-26 02:42:03 -05:00
|
|
|
$deadguys = array();
|
2016-01-20 21:21:33 -05:00
|
|
|
$deadservers = array();
|
|
|
|
$serverlist = array();
|
2010-11-26 02:42:03 -05:00
|
|
|
|
2016-08-14 15:02:29 -04:00
|
|
|
if (!$queue_id) {
|
2010-11-22 17:53:25 -05:00
|
|
|
|
2016-08-14 15:02:29 -04:00
|
|
|
logger('queue: start');
|
2013-11-17 09:16:25 -05:00
|
|
|
|
2016-08-14 15:02:29 -04:00
|
|
|
// Handling the pubsubhubbub requests
|
|
|
|
proc_run(PRIORITY_HIGH,'include/pubsubpublish.php');
|
2011-08-29 00:41:42 -04:00
|
|
|
|
2016-08-14 15:02:29 -04:00
|
|
|
$r = q("select * from deliverq where 1");
|
2016-12-20 15:13:50 -05:00
|
|
|
if ($r) {
|
|
|
|
foreach ($r as $rr) {
|
2016-08-14 15:02:29 -04:00
|
|
|
logger('queue: deliverq');
|
|
|
|
proc_run(PRIORITY_HIGH,'include/delivery.php',$rr['cmd'],$rr['item'],$rr['contact']);
|
|
|
|
}
|
2011-08-29 00:41:42 -04:00
|
|
|
}
|
|
|
|
|
2016-08-14 15:02:29 -04:00
|
|
|
$r = q("SELECT `queue`.*, `contact`.`name`, `contact`.`uid` FROM `queue`
|
|
|
|
INNER JOIN `contact` ON `queue`.`cid` = `contact`.`id`
|
|
|
|
WHERE `queue`.`created` < UTC_TIMESTAMP() - INTERVAL 3 DAY");
|
2016-12-20 15:13:50 -05:00
|
|
|
if ($r) {
|
|
|
|
foreach ($r as $rr) {
|
2016-08-14 15:02:29 -04:00
|
|
|
logger('Removing expired queue item for ' . $rr['name'] . ', uid=' . $rr['uid']);
|
|
|
|
logger('Expired queue data :' . $rr['content'], LOGGER_DATA);
|
|
|
|
}
|
|
|
|
q("DELETE FROM `queue` WHERE `created` < UTC_TIMESTAMP() - INTERVAL 3 DAY");
|
2010-11-22 17:53:25 -05:00
|
|
|
}
|
|
|
|
|
2012-03-17 06:43:02 -04:00
|
|
|
// For the first 12 hours we'll try to deliver every 15 minutes
|
2015-09-11 15:35:58 -04:00
|
|
|
// After that, we'll only attempt delivery once per hour.
|
2012-03-17 06:43:02 -04:00
|
|
|
|
2016-01-20 21:21:33 -05:00
|
|
|
$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)) ORDER BY `cid`, `created`");
|
2016-08-14 15:02:29 -04:00
|
|
|
} else {
|
|
|
|
logger('queue: start for id '.$queue_id);
|
|
|
|
|
|
|
|
$r = q("SELECT `id` FROM `queue` WHERE `id` = %d LIMIT 1",
|
|
|
|
intval($queue_id)
|
|
|
|
);
|
2012-03-17 06:43:02 -04:00
|
|
|
}
|
2016-08-14 15:02:29 -04:00
|
|
|
|
|
|
|
if (!$r){
|
2011-01-28 08:04:18 -05:00
|
|
|
return;
|
2011-01-24 16:01:56 -05:00
|
|
|
}
|
2011-06-03 04:16:17 -04:00
|
|
|
|
2016-08-14 15:02:29 -04:00
|
|
|
if (!$queue_id)
|
2011-08-26 04:32:22 -04:00
|
|
|
call_hooks('queue_predeliver', $a, $r);
|
2011-06-03 04:16:17 -04:00
|
|
|
|
|
|
|
|
2010-11-22 17:53:25 -05:00
|
|
|
// delivery loop
|
|
|
|
|
|
|
|
require_once('include/salmon.php');
|
2011-08-24 04:21:24 -04:00
|
|
|
require_once('include/diaspora.php');
|
2010-11-22 17:53:25 -05:00
|
|
|
|
|
|
|
foreach($r as $q_item) {
|
2011-06-05 05:18:18 -04:00
|
|
|
|
2015-09-11 15:35:58 -04:00
|
|
|
// queue_predeliver hooks may have changed the queue db details,
|
2011-06-05 05:18:18 -04:00
|
|
|
// so check again if this entry still needs processing
|
|
|
|
|
2017-02-26 18:16:49 -05:00
|
|
|
if ($queue_id) {
|
2016-01-20 21:21:33 -05:00
|
|
|
$qi = q("SELECT * FROM `queue` WHERE `id` = %d LIMIT 1",
|
2016-08-14 15:02:29 -04:00
|
|
|
intval($queue_id));
|
2017-02-26 18:16:49 -05:00
|
|
|
} else {
|
2016-08-14 15:02:29 -04:00
|
|
|
logger('Call queue for id '.$q_item['id']);
|
|
|
|
proc_run(PRIORITY_LOW, "include/queue.php", $q_item['id']);
|
|
|
|
continue;
|
2017-02-26 18:16:49 -05:00
|
|
|
}
|
2016-08-14 15:02:29 -04:00
|
|
|
|
2010-11-22 17:53:25 -05:00
|
|
|
if(! count($qi))
|
|
|
|
continue;
|
|
|
|
|
2011-06-03 04:16:17 -04:00
|
|
|
|
2010-11-22 17:53:25 -05:00
|
|
|
$c = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
|
2010-11-23 20:08:35 -05:00
|
|
|
intval($qi[0]['cid'])
|
2010-11-22 17:53:25 -05:00
|
|
|
);
|
2016-12-20 09:37:27 -05:00
|
|
|
if (! dbm::is_result($c)) {
|
2010-11-22 17:53:25 -05:00
|
|
|
remove_queue_item($q_item['id']);
|
|
|
|
continue;
|
|
|
|
}
|
2010-11-26 02:42:03 -05:00
|
|
|
if(in_array($c[0]['notify'],$deadguys)) {
|
2015-09-11 15:35:58 -04:00
|
|
|
logger('queue: skipping known dead url: ' . $c[0]['notify']);
|
|
|
|
update_queue_time($q_item['id']);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-01-20 21:21:33 -05:00
|
|
|
$server = poco_detect_server($c[0]['url']);
|
|
|
|
|
|
|
|
if (($server != "") AND !in_array($server, $serverlist)) {
|
|
|
|
logger("Check server ".$server." (".$c[0]["network"].")");
|
|
|
|
if (!poco_check_server($server, $c[0]["network"], true))
|
|
|
|
$deadservers[] = $server;
|
|
|
|
|
|
|
|
$serverlist[] = $server;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (($server != "") AND in_array($server, $deadservers)) {
|
|
|
|
logger('queue: skipping known dead server: '.$server);
|
2015-09-11 15:35:58 -04:00
|
|
|
update_queue_time($q_item['id']);
|
|
|
|
continue;
|
2010-11-26 02:42:03 -05:00
|
|
|
}
|
|
|
|
|
2015-09-11 15:35:58 -04:00
|
|
|
$u = q("SELECT `user`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey`
|
2011-08-24 23:40:08 -04:00
|
|
|
FROM `user` WHERE `uid` = %d LIMIT 1",
|
2010-11-22 17:53:25 -05:00
|
|
|
intval($c[0]['uid'])
|
|
|
|
);
|
2016-12-20 09:37:27 -05:00
|
|
|
if (! dbm::is_result($u)) {
|
2010-11-22 17:53:25 -05:00
|
|
|
remove_queue_item($q_item['id']);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$data = $qi[0]['content'];
|
2011-09-22 07:11:39 -04:00
|
|
|
$public = $qi[0]['batch'];
|
2010-11-22 17:53:25 -05:00
|
|
|
$contact = $c[0];
|
|
|
|
$owner = $u[0];
|
|
|
|
|
|
|
|
$deliver_status = 0;
|
|
|
|
|
|
|
|
switch($contact['network']) {
|
2011-06-02 21:26:06 -04:00
|
|
|
case NETWORK_DFRN:
|
2016-01-20 21:21:33 -05:00
|
|
|
logger('queue: dfrndelivery: item '.$q_item['id'].' for '.$contact['name'].' <'.$contact['url'].'>');
|
2016-01-25 09:20:58 -05:00
|
|
|
$deliver_status = dfrn::deliver($owner,$contact,$data);
|
2010-11-22 17:53:25 -05:00
|
|
|
|
2010-11-26 02:42:03 -05:00
|
|
|
if($deliver_status == (-1)) {
|
2010-11-22 17:53:25 -05:00
|
|
|
update_queue_time($q_item['id']);
|
2010-11-26 02:42:03 -05:00
|
|
|
$deadguys[] = $contact['notify'];
|
2016-01-20 21:21:33 -05:00
|
|
|
} else
|
2010-11-22 17:53:25 -05:00
|
|
|
remove_queue_item($q_item['id']);
|
2016-01-20 21:21:33 -05:00
|
|
|
|
2010-11-22 17:53:25 -05:00
|
|
|
break;
|
2011-06-02 21:26:06 -04:00
|
|
|
case NETWORK_OSTATUS:
|
2010-11-22 17:53:25 -05:00
|
|
|
if($contact['notify']) {
|
2016-01-20 21:21:33 -05:00
|
|
|
logger('queue: slapdelivery: item '.$q_item['id'].' for '.$contact['name'].' <'.$contact['url'].'>');
|
2010-11-22 17:53:25 -05:00
|
|
|
$deliver_status = slapper($owner,$contact['notify'],$data);
|
|
|
|
|
2016-01-20 21:21:33 -05:00
|
|
|
if($deliver_status == (-1)) {
|
2010-11-22 17:53:25 -05:00
|
|
|
update_queue_time($q_item['id']);
|
2016-01-20 21:21:33 -05:00
|
|
|
$deadguys[] = $contact['notify'];
|
|
|
|
} else
|
2010-11-22 17:53:25 -05:00
|
|
|
remove_queue_item($q_item['id']);
|
|
|
|
}
|
|
|
|
break;
|
2011-08-24 04:21:24 -04:00
|
|
|
case NETWORK_DIASPORA:
|
|
|
|
if($contact['notify']) {
|
2016-01-20 21:21:33 -05:00
|
|
|
logger('queue: diaspora_delivery: item '.$q_item['id'].' for '.$contact['name'].' <'.$contact['url'].'>');
|
2016-12-20 12:44:15 -05:00
|
|
|
$deliver_status = Diaspora::transmit($owner,$contact,$data,$public,true);
|
2011-08-24 04:21:24 -04:00
|
|
|
|
2016-01-20 21:21:33 -05:00
|
|
|
if($deliver_status == (-1)) {
|
2011-08-24 04:21:24 -04:00
|
|
|
update_queue_time($q_item['id']);
|
2016-01-20 21:21:33 -05:00
|
|
|
$deadguys[] = $contact['notify'];
|
|
|
|
} else
|
2011-08-24 04:21:24 -04:00
|
|
|
remove_queue_item($q_item['id']);
|
2016-01-20 21:21:33 -05:00
|
|
|
|
2011-08-24 04:21:24 -04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2011-06-02 21:26:06 -04:00
|
|
|
default:
|
|
|
|
$params = array('owner' => $owner, 'contact' => $contact, 'queue' => $q_item, 'result' => false);
|
|
|
|
call_hooks('queue_deliver', $a, $params);
|
2014-03-16 12:37:20 -04:00
|
|
|
|
2011-06-02 21:26:06 -04:00
|
|
|
if($params['result'])
|
2015-09-11 15:35:58 -04:00
|
|
|
remove_queue_item($q_item['id']);
|
2011-06-02 21:26:06 -04:00
|
|
|
else
|
2015-09-11 15:35:58 -04:00
|
|
|
update_queue_time($q_item['id']);
|
2014-03-16 12:37:20 -04:00
|
|
|
|
2011-06-02 21:26:06 -04:00
|
|
|
break;
|
|
|
|
|
2010-11-22 17:53:25 -05:00
|
|
|
}
|
2016-01-20 21:21:33 -05:00
|
|
|
logger('Deliver status '.$deliver_status.' for item '.$q_item['id'].' to '.$contact['name'].' <'.$contact['url'].'>');
|
2010-11-22 17:53:25 -05:00
|
|
|
}
|
2014-03-16 12:37:20 -04:00
|
|
|
|
2011-01-28 08:04:18 -05:00
|
|
|
return;
|
|
|
|
}
|