mirror of
https://github.com/friendica/friendica
synced 2025-03-26 06:41:25 +00:00
pubsubpublish is now split into separate calls per entry.
This commit is contained in:
parent
2a282a9555
commit
dad74e9650
2 changed files with 60 additions and 45 deletions
|
@ -643,7 +643,7 @@ function notifier_run(&$argv, &$argc){
|
||||||
// Set push flag for PuSH subscribers to this topic,
|
// Set push flag for PuSH subscribers to this topic,
|
||||||
// they will be notified in queue.php
|
// they will be notified in queue.php
|
||||||
q("UPDATE `push_subscriber` SET `push` = 1 ".
|
q("UPDATE `push_subscriber` SET `push` = 1 ".
|
||||||
"WHERE `nickname` = '%s'", dbesc($owner['nickname']));
|
"WHERE `nickname` = '%s' AND `push` = 0", dbesc($owner['nickname']));
|
||||||
|
|
||||||
logger('Activating internal PuSH for item '.$item_id, LOGGER_DEBUG);
|
logger('Activating internal PuSH for item '.$item_id, LOGGER_DEBUG);
|
||||||
|
|
||||||
|
|
|
@ -2,19 +2,19 @@
|
||||||
require_once("boot.php");
|
require_once("boot.php");
|
||||||
require_once("include/ostatus.php");
|
require_once("include/ostatus.php");
|
||||||
|
|
||||||
function handle_pubsubhubbub() {
|
use \Friendica\Core\Config;
|
||||||
|
use \Friendica\Core\PConfig;
|
||||||
|
|
||||||
|
function handle_pubsubhubbub($id) {
|
||||||
global $a, $db;
|
global $a, $db;
|
||||||
|
|
||||||
logger('start');
|
$r = q("SELECT * FROM `push_subscriber` WHERE `id` = %d", intval($id));
|
||||||
|
if (!$r)
|
||||||
|
return;
|
||||||
|
else
|
||||||
|
$rr = $r[0];
|
||||||
|
|
||||||
// We'll push to each subscriber that has push > 0,
|
logger("Generate feed of user ".$rr['nickname']." to ".$rr['callback_url']." - last updated ".$rr['last_update'], LOGGER_DEBUG);
|
||||||
// i.e. there has been an update (set in notifier.php).
|
|
||||||
|
|
||||||
$r = q("SELECT * FROM `push_subscriber` WHERE `push` > 0");
|
|
||||||
|
|
||||||
foreach($r as $rr) {
|
|
||||||
|
|
||||||
logger("Generate feed for user ".$rr['nickname']." - last updated ".$rr['last_update'], LOGGER_DEBUG);
|
|
||||||
|
|
||||||
$params = ostatus::feed($a, $rr['nickname'], $rr['last_update']);
|
$params = ostatus::feed($a, $rr['nickname'], $rr['last_update']);
|
||||||
$hmac_sig = hash_hmac("sha1", $params, $rr['secret']);
|
$hmac_sig = hash_hmac("sha1", $params, $rr['secret']);
|
||||||
|
@ -55,9 +55,6 @@ function handle_pubsubhubbub() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
logger('done');
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
function pubsubpublish_run(&$argv, &$argc){
|
function pubsubpublish_run(&$argv, &$argc){
|
||||||
global $a, $db;
|
global $a, $db;
|
||||||
|
@ -89,10 +86,28 @@ function pubsubpublish_run(&$argv, &$argc){
|
||||||
|
|
||||||
if($argc > 1)
|
if($argc > 1)
|
||||||
$pubsubpublish_id = intval($argv[1]);
|
$pubsubpublish_id = intval($argv[1]);
|
||||||
else
|
else {
|
||||||
$pubsubpublish_id = 0;
|
// 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");
|
||||||
|
|
||||||
handle_pubsubhubbub();
|
// 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
|
||||||
|
if (get_config("system", "worker"))
|
||||||
|
$interval = false;
|
||||||
|
|
||||||
|
foreach($r as $rr) {
|
||||||
|
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);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
handle_pubsubhubbub($pubsubpublish_id);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue