]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Mastodon/Notifications.php
extract "BaseApi::checkDefaults()" method for later usage
[friendica.git] / src / Module / Api / Mastodon / Notifications.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\System;
25 use Friendica\Database\DBA;
26 use Friendica\DI;
27 use Friendica\Model\Contact;
28 use Friendica\Model\Post;
29 use Friendica\Model\Verb;
30 use Friendica\Module\BaseApi;
31 use Friendica\Navigation\Notifications\Entity;
32 use Friendica\Object\Api\Mastodon\Notification;
33 use Friendica\Protocol\Activity;
34
35 /**
36  * @see https://docs.joinmastodon.org/methods/notifications/
37  */
38 class Notifications extends BaseApi
39 {
40         /**
41          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
42          */
43         protected function rawContent(array $request = [])
44         {
45                 self::checkAllowedScope(self::SCOPE_READ);
46                 $uid = self::getCurrentUserID();
47
48                 if (!empty($this->parameters['id'])) {
49                         $id = $this->parameters['id'];
50                         try {
51                                 $notification = DI::notification()->selectOneForUser($uid, ['id' => $id]);
52                                 System::jsonExit(DI::mstdnNotification()->createFromNotification($notification));
53                         } catch (\Exception $e) {
54                                 DI::mstdnError()->RecordNotFound();
55                         }
56                 }
57
58                 $request = $this->getRequest([
59                         'max_id'        => 0,     // Return results older than this ID
60                         'since_id'      => 0,     // Return results newer than this ID
61                         'min_id'        => 0,     // Return results immediately newer than this ID
62                         'limit'         => 20,    // Maximum number of results to return (default 20)
63                         'exclude_types' => [],    // Array of types to exclude (follow, favourite, reblog, mention, poll, follow_request)
64                         'account_id'    => 0,     // Return only notifications received from this account
65                         'with_muted'    => false, // Pleroma extension: return activities by muted (not by blocked!) users.
66                         'count'         => 0,     // Unknown parameter
67                 ], $request);
68
69                 $params = ['order' => ['id' => true]];
70
71                 $condition = ['uid' => $uid, 'seen' => false];
72
73                 if (!empty($request['account_id'])) {
74                         $contact = Contact::getById($request['account_id'], ['url']);
75                         if (!empty($contact['url'])) {
76                                 $condition['url'] = $contact['url'];
77                         }
78                 }
79
80                 if (in_array(Notification::TYPE_INTRODUCTION, $request['exclude_types'])) {
81                         $condition = DBA::mergeConditions($condition,
82                                 ["(`vid` != ? OR `type` != ? OR NOT EXISTS (SELECT `id` FROM `contact` WHERE `id` = `actor-id` AND `pending`))",
83                                 Verb::getID(Activity::FOLLOW), Post\UserNotification::TYPE_NONE]);
84                 }
85
86                 if (in_array(Notification::TYPE_FOLLOW, $request['exclude_types'])) {
87                         $condition = DBA::mergeConditions($condition,
88                                 ["(`vid` != ? OR `type` != ? OR NOT EXISTS (SELECT `id` FROM `contact` WHERE `id` = `actor-id` AND NOT `pending`))",
89                                 Verb::getID(Activity::FOLLOW), Post\UserNotification::TYPE_NONE]);
90                 }
91
92                 if (in_array(Notification::TYPE_LIKE, $request['exclude_types'])) {
93                         $condition = DBA::mergeConditions($condition, [
94                                 "(NOT `vid` IN (?, ?) OR NOT `type` IN (?, ?))",
95                                 Verb::getID(Activity::LIKE), Verb::getID(Activity::DISLIKE),
96                                 Post\UserNotification::TYPE_DIRECT_COMMENT, Post\UserNotification::TYPE_THREAD_COMMENT
97                         ]);
98                 }
99
100                 if (in_array(Notification::TYPE_RESHARE, $request['exclude_types'])) {
101                         $condition = DBA::mergeConditions($condition, [
102                                 "(NOT `vid` IN (?) OR NOT `type` IN (?, ?))",
103                                 Verb::getID(Activity::ANNOUNCE),
104                                 Post\UserNotification::TYPE_DIRECT_COMMENT, Post\UserNotification::TYPE_THREAD_COMMENT
105                         ]);
106                 }
107
108                 if (in_array(Notification::TYPE_MENTION, $request['exclude_types'])) {
109                         $condition = DBA::mergeConditions($condition, [
110                                 "(NOT `vid` IN (?) OR NOT `type` IN (?, ?, ?, ?, ?))",
111                                 Verb::getID(Activity::POST), Post\UserNotification::TYPE_EXPLICIT_TAGGED,
112                                 Post\UserNotification::TYPE_IMPLICIT_TAGGED, Post\UserNotification::TYPE_DIRECT_COMMENT,
113                                 Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT, Post\UserNotification::TYPE_THREAD_COMMENT]);
114                 }
115
116                 if (in_array(Notification::TYPE_POST, $request['exclude_types'])) {
117                         $condition = DBA::mergeConditions($condition, ["(NOT `vid` IN (?) OR NOT `type` IN (?))",
118                                 Verb::getID(Activity::POST), Post\UserNotification::TYPE_SHARED]);
119                 }
120
121                 $mstdnNotifications = [];
122
123                 $Notifications = DI::notification()->selectByBoundaries(
124                         $condition,
125                         $params,
126                         $request['min_id'] ?: $request['since_id'],
127                         $request['max_id'],
128                         $request['limit']
129                 );
130
131                 foreach($Notifications as $Notification) {
132                         try {
133                                 $mstdnNotifications[] = DI::mstdnNotification()->createFromNotification($Notification);
134                                 self::setBoundaries($Notification->id);
135                         } catch (\Exception $e) {
136                                 // Skip this notification
137                         }
138                 }
139
140                 self::setLinkHeader();
141                 System::jsonExit($mstdnNotifications);
142         }
143 }