3 * @file src/Worker/PubSubPublish.php
6 namespace Friendica\Worker;
9 use Friendica\Core\System;
10 use Friendica\Core\Config;
11 use Friendica\Core\Worker;
12 use Friendica\Database\DBM;
13 use Friendica\Protocol\OStatus;
14 use Friendica\Util\Network;
16 require_once 'include/items.php';
19 public static function execute($pubsubpublish_id = 0)
23 if ($pubsubpublish_id == 0) {
24 // We'll push to each subscriber that has push > 0,
25 // i.e. there has been an update (set in notifier.php).
26 $r = q("SELECT `id`, `callback_url` FROM `push_subscriber` WHERE `push` > 0 ORDER BY `last_update` DESC");
29 logger("Publish feed to ".$rr["callback_url"], LOGGER_DEBUG);
30 Worker::add(['priority' => PRIORITY_HIGH, 'created' => $a->queue['created'], 'dont_fork' => true],
31 'PubSubPublish', (int)$rr["id"]);
35 self::publish($pubsubpublish_id);
40 private static function publish($id) {
43 $r = q("SELECT * FROM `push_subscriber` WHERE `id` = %d", intval($id));
44 if (!DBM::is_result($r)) {
50 /// @todo Check server status with PortableContact::checkServer()
51 // Before this can be done we need a way to safely detect the server url.
53 logger("Generate feed of user ".$rr['nickname']." to ".$rr['callback_url']." - last updated ".$rr['last_update'], LOGGER_DEBUG);
55 $last_update = $rr['last_update'];
56 $params = OStatus::feed($rr['nickname'], $last_update);
62 $hmac_sig = hash_hmac("sha1", $params, $rr['secret']);
64 $headers = ["Content-type: application/atom+xml",
65 sprintf("Link: <%s>;rel=hub,<%s>;rel=self",
66 System::baseUrl().'/pubsubhubbub/'.$rr['nickname'],
68 "X-Hub-Signature: sha1=".$hmac_sig];
70 logger('POST '.print_r($headers, true)."\n".$params, LOGGER_DEBUG);
72 Network::post($rr['callback_url'], $params, $headers);
73 $ret = $a->get_curl_code();
75 if ($ret >= 200 && $ret <= 299) {
76 logger('successfully pushed to '.$rr['callback_url']);
78 // set last_update to the "created" date of the last item, and reset push=0
79 q("UPDATE `push_subscriber` SET `push` = 0, last_update = '%s' WHERE id = %d",
84 logger('error when pushing to '.$rr['callback_url'].' HTTP: '.$ret);
86 // we use the push variable also as a counter, if we failed we
87 // increment this until some upper limit where we give up
88 $new_push = intval($rr['push']) + 1;
90 if ($new_push > 30) // OK, let's give up
93 q("UPDATE `push_subscriber` SET `push` = %d WHERE id = %d",