2 require_once("boot.php");
3 require_once("include/ostatus.php");
5 use \Friendica\Core\Config;
6 use \Friendica\Core\PConfig;
8 function handle_pubsubhubbub($id) {
11 $r = q("SELECT * FROM `push_subscriber` WHERE `id` = %d", intval($id));
17 logger("Generate feed of user ".$rr['nickname']." to ".$rr['callback_url']." - last updated ".$rr['last_update'], LOGGER_DEBUG);
19 $params = ostatus::feed($a, $rr['nickname'], $rr['last_update']);
20 $hmac_sig = hash_hmac("sha1", $params, $rr['secret']);
22 $headers = array("Content-type: application/atom+xml",
23 sprintf("Link: <%s>;rel=hub,<%s>;rel=self",
24 $a->get_baseurl().'/pubsubhubbub',
26 "X-Hub-Signature: sha1=".$hmac_sig);
28 logger('POST '.print_r($headers, true)."\n".$params, LOGGER_DEBUG);
30 post_url($rr['callback_url'], $params, $headers);
31 $ret = $a->get_curl_code();
33 if ($ret >= 200 && $ret <= 299) {
34 logger('successfully pushed to '.$rr['callback_url']);
36 // set last_update to "now", and reset push=0
37 $date_now = datetime_convert('UTC','UTC','now','Y-m-d H:i:s');
38 q("UPDATE `push_subscriber` SET `push` = 0, last_update = '%s' WHERE id = %d",
43 logger('error when pushing to '.$rr['callback_url'].' HTTP: '.$ret);
45 // we use the push variable also as a counter, if we failed we
46 // increment this until some upper limit where we give up
47 $new_push = intval($rr['push']) + 1;
49 if ($new_push > 30) // OK, let's give up
52 q("UPDATE `push_subscriber` SET `push` = %d WHERE id = %d",
59 function pubsubpublish_run(&$argv, &$argc){
67 @include(".htconfig.php");
68 require_once("include/dba.php");
69 $db = new dba($db_host, $db_user, $db_pass, $db_data);
70 unset($db_host, $db_user, $db_pass, $db_data);
73 require_once('include/items.php');
75 load_config('config');
76 load_config('system');
78 // Don't check this stuff if the function is called by the poller
79 if (App::callstack() != "poller_run")
80 if (App::is_already_running("pubsubpublish", "include/pubsubpublish.php", 540))
83 $a->set_baseurl(get_config('system','url'));
88 $pubsubpublish_id = intval($argv[1]);
90 // We'll push to each subscriber that has push > 0,
91 // i.e. there has been an update (set in notifier.php).
92 $r = q("SELECT `id`, `callback_url` FROM `push_subscriber` WHERE `push` > 0");
94 // Use the delivery interval that is also used for the notifier
95 $interval = Config::get("system", "delivery_interval", 2);
97 // If we are using the worker we don't need a delivery interval
98 if (get_config("system", "worker"))
102 logger("Publish feed to ".$rr["callback_url"], LOGGER_DEBUG);
103 proc_run(PRIORITY_HIGH, 'include/pubsubpublish.php', $rr["id"]);
106 @time_sleep_until(microtime(true) + (float) $interval);
110 handle_pubsubhubbub($pubsubpublish_id);
116 if (array_search(__file__,get_included_files())===0){
117 pubsubpublish_run($_SERVER["argv"],$_SERVER["argc"]);