X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=include%2Fpubsubpublish.php;h=2527963d4c786ec6029d90dbdd7197375ff424b6;hb=217a8ce6ee8fd163d81c71044d9497646296862f;hp=cde256a4034f266dafd4061db8c9de2042a2f308;hpb=0c2c221e50253de2c893be17b30bda3defbbff9c;p=friendica.git diff --git a/include/pubsubpublish.php b/include/pubsubpublish.php index cde256a403..2527963d4c 100644 --- a/include/pubsubpublish.php +++ b/include/pubsubpublish.php @@ -7,17 +7,19 @@ require_once('include/items.php'); require_once('include/ostatus.php'); function pubsubpublish_run(&$argv, &$argc){ + global $a; if ($argc > 1) { $pubsubpublish_id = intval($argv[1]); } else { // We'll push to each subscriber that has push > 0, // i.e. there has been an update (set in notifier.php). - $r = q("SELECT `id`, `callback_url` FROM `push_subscriber` WHERE `push` > 0"); + $r = q("SELECT `id`, `callback_url` FROM `push_subscriber` WHERE `push` > 0 ORDER BY `last_update` DESC"); foreach ($r as $rr) { logger("Publish feed to ".$rr["callback_url"], LOGGER_DEBUG); - proc_run(PRIORITY_HIGH, 'include/pubsubpublish.php', $rr["id"]); + proc_run(array('priority' => PRIORITY_HIGH, 'created' => $a->queue['created'], 'dont_fork' => true), + 'include/pubsubpublish.php', (int)$rr["id"]); } } @@ -41,7 +43,13 @@ function handle_pubsubhubbub($id) { logger("Generate feed of user ".$rr['nickname']." to ".$rr['callback_url']." - last updated ".$rr['last_update'], LOGGER_DEBUG); - $params = ostatus::feed($a, $rr['nickname'], $rr['last_update']); + $last_update = $rr['last_update']; + $params = ostatus::feed($a, $rr['nickname'], $last_update); + + if (!$params) { + return; + } + $hmac_sig = hash_hmac("sha1", $params, $rr['secret']); $headers = array("Content-type: application/atom+xml", @@ -58,10 +66,9 @@ function handle_pubsubhubbub($id) { if ($ret >= 200 && $ret <= 299) { logger('successfully pushed to '.$rr['callback_url']); - // set last_update to "now", and reset push=0 - $date_now = datetime_convert('UTC','UTC','now','Y-m-d H:i:s'); + // set last_update to the "created" date of the last item, and reset push=0 q("UPDATE `push_subscriber` SET `push` = 0, last_update = '%s' WHERE id = %d", - dbesc($date_now), + dbesc($last_update), intval($rr['id'])); } else {