]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Mastodon/Notifications.php
Remove extraneous, unused, non-standard 'count' parameter from request list
[friendica.git] / src / Module / Api / Mastodon / Notifications.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\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, self::appSupportsQuotes()));
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                         'include_all'   => false  // Include dismissed and undismissed
67                 ], $request);
68
69                 $params = ['order' => ['id' => true]];
70
71                 $condition = ['uid' => $uid, 'dismissed' => false];
72                 if ($request['include_all']) {
73                         $condition = ['uid' => $uid];
74                 }
75
76                 if (!empty($request['account_id'])) {
77                         $contact = Contact::getById($request['account_id'], ['url']);
78                         if (!empty($contact['url'])) {
79                                 $condition['url'] = $contact['url'];
80                         }
81                 }
82
83                 if (in_array(Notification::TYPE_INTRODUCTION, $request['exclude_types'])) {
84                         $condition = DBA::mergeConditions($condition,
85                                 ["(`vid` != ? OR `type` != ? OR NOT `actor-id` IN (SELECT `id` FROM `contact` WHERE `pending`))",
86                                 Verb::getID(Activity::FOLLOW), Post\UserNotification::TYPE_NONE]);
87                 }
88
89                 if (in_array(Notification::TYPE_FOLLOW, $request['exclude_types'])) {
90                         $condition = DBA::mergeConditions($condition,
91                                 ["(`vid` != ? OR `type` != ? OR NOT `actor-id` IN (SELECT `id` FROM `contact` WHERE NOT `pending`))",
92                                 Verb::getID(Activity::FOLLOW), Post\UserNotification::TYPE_NONE]);
93                 }
94
95                 if (in_array(Notification::TYPE_LIKE, $request['exclude_types'])) {
96                         $condition = DBA::mergeConditions($condition, [
97                                 "(NOT `vid` IN (?, ?) OR NOT `type` IN (?, ?))",
98                                 Verb::getID(Activity::LIKE), Verb::getID(Activity::DISLIKE),
99                                 Post\UserNotification::TYPE_DIRECT_COMMENT, Post\UserNotification::TYPE_THREAD_COMMENT
100                         ]);
101                 }
102
103                 if (in_array(Notification::TYPE_RESHARE, $request['exclude_types'])) {
104                         $condition = DBA::mergeConditions($condition, [
105                                 "(NOT `vid` IN (?) OR NOT `type` IN (?, ?))",
106                                 Verb::getID(Activity::ANNOUNCE),
107                                 Post\UserNotification::TYPE_DIRECT_COMMENT, Post\UserNotification::TYPE_THREAD_COMMENT
108                         ]);
109                 }
110
111                 if (in_array(Notification::TYPE_MENTION, $request['exclude_types'])) {
112                         $condition = DBA::mergeConditions($condition, [
113                                 "(NOT `vid` IN (?) OR NOT `type` IN (?, ?, ?, ?, ?))",
114                                 Verb::getID(Activity::POST), Post\UserNotification::TYPE_EXPLICIT_TAGGED,
115                                 Post\UserNotification::TYPE_IMPLICIT_TAGGED, Post\UserNotification::TYPE_DIRECT_COMMENT,
116                                 Post\UserNotification::TYPE_DIRECT_THREAD_COMMENT, Post\UserNotification::TYPE_THREAD_COMMENT]);
117                 }
118
119                 if (in_array(Notification::TYPE_POST, $request['exclude_types'])) {
120                         $condition = DBA::mergeConditions($condition, ["(NOT `vid` IN (?) OR NOT `type` IN (?))",
121                                 Verb::getID(Activity::POST), Post\UserNotification::TYPE_SHARED]);
122                 }
123
124                 $mstdnNotifications = [];
125
126                 $Notifications = DI::notification()->selectByBoundaries(
127                         $condition,
128                         $params,
129                         $request['min_id'] ?: $request['since_id'],
130                         $request['max_id'],
131                         $request['limit']
132                 );
133
134                 foreach($Notifications as $Notification) {
135                         try {
136                                 $mstdnNotifications[] = DI::mstdnNotification()->createFromNotification($Notification, self::appSupportsQuotes());
137                                 self::setBoundaries($Notification->id);
138                         } catch (\Exception $e) {
139                                 // Skip this notification
140                         }
141                 }
142
143                 self::setLinkHeader();
144                 System::jsonExit($mstdnNotifications);
145         }
146 }