2015-05-30 14:47:53 -04:00
|
|
|
<?php
|
|
|
|
require_once("boot.php");
|
2015-11-23 12:44:47 -05:00
|
|
|
require_once("include/ostatus.php");
|
2015-05-30 14:47:53 -04:00
|
|
|
|
2016-08-04 09:15:43 -04:00
|
|
|
use \Friendica\Core\Config;
|
|
|
|
use \Friendica\Core\PConfig;
|
2015-05-30 14:47:53 -04:00
|
|
|
|
2016-08-04 09:15:43 -04:00
|
|
|
function handle_pubsubhubbub($id) {
|
|
|
|
global $a, $db;
|
2015-05-30 14:47:53 -04:00
|
|
|
|
2016-08-04 09:15:43 -04:00
|
|
|
$r = q("SELECT * FROM `push_subscriber` WHERE `id` = %d", intval($id));
|
|
|
|
if (!$r)
|
|
|
|
return;
|
|
|
|
else
|
|
|
|
$rr = $r[0];
|
2015-12-13 18:42:36 -05:00
|
|
|
|
2016-08-04 09:15:43 -04:00
|
|
|
logger("Generate feed of user ".$rr['nickname']." to ".$rr['callback_url']." - last updated ".$rr['last_update'], LOGGER_DEBUG);
|
2015-12-13 18:42:36 -05:00
|
|
|
|
2016-08-04 09:15:43 -04:00
|
|
|
$params = ostatus::feed($a, $rr['nickname'], $rr['last_update']);
|
|
|
|
$hmac_sig = hash_hmac("sha1", $params, $rr['secret']);
|
2015-05-30 14:47:53 -04:00
|
|
|
|
2016-08-04 09:15:43 -04:00
|
|
|
$headers = array("Content-type: application/atom+xml",
|
|
|
|
sprintf("Link: <%s>;rel=hub,<%s>;rel=self",
|
2016-12-19 08:26:13 -05:00
|
|
|
App::get_baseurl().'/pubsubhubbub',
|
2016-08-04 09:15:43 -04:00
|
|
|
$rr['topic']),
|
|
|
|
"X-Hub-Signature: sha1=".$hmac_sig);
|
2015-05-30 14:47:53 -04:00
|
|
|
|
2016-08-04 09:15:43 -04:00
|
|
|
logger('POST '.print_r($headers, true)."\n".$params, LOGGER_DEBUG);
|
2015-05-30 14:47:53 -04:00
|
|
|
|
2016-08-04 09:15:43 -04:00
|
|
|
post_url($rr['callback_url'], $params, $headers);
|
|
|
|
$ret = $a->get_curl_code();
|
2015-05-30 14:47:53 -04:00
|
|
|
|
2016-08-04 09:15:43 -04:00
|
|
|
if ($ret >= 200 && $ret <= 299) {
|
|
|
|
logger('successfully pushed to '.$rr['callback_url']);
|
2015-05-30 14:47:53 -04:00
|
|
|
|
2016-08-04 09:15:43 -04:00
|
|
|
// set last_update to "now", and reset push=0
|
|
|
|
$date_now = datetime_convert('UTC','UTC','now','Y-m-d H:i:s');
|
|
|
|
q("UPDATE `push_subscriber` SET `push` = 0, last_update = '%s' WHERE id = %d",
|
|
|
|
dbesc($date_now),
|
|
|
|
intval($rr['id']));
|
2015-05-30 14:47:53 -04:00
|
|
|
|
2016-08-04 09:15:43 -04:00
|
|
|
} else {
|
|
|
|
logger('error when pushing to '.$rr['callback_url'].' HTTP: '.$ret);
|
2015-05-30 14:47:53 -04:00
|
|
|
|
2016-08-04 09:15:43 -04:00
|
|
|
// we use the push variable also as a counter, if we failed we
|
|
|
|
// increment this until some upper limit where we give up
|
|
|
|
$new_push = intval($rr['push']) + 1;
|
2015-05-30 14:47:53 -04:00
|
|
|
|
2016-08-04 09:15:43 -04:00
|
|
|
if ($new_push > 30) // OK, let's give up
|
|
|
|
$new_push = 0;
|
2015-05-30 14:47:53 -04:00
|
|
|
|
2016-08-04 09:15:43 -04:00
|
|
|
q("UPDATE `push_subscriber` SET `push` = %d WHERE id = %d",
|
|
|
|
$new_push,
|
|
|
|
intval($rr['id']));
|
2015-05-30 14:47:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function pubsubpublish_run(&$argv, &$argc){
|
|
|
|
global $a, $db;
|
|
|
|
|
|
|
|
if(is_null($a)){
|
|
|
|
$a = new App;
|
|
|
|
}
|
|
|
|
|
|
|
|
if(is_null($db)){
|
|
|
|
@include(".htconfig.php");
|
|
|
|
require_once("include/dba.php");
|
|
|
|
$db = new dba($db_host, $db_user, $db_pass, $db_data);
|
|
|
|
unset($db_host, $db_user, $db_pass, $db_data);
|
|
|
|
};
|
|
|
|
|
|
|
|
require_once('include/items.php');
|
|
|
|
|
2017-01-18 16:45:32 -05:00
|
|
|
Config::load();
|
2015-05-30 14:47:53 -04:00
|
|
|
|
2016-03-07 18:20:06 -05:00
|
|
|
// Don't check this stuff if the function is called by the poller
|
2016-12-20 15:13:50 -05:00
|
|
|
if (App::callstack() != "poller_run") {
|
|
|
|
if (App::is_already_running("pubsubpublish", "include/pubsubpublish.php", 540)) {
|
2016-03-08 14:28:09 -05:00
|
|
|
return;
|
2016-12-20 15:13:50 -05:00
|
|
|
}
|
|
|
|
}
|
2015-05-30 14:47:53 -04:00
|
|
|
|
|
|
|
$a->set_baseurl(get_config('system','url'));
|
|
|
|
|
|
|
|
load_hooks();
|
|
|
|
|
2016-12-20 15:13:50 -05:00
|
|
|
if ($argc > 1) {
|
2015-05-30 14:47:53 -04:00
|
|
|
$pubsubpublish_id = intval($argv[1]);
|
2016-12-20 15:13:50 -05:00
|
|
|
}
|
2016-08-04 09:15:43 -04:00
|
|
|
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");
|
|
|
|
|
|
|
|
// Use the delivery interval that is also used for the notifier
|
|
|
|
$interval = Config::get("system", "delivery_interval", 2);
|
|
|
|
|
|
|
|
// If we are using the worker we don't need a delivery interval
|
2016-12-20 15:13:50 -05:00
|
|
|
if (get_config("system", "worker")) {
|
2016-08-04 09:15:43 -04:00
|
|
|
$interval = false;
|
2016-12-20 15:13:50 -05:00
|
|
|
}
|
2016-08-04 09:15:43 -04:00
|
|
|
|
2016-12-20 15:13:50 -05:00
|
|
|
foreach ($r as $rr) {
|
2016-08-04 09:15:43 -04:00
|
|
|
logger("Publish feed to ".$rr["callback_url"], LOGGER_DEBUG);
|
|
|
|
proc_run(PRIORITY_HIGH, 'include/pubsubpublish.php', $rr["id"]);
|
|
|
|
|
|
|
|
if($interval)
|
|
|
|
@time_sleep_until(microtime(true) + (float) $interval);
|
|
|
|
}
|
|
|
|
}
|
2015-05-30 14:47:53 -04:00
|
|
|
|
2016-08-04 09:15:43 -04:00
|
|
|
handle_pubsubhubbub($pubsubpublish_id);
|
2015-05-30 14:47:53 -04:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_search(__file__,get_included_files())===0){
|
|
|
|
pubsubpublish_run($_SERVER["argv"],$_SERVER["argc"]);
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
|