]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Mastodon/PushSubscription.php
Some more API functions moved
[friendica.git] / src / Module / Api / Mastodon / PushSubscription.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, 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         public static function post(array $parameters = [])
37         {
38                 self::checkAllowedScope(self::SCOPE_PUSH);
39                 $uid         = self::getCurrentUserID();
40                 $application = self::getCurrentApplication();
41
42                 $request = self::getRequest([
43                         'subscription' => [],
44                         'data'         => [],
45                 ]);
46
47                 $subscription = [
48                         'application-id'                => $application['id'],
49                         'uid'                           => $uid,
50                         'endpoint'                      => $request['subscription']['endpoint'] ?? '',
51                         'pubkey'                        => $request['subscription']['keys']['p256dh'] ?? '',
52                         'secret'                        => $request['subscription']['keys']['auth'] ?? '',
53                         Notification::TYPE_FOLLOW       => $request['data']['alerts'][Notification::TYPE_FOLLOW] ?? false,
54                         Notification::TYPE_LIKE         => $request['data']['alerts'][Notification::TYPE_LIKE] ?? false,
55                         Notification::TYPE_RESHARE      => $request['data']['alerts'][Notification::TYPE_RESHARE] ?? false,
56                         Notification::TYPE_MENTION      => $request['data']['alerts'][Notification::TYPE_MENTION] ?? false,
57                         Notification::TYPE_POLL         => $request['data']['alerts'][Notification::TYPE_POLL] ?? false,
58                         Notification::TYPE_INTRODUCTION => $request['data']['alerts'][Notification::TYPE_INTRODUCTION] ?? false,
59                         Notification::TYPE_POST         => $request['data']['alerts'][Notification::TYPE_POST] ?? false,
60                 ];
61
62                 $ret = Subscription::replace($subscription);
63
64                 Logger::info('Subscription stored', ['ret' => $ret, 'subscription' => $subscription]);
65
66                 return DI::mstdnSubscription()->createForApplicationIdAndUserId($application['id'], $uid)->toArray();
67         }
68
69         public static function put(array $parameters = [])
70         {
71                 self::checkAllowedScope(self::SCOPE_PUSH);
72                 $uid         = self::getCurrentUserID();
73                 $application = self::getCurrentApplication();
74
75                 $request = self::getRequest([
76                         'data' => [],
77                 ]);
78
79                 $subscription = Subscription::select($application['id'], $uid, ['id']);
80                 if (empty($subscription)) {
81                         Logger::info('Subscription not found', ['application-id' => $application['id'], 'uid' => $uid]);
82                         DI::mstdnError()->RecordNotFound();
83                 }
84
85                 $fields = [
86                         Notification::TYPE_FOLLOW       => $request['data']['alerts'][Notification::TYPE_FOLLOW] ?? false,
87                         Notification::TYPE_LIKE         => $request['data']['alerts'][Notification::TYPE_LIKE] ?? false,
88                         Notification::TYPE_RESHARE      => $request['data']['alerts'][Notification::TYPE_RESHARE] ?? false,
89                         Notification::TYPE_MENTION      => $request['data']['alerts'][Notification::TYPE_MENTION] ?? false,
90                         Notification::TYPE_POLL         => $request['data']['alerts'][Notification::TYPE_POLL] ?? false,
91                         Notification::TYPE_INTRODUCTION => $request['data']['alerts'][Notification::TYPE_INTRODUCTION] ?? false,
92                         Notification::TYPE_POST         => $request['data']['alerts'][Notification::TYPE_POST] ?? false,
93                 ];
94
95                 $ret = Subscription::update($application['id'], $uid, $fields);
96
97                 Logger::info('Subscription updated', ['result' => $ret, 'application-id' => $application['id'], 'uid' => $uid, 'fields' => $fields]);
98
99                 return DI::mstdnSubscription()->createForApplicationIdAndUserId($application['id'], $uid)->toArray();
100         }
101
102         public static function delete(array $parameters = [])
103         {
104                 self::checkAllowedScope(self::SCOPE_PUSH);
105                 $uid         = self::getCurrentUserID();
106                 $application = self::getCurrentApplication();
107
108                 $ret = Subscription::delete($application['id'], $uid);
109
110                 Logger::info('Subscription deleted', ['result' => $ret, 'application-id' => $application['id'], 'uid' => $uid]);
111
112                 System::jsonExit([]);
113         }
114
115         public static function rawContent(array $parameters = [])
116         {
117                 self::checkAllowedScope(self::SCOPE_PUSH);
118                 $uid         = self::getCurrentUserID();
119                 $application = self::getCurrentApplication();
120
121                 if (!Subscription::exists($application['id'], $uid)) {
122                         Logger::info('Subscription not found', ['application-id' => $application['id'], 'uid' => $uid]);
123                         DI::mstdnError()->RecordNotFound();
124                 }
125
126                 Logger::info('Fetch subscription', ['application-id' => $application['id'], 'uid' => $uid]);
127
128                 return DI::mstdnSubscription()->createForApplicationIdAndUserId($application['id'], $uid)->toArray();
129         }
130 }