]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Mastodon/Conversations.php
c45144c98d31f2f66766befdd54c2b121c3dad53
[friendica.git] / src / Module / Api / Mastodon / Conversations.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\Module\BaseApi;
28 use Friendica\Network\HTTPException\NotFoundException;
29
30 /**
31  * @see https://docs.joinmastodon.org/methods/timelines/conversations/
32  */
33 class Conversations extends BaseApi
34 {
35         protected function delete(array $request = [])
36         {
37                 $this->checkAllowedScope(self::SCOPE_WRITE);
38                 $uid = self::getCurrentUserID();
39
40                 if (!empty($this->parameters['id'])) {
41                         DI::mstdnError()->UnprocessableEntity();
42                 }
43
44                 DBA::delete('conv', ['id' => $this->parameters['id'], 'uid' => $uid]);
45                 DBA::delete('mail', ['convid' => $this->parameters['id'], 'uid' => $uid]);
46
47                 $this->jsonExit([]);
48         }
49
50         /**
51          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
52          */
53         protected function rawContent(array $request = [])
54         {
55                 $this->checkAllowedScope(self::SCOPE_READ);
56                 $uid = self::getCurrentUserID();
57
58                 $request = $this->getRequest([
59                         'limit'    => 20, // Maximum number of results. Defaults to 20. Max 40.
60                         'max_id'   => 0,  // Return results older than this ID. Use HTTP Link header to paginate.
61                         'since_id' => 0,  // Return results newer than this ID. Use HTTP Link header to paginate.
62                         'min_id'   => 0,  // Return results immediately newer than this ID. Use HTTP Link header to paginate.
63                 ], $request);
64
65                 $params = ['order' => ['id' => true], 'limit' => $request['limit']];
66
67                 $condition = ['uid' => $uid];
68
69                 if (!empty($request['max_id'])) {
70                         $condition = DBA::mergeConditions($condition, ["`id` < ?", $request['max_id']]);
71                 }
72
73                 if (!empty($request['since_id'])) {
74                         $condition = DBA::mergeConditions($condition, ["`id` > ?", $request['since_id']]);
75                 }
76
77                 if (!empty($request['min_id'])) {
78                         $condition = DBA::mergeConditions($condition, ["`id` > ?", $request['min_id']]);
79
80                         $params['order'] = ['id'];
81                 }
82
83                 $convs = DBA::select('conv', ['id'], $condition, $params);
84
85                 $conversations = [];
86
87                 try {
88                         while ($conv = DBA::fetch($convs)) {
89                                 self::setBoundaries($conv['id']);
90                                 $conversations[] = DI::mstdnConversation()->createFromConvId($conv['id']);
91                         }
92                 } catch (NotFoundException $e) {
93                         $this->logErrorAndJsonExit(404, $this->errorFactory->RecordNotFound());
94                 }
95
96                 DBA::close($convs);
97
98                 if (!empty($request['min_id'])) {
99                         $conversations = array_reverse($conversations);
100                 }
101
102                 self::setLinkHeader();
103                 $this->jsonExit($conversations);
104         }
105 }