2017-11-19 12:36:20 -05:00
|
|
|
<?php
|
|
|
|
/**
|
2022-01-02 02:27:47 -05:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2020-02-09 10:18:46 -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/>.
|
|
|
|
*
|
2017-11-19 12:36:20 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Worker;
|
|
|
|
|
2018-10-29 17:20:46 -04:00
|
|
|
use Friendica\Core\Logger;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-30 17:00:08 -05:00
|
|
|
use Friendica\DI;
|
2018-07-19 22:15:21 -04:00
|
|
|
use Friendica\Model\PushSubscriber;
|
2017-11-19 12:36:20 -05:00
|
|
|
use Friendica\Protocol\OStatus;
|
|
|
|
|
2018-07-09 22:39:59 -04:00
|
|
|
class PubSubPublish
|
|
|
|
{
|
2017-11-19 12:36:20 -05:00
|
|
|
public static function execute($pubsubpublish_id = 0)
|
|
|
|
{
|
2018-05-17 19:30:49 -04:00
|
|
|
if ($pubsubpublish_id == 0) {
|
2018-05-17 18:17:03 -04:00
|
|
|
return;
|
2017-11-19 12:36:20 -05:00
|
|
|
}
|
|
|
|
|
2018-05-17 19:30:49 -04:00
|
|
|
self::publish($pubsubpublish_id);
|
2017-11-19 12:36:20 -05:00
|
|
|
}
|
|
|
|
|
2018-07-09 22:39:59 -04:00
|
|
|
private static function publish($id)
|
|
|
|
{
|
2018-07-20 08:19:26 -04:00
|
|
|
$subscriber = DBA::selectFirst('push_subscriber', [], ['id' => $id]);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($subscriber)) {
|
2017-11-19 12:36:20 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-10-03 19:33:41 -04:00
|
|
|
/// @todo Check server status with GServer::check()
|
2017-11-19 12:36:20 -05:00
|
|
|
// Before this can be done we need a way to safely detect the server url.
|
|
|
|
|
2021-10-20 14:53:52 -04:00
|
|
|
Logger::info("Generate feed of user " . $subscriber['nickname']. " to " . $subscriber['callback_url']. " - last updated " . $subscriber['last_update']);
|
2017-11-19 12:36:20 -05:00
|
|
|
|
2018-05-17 18:17:03 -04:00
|
|
|
$last_update = $subscriber['last_update'];
|
|
|
|
$params = OStatus::feed($subscriber['nickname'], $last_update);
|
2017-11-19 12:36:20 -05:00
|
|
|
|
|
|
|
if (!$params) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-05-17 18:17:03 -04:00
|
|
|
$hmac_sig = hash_hmac("sha1", $params, $subscriber['secret']);
|
2017-11-19 12:36:20 -05:00
|
|
|
|
2021-08-24 08:17:42 -04:00
|
|
|
$headers = [
|
|
|
|
'Content-type' => 'application/atom+xml',
|
|
|
|
'Link' => sprintf("<%s>;rel=hub,<%s>;rel=self",
|
2019-12-30 17:00:08 -05:00
|
|
|
DI::baseUrl() . '/pubsubhubbub/' . $subscriber['nickname'],
|
2018-05-17 18:17:03 -04:00
|
|
|
$subscriber['topic']),
|
2021-08-24 08:17:42 -04:00
|
|
|
'X-Hub-Signature' => 'sha1=' . $hmac_sig];
|
2017-11-19 12:36:20 -05:00
|
|
|
|
2021-10-25 16:54:36 -04:00
|
|
|
Logger::debug('POST', ['headers' => $headers, 'params' => $params]);
|
2017-11-19 12:36:20 -05:00
|
|
|
|
2021-08-25 15:54:54 -04:00
|
|
|
$postResult = DI::httpClient()->post($subscriber['callback_url'], $params, $headers);
|
2018-10-10 15:15:26 -04:00
|
|
|
$ret = $postResult->getReturnCode();
|
2017-11-19 12:36:20 -05:00
|
|
|
|
|
|
|
if ($ret >= 200 && $ret <= 299) {
|
2021-10-25 15:27:21 -04:00
|
|
|
Logger::info('Successfully pushed to ' . $subscriber['callback_url']);
|
2017-11-19 12:36:20 -05:00
|
|
|
|
2018-05-18 23:56:29 -04:00
|
|
|
PushSubscriber::reset($subscriber['id'], $last_update);
|
2017-11-19 12:36:20 -05:00
|
|
|
} else {
|
2021-10-20 14:53:52 -04:00
|
|
|
Logger::notice('Delivery error when pushing to ' . $subscriber['callback_url'] . ' HTTP: ' . $ret);
|
2017-11-19 12:36:20 -05:00
|
|
|
|
2018-05-18 23:56:29 -04:00
|
|
|
PushSubscriber::delay($subscriber['id']);
|
2017-11-19 12:36:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|