]> git.mxchange.org Git - friendica.git/blob - src/Worker/PubSubPublish.php
Merge pull request #12814 from nupplaphil/bug/config_multi_serialize
[friendica.git] / src / Worker / PubSubPublish.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Worker;
23
24 use Friendica\Core\Logger;
25 use Friendica\Database\DBA;
26 use Friendica\DI;
27 use Friendica\Model\PushSubscriber;
28 use Friendica\Protocol\OStatus;
29
30 class PubSubPublish
31 {
32         /**
33          * Publishes subscriber id
34          *
35          * @param int $pubsubpublish_id Push subscriber id
36          * @return void
37          */
38         public static function execute(int $pubsubpublish_id = 0)
39         {
40                 if ($pubsubpublish_id == 0) {
41                         return;
42                 }
43
44                 self::publish($pubsubpublish_id);
45         }
46
47         /**
48          * Publishes push subscriber
49          *
50          * @param int $id Push subscriber id
51          * @return void
52          */
53         private static function publish(int $id)
54         {
55                 $subscriber = DBA::selectFirst('push_subscriber', [], ['id' => $id]);
56                 if (!DBA::isResult($subscriber)) {
57                         return;
58                 }
59
60                 /// @todo Check server status with GServer::check()
61                 // Before this can be done we need a way to safely detect the server url.
62
63                 Logger::info('Generate feed of user ' . $subscriber['nickname'] . ' to ' . $subscriber['callback_url'] . ' - last updated ' . $subscriber['last_update']);
64
65                 $last_update = $subscriber['last_update'];
66                 $params = OStatus::feed($subscriber['nickname'], $last_update);
67
68                 if (!$params) {
69                         return;
70                 }
71
72                 $hmac_sig = hash_hmac('sha1', $params, $subscriber['secret']);
73
74                 $headers = [
75                         'Content-type' => 'application/atom+xml',
76                         'Link' => sprintf('<%s>;rel=hub,<%s>;rel=self',
77                                         DI::baseUrl() . '/pubsubhubbub/' . $subscriber['nickname'],
78                                         $subscriber['topic']),
79                         'X-Hub-Signature' => 'sha1=' . $hmac_sig];
80
81                 Logger::debug('POST', ['headers' => $headers, 'params' => $params]);
82
83                 $postResult = DI::httpClient()->post($subscriber['callback_url'], $params, $headers);
84                 $ret = $postResult->getReturnCode();
85
86                 if ($ret >= 200 && $ret <= 299) {
87                         Logger::info('Successfully pushed to ' . $subscriber['callback_url']);
88
89                         PushSubscriber::reset($subscriber['id'], $last_update);
90                 } else {
91                         Logger::notice('Delivery error when pushing to ' . $subscriber['callback_url'] . ' HTTP: ' . $ret);
92
93                         PushSubscriber::delay($subscriber['id']);
94                 }
95         }
96 }