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;
15 require_once 'include/items.php';
18 public static function execute($pubsubpublish_id = 0)
22 if ($pubsubpublish_id == 0) {
23 // We'll push to each subscriber that has push > 0,
24 // i.e. there has been an update (set in notifier.php).
25 $r = q("SELECT `id`, `callback_url` FROM `push_subscriber` WHERE `push` > 0 ORDER BY `last_update` DESC");
28 logger("Publish feed to ".$rr["callback_url"], LOGGER_DEBUG);
29 Worker::add(array('priority' => PRIORITY_HIGH, 'created' => $a->queue['created'], 'dont_fork' => true),
30 'PubSubPublish', (int)$rr["id"]);
34 self::publish($pubsubpublish_id);
39 private static function publish($id) {
42 $r = q("SELECT * FROM `push_subscriber` WHERE `id` = %d", intval($id));
43 if (!DBM::is_result($r)) {
49 /// @todo Check server status with PortableContact::checkServer()
50 // Before this can be done we need a way to safely detect the server url.
52 logger("Generate feed of user ".$rr['nickname']." to ".$rr['callback_url']." - last updated ".$rr['last_update'], LOGGER_DEBUG);
54 $last_update = $rr['last_update'];
55 $params = OStatus::feed($a, $rr['nickname'], $last_update);
61 $hmac_sig = hash_hmac("sha1", $params, $rr['secret']);
63 $headers = array("Content-type: application/atom+xml",
64 sprintf("Link: <%s>;rel=hub,<%s>;rel=self",
65 System::baseUrl().'/pubsubhubbub/'.$rr['nickname'],
67 "X-Hub-Signature: sha1=".$hmac_sig);
69 logger('POST '.print_r($headers, true)."\n".$params, LOGGER_DEBUG);
71 post_url($rr['callback_url'], $params, $headers);
72 $ret = $a->get_curl_code();
74 if ($ret >= 200 && $ret <= 299) {
75 logger('successfully pushed to '.$rr['callback_url']);
77 // set last_update to the "created" date of the last item, and reset push=0
78 q("UPDATE `push_subscriber` SET `push` = 0, last_update = '%s' WHERE id = %d",
83 logger('error when pushing to '.$rr['callback_url'].' HTTP: '.$ret);
85 // we use the push variable also as a counter, if we failed we
86 // increment this until some upper limit where we give up
87 $new_push = intval($rr['push']) + 1;
89 if ($new_push > 30) // OK, let's give up
92 q("UPDATE `push_subscriber` SET `push` = %d WHERE id = %d",