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