]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Mastodon/PushSubscription.php
The post-reason / protocol is now filled in most cases
[friendica.git] / src / Module / Api / Mastodon / PushSubscription.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, 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\Module\Api\Mastodon;
23
24 use Friendica\Core\Logger;
25 use Friendica\Core\System;
26 use Friendica\DI;
27 use Friendica\Model\Subscription;
28 use Friendica\Module\BaseApi;
29 use Friendica\Object\Api\Mastodon\Notification;
30
31 /**
32  * @see https://docs.joinmastodon.org/methods/notifications/push/
33  */
34 class PushSubscription extends BaseApi
35 {
36         protected function post(array $request = [])
37         {
38                 self::checkAllowedScope(self::SCOPE_PUSH);
39                 $uid         = self::getCurrentUserID();
40                 $application = self::getCurrentApplication();
41
42                 $request = $this->getRequest([
43                         'subscription' => [],
44                         'data'         => [],
45                 ], $request);
46 /*
47 2022-07-31T08:08:11Z index [ERROR]: DB Error {"code":1366,"error":"Incorrect integer value: 'true' for column `piratica`.`subscription`.`follow` at row 1","callstack":"DBA::replace, Subscription::replace, PushSubscription::post, BaseModule::run, BaseApi::run, App::runFrontend","params":"REPLACE `subscription` (`application-id`, `uid`, `endpoint`, `pubkey`, `secret`, `follow`, `favourite`, `reblog`, `mention`, `poll`, `follow_request`, `status`) VALUES (213, 130, 'https://ntfy.sh/upNpejYKlqt5du?up=1', 'BEiGDNV6jsPwdtP186ZLbpqewcWBJHzM0qboxp8fVGoVxVUy6xiir_2RO4gM2FnE9sVg58sQdNuyDrr1jOmMj9Y', 'En7GzwQO8xuvXka5bIF3Sg', 'true', 'true', 'true', 'true', 'true', 0, 0)"} - {"file":"Database.php","line":801,"function":"e","uid":"c35eee","process_id":1404415}
48 */
49                 $subscription = [
50                         'application-id'                => $application['id'],
51                         'uid'                           => $uid,
52                         'endpoint'                      => $request['subscription']['endpoint'] ?? '',
53                         'pubkey'                        => $request['subscription']['keys']['p256dh'] ?? '',
54                         'secret'                        => $request['subscription']['keys']['auth'] ?? '',
55                         Notification::TYPE_FOLLOW       => $request['data']['alerts'][Notification::TYPE_FOLLOW] ?? false,
56                         Notification::TYPE_LIKE         => $request['data']['alerts'][Notification::TYPE_LIKE] ?? false,
57                         Notification::TYPE_RESHARE      => $request['data']['alerts'][Notification::TYPE_RESHARE] ?? false,
58                         Notification::TYPE_MENTION      => $request['data']['alerts'][Notification::TYPE_MENTION] ?? false,
59                         Notification::TYPE_POLL         => $request['data']['alerts'][Notification::TYPE_POLL] ?? false,
60                         Notification::TYPE_INTRODUCTION => $request['data']['alerts'][Notification::TYPE_INTRODUCTION] ?? false,
61                         Notification::TYPE_POST         => $request['data']['alerts'][Notification::TYPE_POST] ?? false,
62                 ];
63
64                 $ret = Subscription::replace($subscription);
65
66                 Logger::info('Subscription stored', ['ret' => $ret, 'subscription' => $subscription]);
67
68                 return DI::mstdnSubscription()->createForApplicationIdAndUserId($application['id'], $uid)->toArray();
69         }
70
71         public function put(array $request = [])
72         {
73                 self::checkAllowedScope(self::SCOPE_PUSH);
74                 $uid         = self::getCurrentUserID();
75                 $application = self::getCurrentApplication();
76
77                 $request = $this->getRequest([
78                         'data' => [],
79                 ], $request);
80
81                 $subscription = Subscription::select($application['id'], $uid, ['id']);
82                 if (empty($subscription)) {
83                         Logger::info('Subscription not found', ['application-id' => $application['id'], 'uid' => $uid]);
84                         DI::mstdnError()->RecordNotFound();
85                 }
86
87                 $fields = [
88                         Notification::TYPE_FOLLOW       => $request['data']['alerts'][Notification::TYPE_FOLLOW] ?? false,
89                         Notification::TYPE_LIKE         => $request['data']['alerts'][Notification::TYPE_LIKE] ?? false,
90                         Notification::TYPE_RESHARE      => $request['data']['alerts'][Notification::TYPE_RESHARE] ?? false,
91                         Notification::TYPE_MENTION      => $request['data']['alerts'][Notification::TYPE_MENTION] ?? false,
92                         Notification::TYPE_POLL         => $request['data']['alerts'][Notification::TYPE_POLL] ?? false,
93                         Notification::TYPE_INTRODUCTION => $request['data']['alerts'][Notification::TYPE_INTRODUCTION] ?? false,
94                         Notification::TYPE_POST         => $request['data']['alerts'][Notification::TYPE_POST] ?? false,
95                 ];
96
97                 $ret = Subscription::update($application['id'], $uid, $fields);
98
99                 Logger::info('Subscription updated', ['result' => $ret, 'application-id' => $application['id'], 'uid' => $uid, 'fields' => $fields]);
100
101                 return DI::mstdnSubscription()->createForApplicationIdAndUserId($application['id'], $uid)->toArray();
102         }
103
104         protected function delete(array $request = [])
105         {
106                 self::checkAllowedScope(self::SCOPE_PUSH);
107                 $uid         = self::getCurrentUserID();
108                 $application = self::getCurrentApplication();
109
110                 $ret = Subscription::delete($application['id'], $uid);
111
112                 Logger::info('Subscription deleted', ['result' => $ret, 'application-id' => $application['id'], 'uid' => $uid]);
113
114                 System::jsonExit([]);
115         }
116
117         protected function rawContent(array $request = [])
118         {
119                 self::checkAllowedScope(self::SCOPE_PUSH);
120                 $uid         = self::getCurrentUserID();
121                 $application = self::getCurrentApplication();
122
123                 if (!Subscription::exists($application['id'], $uid)) {
124                         Logger::info('Subscription not found', ['application-id' => $application['id'], 'uid' => $uid]);
125                         DI::mstdnError()->RecordNotFound();
126                 }
127
128                 Logger::info('Fetch subscription', ['application-id' => $application['id'], 'uid' => $uid]);
129
130                 return DI::mstdnSubscription()->createForApplicationIdAndUserId($application['id'], $uid)->toArray();
131         }
132 }