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