2010-11-22 23:53:25 +01:00
|
|
|
<?php
|
2017-01-18 22:45:32 +01:00
|
|
|
|
2017-04-30 06:29:14 +02:00
|
|
|
use Friendica\Core\Config;
|
2017-01-18 22:45:32 +01:00
|
|
|
|
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');
|
2017-03-12 22:57:09 +01:00
|
|
|
require_once('include/cache.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
|
|
|
|
2017-03-12 22:57:09 +01:00
|
|
|
if ($argc > 1) {
|
2011-08-26 10:32:22 +02:00
|
|
|
$queue_id = intval($argv[1]);
|
2017-03-12 22:57:09 +01:00
|
|
|
} else {
|
2011-08-26 10:32:22 +02:00
|
|
|
$queue_id = 0;
|
2017-03-12 22:57:09 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$cachekey_deadguy = 'queue_run:deadguy:';
|
|
|
|
$cachekey_server = 'queue_run:server:';
|
2011-08-26 10:32:22 +02: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
|
2017-06-06 13:59:38 +02:00
|
|
|
proc_run(array('priority' => PRIORITY_HIGH, 'dont_fork' => true), 'include/pubsubpublish.php');
|
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");
|
2017-05-16 20:13:08 +02:00
|
|
|
|
2017-04-04 19:48:13 +02:00
|
|
|
if (dbm::is_result($r)) {
|
2016-12-20 21:13:50 +01:00
|
|
|
foreach ($r as $rr) {
|
2016-08-14 21:02:29 +02:00
|
|
|
logger('Removing expired queue item for ' . $rr['name'] . ', uid=' . $rr['uid']);
|
2017-03-12 22:57:09 +01:00
|
|
|
logger('Expired queue data: ' . $rr['content'], LOGGER_DATA);
|
2016-08-14 21:02:29 +02:00
|
|
|
}
|
|
|
|
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
|
|
|
|
2017-02-27 22:07:32 +01:00
|
|
|
call_hooks('queue_predeliver', $a, $r);
|
2016-08-14 21:02:29 +02:00
|
|
|
|
2017-03-12 22:57:09 +01:00
|
|
|
if (dbm::is_result($r)) {
|
2017-02-27 22:07:32 +01:00
|
|
|
foreach ($r as $q_item) {
|
|
|
|
logger('Call queue for id '.$q_item['id']);
|
2017-06-06 13:59:38 +02:00
|
|
|
proc_run(array('priority' => PRIORITY_LOW, 'dont_fork' => true), "include/queue.php", $q_item['id']);
|
2017-02-27 22:07:32 +01:00
|
|
|
}
|
|
|
|
}
|
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
|
|
|
|
|
|
|
|
2017-02-27 22:07:32 +01:00
|
|
|
// delivering
|
2010-11-22 23:53:25 +01:00
|
|
|
|
|
|
|
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
|
|
|
|
2017-02-27 22:07:32 +01:00
|
|
|
$r = q("SELECT * FROM `queue` WHERE `id` = %d LIMIT 1",
|
|
|
|
intval($queue_id));
|
2011-06-05 11:18:18 +02:00
|
|
|
|
2017-02-27 22:07:32 +01:00
|
|
|
if (!dbm::is_result($r)) {
|
|
|
|
return;
|
|
|
|
}
|
2010-11-22 23:53:25 +01:00
|
|
|
|
2017-02-27 22:07:32 +01:00
|
|
|
$q_item = $r[0];
|
2011-06-03 10:16:17 +02:00
|
|
|
|
2017-02-27 22:07:32 +01:00
|
|
|
$c = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
|
|
|
|
intval($q_item['cid'])
|
|
|
|
);
|
2015-09-11 21:35:58 +02:00
|
|
|
|
2017-02-27 22:07:32 +01:00
|
|
|
if (!dbm::is_result($c)) {
|
|
|
|
remove_queue_item($q_item['id']);
|
|
|
|
return;
|
|
|
|
}
|
2016-01-21 03:21:33 +01:00
|
|
|
|
2017-03-12 22:57:09 +01:00
|
|
|
$dead = Cache::get($cachekey_deadguy.$c[0]['notify']);
|
|
|
|
|
|
|
|
if (!is_null($dead) AND $dead) {
|
|
|
|
logger('queue: skipping known dead url: '.$c[0]['notify']);
|
|
|
|
update_queue_time($q_item['id']);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-02-27 22:07:32 +01:00
|
|
|
$server = poco_detect_server($c[0]['url']);
|
2016-01-21 03:21:33 +01:00
|
|
|
|
2017-02-27 22:07:32 +01:00
|
|
|
if ($server != "") {
|
2017-03-12 22:57:09 +01:00
|
|
|
$vital = Cache::get($cachekey_server.$server);
|
2016-01-21 03:21:33 +01:00
|
|
|
|
2017-03-12 22:57:09 +01:00
|
|
|
if (is_null($vital)) {
|
|
|
|
logger("Check server ".$server." (".$c[0]["network"].")");
|
|
|
|
|
|
|
|
$vital = poco_check_server($server, $c[0]["network"], true);
|
|
|
|
Cache::set($cachekey_server.$server, $vital, CACHE_QUARTER_HOUR);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!is_null($vital) AND !$vital) {
|
2017-02-27 22:07:32 +01:00
|
|
|
logger('queue: skipping dead server: '.$server);
|
2015-09-11 21:35:58 +02:00
|
|
|
update_queue_time($q_item['id']);
|
2017-02-27 22:07:32 +01:00
|
|
|
return;
|
2010-11-26 08:42:03 +01:00
|
|
|
}
|
2017-02-27 22:07:32 +01:00
|
|
|
}
|
2010-11-26 08:42:03 +01:00
|
|
|
|
2017-02-27 22:07:32 +01:00
|
|
|
$u = q("SELECT `user`.*, `user`.`pubkey` AS `upubkey`, `user`.`prvkey` AS `uprvkey`
|
|
|
|
FROM `user` WHERE `uid` = %d LIMIT 1",
|
|
|
|
intval($c[0]['uid'])
|
|
|
|
);
|
|
|
|
if (!dbm::is_result($u)) {
|
|
|
|
remove_queue_item($q_item['id']);
|
|
|
|
return;
|
|
|
|
}
|
2010-11-22 23:53:25 +01:00
|
|
|
|
2017-02-27 22:07:32 +01:00
|
|
|
$data = $q_item['content'];
|
|
|
|
$public = $q_item['batch'];
|
|
|
|
$contact = $c[0];
|
|
|
|
$owner = $u[0];
|
2010-11-22 23:53:25 +01:00
|
|
|
|
2017-02-27 22:07:32 +01:00
|
|
|
$deliver_status = 0;
|
2010-11-22 23:53:25 +01:00
|
|
|
|
2017-02-27 22:07:32 +01:00
|
|
|
switch ($contact['network']) {
|
|
|
|
case NETWORK_DFRN:
|
|
|
|
logger('queue: dfrndelivery: item '.$q_item['id'].' for '.$contact['name'].' <'.$contact['url'].'>');
|
|
|
|
$deliver_status = dfrn::deliver($owner, $contact, $data);
|
|
|
|
|
|
|
|
if ($deliver_status == (-1)) {
|
|
|
|
update_queue_time($q_item['id']);
|
2017-03-12 22:57:09 +01:00
|
|
|
Cache::set($cachekey_deadguy.$contact['notify'], true, CACHE_QUARTER_HOUR);
|
2017-02-27 22:07:32 +01:00
|
|
|
} else {
|
|
|
|
remove_queue_item($q_item['id']);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NETWORK_OSTATUS:
|
|
|
|
if ($contact['notify']) {
|
|
|
|
logger('queue: slapdelivery: item '.$q_item['id'].' for '.$contact['name'].' <'.$contact['url'].'>');
|
|
|
|
$deliver_status = slapper($owner, $contact['notify'], $data);
|
2010-11-22 23:53:25 +01:00
|
|
|
|
2017-02-27 22:07:32 +01:00
|
|
|
if ($deliver_status == (-1)) {
|
2010-11-22 23:53:25 +01:00
|
|
|
update_queue_time($q_item['id']);
|
2017-03-12 22:57:09 +01:00
|
|
|
Cache::set($cachekey_deadguy.$contact['notify'], true, CACHE_QUARTER_HOUR);
|
2017-02-27 22:07:32 +01:00
|
|
|
} else {
|
2010-11-22 23:53:25 +01:00
|
|
|
remove_queue_item($q_item['id']);
|
|
|
|
}
|
2017-02-27 22:07:32 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case NETWORK_DIASPORA:
|
|
|
|
if ($contact['notify']) {
|
|
|
|
logger('queue: diaspora_delivery: item '.$q_item['id'].' for '.$contact['name'].' <'.$contact['url'].'>');
|
|
|
|
$deliver_status = Diaspora::transmit($owner, $contact, $data, $public, true);
|
2016-01-21 03:21:33 +01:00
|
|
|
|
2017-02-27 22:07:32 +01:00
|
|
|
if ($deliver_status == (-1)) {
|
|
|
|
update_queue_time($q_item['id']);
|
2017-03-12 22:57:09 +01:00
|
|
|
Cache::set($cachekey_deadguy.$contact['notify'], true, CACHE_QUARTER_HOUR);
|
2017-02-27 22:07:32 +01:00
|
|
|
} else {
|
|
|
|
remove_queue_item($q_item['id']);
|
2011-08-24 10:21:24 +02:00
|
|
|
}
|
2017-02-27 22:07:32 +01:00
|
|
|
}
|
|
|
|
break;
|
2011-08-24 10:21:24 +02:00
|
|
|
|
2017-02-27 22:07:32 +01: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
|
|
|
|
2017-03-12 22:57:09 +01:00
|
|
|
if ($params['result']) {
|
2017-02-27 22:07:32 +01:00
|
|
|
remove_queue_item($q_item['id']);
|
2017-03-12 22:57:09 +01:00
|
|
|
} else {
|
2017-02-27 22:07:32 +01:00
|
|
|
update_queue_time($q_item['id']);
|
2017-03-12 22:57:09 +01:00
|
|
|
}
|
2017-02-27 22:07:32 +01:00
|
|
|
break;
|
2011-06-03 03:26:06 +02:00
|
|
|
|
2010-11-22 23:53:25 +01:00
|
|
|
}
|
2017-03-12 22:57:09 +01:00
|
|
|
logger('Deliver status '.(int)$deliver_status.' for item '.$q_item['id'].' to '.$contact['name'].' <'.$contact['url'].'>');
|
2014-03-16 17:37:20 +01:00
|
|
|
|
2011-01-28 14:04:18 +01:00
|
|
|
return;
|
|
|
|
}
|