2018-05-17 19:30:49 -04:00
|
|
|
<?php
|
|
|
|
/**
|
2022-01-02 02:27:47 -05:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 09:45:36 -05:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
2018-05-17 19:30:49 -04:00
|
|
|
*/
|
2020-02-09 09:45:36 -05:00
|
|
|
|
2018-05-17 19:30:49 -04:00
|
|
|
namespace Friendica\Model;
|
|
|
|
|
2018-10-29 17:20:46 -04:00
|
|
|
use Friendica\Core\Logger;
|
2018-05-17 19:30:49 -04:00
|
|
|
use Friendica\Core\Worker;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2018-07-19 22:15:21 -04:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2021-01-09 14:18:22 -05:00
|
|
|
use Friendica\Util\Network;
|
2018-05-17 19:30:49 -04:00
|
|
|
|
|
|
|
class PushSubscriber
|
|
|
|
{
|
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* Send subscription notifications for the given user
|
2018-05-18 23:56:29 -04:00
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param integer $uid User ID
|
|
|
|
* @param int $default_priority
|
2022-06-18 10:58:48 -04:00
|
|
|
* @return void
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-05-18 23:56:29 -04:00
|
|
|
*/
|
2022-06-18 10:58:48 -04:00
|
|
|
public static function publishFeed(int $uid, int $default_priority = PRIORITY_HIGH)
|
2018-05-18 23:56:29 -04:00
|
|
|
{
|
|
|
|
$condition = ['push' => 0, 'uid' => $uid];
|
2018-10-21 01:53:47 -04:00
|
|
|
DBA::update('push_subscriber', ['push' => 1, 'next_try' => DBA::NULL_DATETIME], $condition);
|
2018-05-18 23:56:29 -04:00
|
|
|
|
|
|
|
self::requeue($default_priority);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* start workers to transmit the feed data
|
2018-05-18 23:56:29 -04:00
|
|
|
*
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param int $default_priority
|
2022-06-18 10:58:48 -04:00
|
|
|
* @return void
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-05-17 19:30:49 -04:00
|
|
|
*/
|
2022-06-18 10:58:48 -04:00
|
|
|
public static function requeue(int $default_priority = PRIORITY_HIGH)
|
2018-05-17 19:30:49 -04:00
|
|
|
{
|
|
|
|
// We'll push to each subscriber that has push > 0,
|
|
|
|
// i.e. there has been an update (set in notifier.php).
|
2021-12-02 09:19:01 -05:00
|
|
|
$subscribers = DBA::select('push_subscriber', ['id', 'push', 'callback_url', 'nickname'], ["`push` > 0 AND `next_try` < ?", DateTimeFormat::utcNow()]);
|
2018-05-17 19:30:49 -04:00
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
while ($subscriber = DBA::fetch($subscribers)) {
|
2018-05-17 19:43:44 -04:00
|
|
|
// We always handle retries with low priority
|
2018-05-18 23:56:29 -04:00
|
|
|
if ($subscriber['push'] > 1) {
|
2018-05-17 19:43:44 -04:00
|
|
|
$priority = PRIORITY_LOW;
|
2018-05-17 19:47:15 -04:00
|
|
|
} else {
|
|
|
|
$priority = $default_priority;
|
2018-05-17 19:43:44 -04:00
|
|
|
}
|
2018-05-17 19:47:15 -04:00
|
|
|
|
2021-11-03 19:19:24 -04:00
|
|
|
Logger::info('Publish feed to ' . $subscriber['callback_url'] . ' for ' . $subscriber['nickname'] . ' with priority ' . $priority);
|
2018-05-18 23:56:29 -04:00
|
|
|
Worker::add($priority, 'PubSubPublish', (int)$subscriber['id']);
|
2018-05-17 19:30:49 -04:00
|
|
|
}
|
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::close($subscribers);
|
2018-05-17 19:30:49 -04:00
|
|
|
}
|
2018-05-18 23:56:29 -04:00
|
|
|
|
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* Renew the feed subscription
|
2018-05-18 23:56:29 -04:00
|
|
|
*
|
|
|
|
* @param integer $uid User ID
|
|
|
|
* @param string $nick Priority for push workers
|
|
|
|
* @param integer $subscribe Subscribe (Unsubscribe = false)
|
|
|
|
* @param string $hub_callback Callback address
|
|
|
|
* @param string $hub_topic Feed topic
|
|
|
|
* @param string $hub_secret Subscription secret
|
2022-06-18 10:58:48 -04:00
|
|
|
* @return void
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2018-05-18 23:56:29 -04:00
|
|
|
*/
|
2022-06-18 10:58:48 -04:00
|
|
|
public static function renew(int $uid, string $nick, int $subscribe, string $hub_callback, string $hub_topic, string $hub_secret)
|
2018-05-18 23:56:29 -04:00
|
|
|
{
|
|
|
|
// fetch the old subscription if it exists
|
2018-07-20 08:19:26 -04:00
|
|
|
$subscriber = DBA::selectFirst('push_subscriber', ['last_update', 'push'], ['callback_url' => $hub_callback]);
|
2018-05-18 23:56:29 -04:00
|
|
|
|
|
|
|
// delete old subscription if it exists
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::delete('push_subscriber', ['callback_url' => $hub_callback]);
|
2018-05-18 23:56:29 -04:00
|
|
|
|
|
|
|
if ($subscribe) {
|
|
|
|
// if we are just updating an old subscription, keep the
|
|
|
|
// old values for last_update but reset the push
|
2018-07-21 08:46:04 -04:00
|
|
|
if (DBA::isResult($subscriber)) {
|
2018-05-18 23:56:29 -04:00
|
|
|
$last_update = $subscriber['last_update'];
|
|
|
|
$push_flag = min($subscriber['push'], 1);
|
|
|
|
} else {
|
|
|
|
$last_update = DateTimeFormat::utcNow();
|
|
|
|
$push_flag = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
// subscribe means adding the row to the table
|
|
|
|
$fields = ['uid' => $uid, 'callback_url' => $hub_callback,
|
|
|
|
'topic' => $hub_topic, 'nickname' => $nick, 'push' => $push_flag,
|
|
|
|
'last_update' => $last_update, 'renewed' => DateTimeFormat::utcNow(),
|
|
|
|
'secret' => $hub_secret];
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::insert('push_subscriber', $fields);
|
2018-05-18 23:56:29 -04:00
|
|
|
|
2021-11-03 19:19:24 -04:00
|
|
|
Logger::notice("Successfully subscribed [$hub_callback] for $nick");
|
2018-05-18 23:56:29 -04:00
|
|
|
} else {
|
2021-11-03 19:19:24 -04:00
|
|
|
Logger::notice("Successfully unsubscribed [$hub_callback] for $nick");
|
2018-05-18 23:56:29 -04:00
|
|
|
// we do nothing here, since the row was already deleted
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* Delay the push subscriber
|
2018-05-18 23:56:29 -04:00
|
|
|
*
|
|
|
|
* @param integer $id Subscriber ID
|
2022-06-18 10:58:48 -04:00
|
|
|
* @return void
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2018-05-18 23:56:29 -04:00
|
|
|
*/
|
2022-06-18 10:58:48 -04:00
|
|
|
public static function delay(int $id)
|
2018-05-18 23:56:29 -04:00
|
|
|
{
|
2018-07-20 08:19:26 -04:00
|
|
|
$subscriber = DBA::selectFirst('push_subscriber', ['push', 'callback_url', 'renewed', 'nickname'], ['id' => $id]);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($subscriber)) {
|
2018-05-18 23:56:29 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$retrial = $subscriber['push'];
|
|
|
|
|
|
|
|
if ($retrial > 14) {
|
|
|
|
// End subscriptions if they weren't renewed for more than two months
|
|
|
|
$days = round((time() - strtotime($subscriber['renewed'])) / (60 * 60 * 24));
|
|
|
|
|
|
|
|
if ($days > 60) {
|
2018-10-21 01:53:47 -04:00
|
|
|
DBA::update('push_subscriber', ['push' => -1, 'next_try' => DBA::NULL_DATETIME], ['id' => $id]);
|
2021-11-03 19:19:24 -04:00
|
|
|
Logger::info('Delivery error: Subscription ' . $subscriber['callback_url'] . ' for ' . $subscriber['nickname'] . ' is marked as ended.');
|
2018-05-18 23:56:29 -04:00
|
|
|
} else {
|
2018-10-21 01:53:47 -04:00
|
|
|
DBA::update('push_subscriber', ['push' => 0, 'next_try' => DBA::NULL_DATETIME], ['id' => $id]);
|
2021-11-03 19:19:24 -04:00
|
|
|
Logger::info('Delivery error: Giving up ' . $subscriber['callback_url'] . ' for ' . $subscriber['nickname'] . ' for now.');
|
2018-05-18 23:56:29 -04:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Calculate the delay until the next trial
|
|
|
|
$delay = (($retrial + 3) ** 4) + (rand(1, 30) * ($retrial + 1));
|
|
|
|
$next = DateTimeFormat::utc('now + ' . $delay . ' seconds');
|
|
|
|
|
|
|
|
$retrial = $retrial + 1;
|
|
|
|
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::update('push_subscriber', ['push' => $retrial, 'next_try' => $next], ['id' => $id]);
|
2021-11-03 19:19:24 -04:00
|
|
|
Logger::info('Delivery error: Next try (' . $retrial . ') ' . $subscriber['callback_url'] . ' for ' . $subscriber['nickname'] . ' at ' . $next);
|
2018-05-18 23:56:29 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* Reset the push subscriber
|
2018-05-18 23:56:29 -04:00
|
|
|
*
|
|
|
|
* @param integer $id Subscriber ID
|
2019-01-06 16:06:53 -05:00
|
|
|
* @param string $last_update Date of last transmitted item
|
2022-06-18 10:58:48 -04:00
|
|
|
* @return void
|
2019-01-06 16:06:53 -05:00
|
|
|
* @throws \Exception
|
2018-05-18 23:56:29 -04:00
|
|
|
*/
|
2022-06-18 10:58:48 -04:00
|
|
|
public static function reset(int $id, string $last_update)
|
2018-05-18 23:56:29 -04:00
|
|
|
{
|
2018-07-20 08:19:26 -04:00
|
|
|
$subscriber = DBA::selectFirst('push_subscriber', ['callback_url', 'nickname'], ['id' => $id]);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($subscriber)) {
|
2018-05-18 23:56:29 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// set last_update to the 'created' date of the last item, and reset push=0
|
2018-10-21 01:53:47 -04:00
|
|
|
$fields = ['push' => 0, 'next_try' => DBA::NULL_DATETIME, 'last_update' => $last_update];
|
2018-07-20 08:19:26 -04:00
|
|
|
DBA::update('push_subscriber', $fields, ['id' => $id]);
|
2021-11-03 19:19:24 -04:00
|
|
|
Logger::info('Subscriber ' . $subscriber['callback_url'] . ' for ' . $subscriber['nickname'] . ' is marked as vital');
|
2021-01-09 14:18:22 -05:00
|
|
|
|
|
|
|
$parts = parse_url($subscriber['callback_url']);
|
|
|
|
unset($parts['path']);
|
|
|
|
$server_url = Network::unparseURL($parts);
|
|
|
|
$gsid = GServer::getID($server_url, true);
|
|
|
|
if (!empty($gsid)) {
|
|
|
|
GServer::setProtocol($gsid, Post\DeliveryData::OSTATUS);
|
|
|
|
}
|
2018-05-18 23:56:29 -04:00
|
|
|
}
|
2018-05-17 19:30:49 -04:00
|
|
|
}
|