]> git.mxchange.org Git - friendica.git/blob - src/Worker/PushSubscription.php
Merge pull request #12680 from nupplaphil/feat/addon_logger
[friendica.git] / src / Worker / PushSubscription.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\Content\Text\BBCode;
25 use Friendica\Content\Text\Plaintext;
26 use Friendica\Core\Logger;
27 use Friendica\Database\DBA;
28 use Friendica\DI;
29 use Friendica\Factory\Api\Mastodon\Notification as NotificationFactory;
30 use Friendica\Model\Contact;
31 use Friendica\Model\Post;
32 use Friendica\Model\Subscription as ModelSubscription;
33 use Friendica\Model\User;
34 use Friendica\Network\HTTPException\NotFoundException;
35 use Minishlink\WebPush\WebPush;
36 use Minishlink\WebPush\Subscription;
37
38 class PushSubscription
39 {
40         /**
41          * Creates push subscription by subscription and notification ids
42          *
43          * @param int $sid Subscription id
44          * @param int $nid Notification id
45          * @return void
46          */
47         public static function execute(int $sid, int $nid)
48         {
49                 Logger::info('Start', ['subscription' => $sid, 'notification' => $nid]);
50
51                 $subscription = DBA::selectFirst('subscription', [], ['id' => $sid]);
52                 if (empty($subscription)) {
53                         Logger::info('Subscription not found', ['subscription' => $sid]);
54                         return;
55                 }
56
57                 try {
58                         $notification = DI::notification()->selectOneById($nid);
59                 } catch (NotFoundException $e) {
60                         Logger::info('Notification not found', ['notification' => $nid]);
61                         return;
62                 }
63
64                 $application_token = DBA::selectFirst('application-token', [], ['application-id' => $subscription['application-id'], 'uid' => $subscription['uid']]);
65                 if (empty($application_token)) {
66                         Logger::info('Application token not found', ['application' => $subscription['application-id']]);
67                         return;
68                 }
69
70                 $user = User::getById($notification->uid);
71                 if (empty($user)) {
72                         Logger::info('User not found', ['application' => $subscription['uid']]);
73                         return;
74                 }
75
76                 $l10n = DI::l10n()->withLang($user['language']);
77
78                 if ($notification->actorId) {
79                         $actor = Contact::getById($notification->actorId);
80                 }
81
82                 $body = '';
83
84                 if ($notification->targetUriId) {
85                         $post = Post::selectFirst([], ['uri-id' => $notification->targetUriId, 'uid' => [0, $notification->uid]]);
86                         if (!empty($post['body'])) {
87                                 $body = BBCode::toPlaintext($post['body'], false);
88                                 $body = Plaintext::shorten($body, 160, $notification->uid);
89                         }
90                 }
91
92                 $message = DI::notificationFactory()->getMessageFromNotification($notification);
93                 $title = $message['plain'] ?? '';
94
95                 $push = Subscription::create([
96                         'contentEncoding' => 'aesgcm',
97                         'endpoint'        => $subscription['endpoint'],
98                         'keys'            => [
99                                 'p256dh' => $subscription['pubkey'],
100                                 'auth'   => $subscription['secret']
101                         ],
102                 ]);
103
104                 $payload = [
105                         'access_token'      => $application_token['access_token'],
106                         'preferred_locale'  => $user['language'],
107                         'notification_id'   => $nid,
108                         'notification_type' => NotificationFactory::getType($notification),
109                         'icon'              => $actor['thumb'] ?? '',
110                         'title'             => $title ?: $l10n->t('Notification from Friendica'),
111                         'body'              => $body ?: $l10n->t('Empty Post'),
112                 ];
113
114                 Logger::info('Payload', ['payload' => $payload]);
115
116                 $auth = [
117                         'VAPID' => [
118                                 'subject'    => DI::baseUrl()->getHostname(),
119                                 'publicKey'  => ModelSubscription::getPublicVapidKey(),
120                                 'privateKey' => ModelSubscription::getPrivateVapidKey(),
121                         ],
122                 ];
123
124                 $webPush = new WebPush($auth, [], DI::config()->get('system', 'xrd_timeout'));
125
126                 $report = $webPush->sendOneNotification($push, json_encode($payload), ['urgency' => 'normal']);
127
128                 $endpoint = $report->getRequest()->getUri()->__toString();
129
130                 if ($report->isSuccess()) {
131                         Logger::info('Message sent successfully for subscription', ['subscription' => $sid, 'notification' => $nid, 'endpoint' => $endpoint]);
132                 } else {
133                         Logger::info('Message failed to sent for subscription', ['subscription' => $sid, 'notification' => $nid, 'endpoint' => $endpoint, 'reason' => $report->getReason()]);
134                 }
135         }
136 }