2 require_once("boot.php");
3 require_once("include/ostatus.php");
5 function handle_pubsubhubbub() {
10 // We'll push to each subscriber that has push > 0,
11 // i.e. there has been an update (set in notifier.php).
13 $r = q("SELECT * FROM `push_subscriber` WHERE `push` > 0");
17 logger("Generate feed for user ".$rr['nickname']." - 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",
62 function pubsubpublish_run(&$argv, &$argc){
70 @include(".htconfig.php");
71 require_once("include/dba.php");
72 $db = new dba($db_host, $db_user, $db_pass, $db_data);
73 unset($db_host, $db_user, $db_pass, $db_data);
76 require_once('include/items.php');
78 load_config('config');
79 load_config('system');
81 // Don't check this stuff if the function is called by the poller
82 if (App::callstack() != "poller_run")
83 if (App::is_already_running("pubsubpublish", "include/pubsubpublish.php", 540))
86 $a->set_baseurl(get_config('system','url'));
91 $pubsubpublish_id = intval($argv[1]);
93 $pubsubpublish_id = 0;
95 handle_pubsubhubbub();
101 if (array_search(__file__,get_included_files())===0){
102 pubsubpublish_run($_SERVER["argv"],$_SERVER["argc"]);