]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Mastodon/Conversations.php
Merge pull request #10362 from tobiasd/2021.06-CHANGELOG
[friendica.git] / src / Module / Api / Mastodon / Conversations.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\Module\BaseApi;
28
29 /**
30  * @see https://docs.joinmastodon.org/methods/timelines/conversations/
31  */
32 class Conversations extends BaseApi
33 {
34         public static function delete(array $parameters = [])
35         {
36                 self::checkAllowedScope(self::SCOPE_WRITE);
37                 $uid = self::getCurrentUserID();
38
39                 if (!empty($parameters['id'])) {
40                         DI::mstdnError()->UnprocessableEntity();
41                 }
42
43                 DBA::delete('conv', ['id' => $parameters['id'], 'uid' => $uid]);
44                 DBA::delete('mail', ['convid' => $parameters['id'], 'uid' => $uid]);
45
46                 System::jsonExit([]);
47         }
48
49         /**
50          * @param array $parameters
51          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
52          */
53         public static function rawContent(array $parameters = [])
54         {
55                 self::checkAllowedScope(self::SCOPE_READ);
56                 $uid = self::getCurrentUserID();
57
58                 $request = self::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                 ]);
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                 while ($conv = DBA::fetch($convs)) {
88                         self::setBoundaries($conv['id']);
89                         $conversations[] = DI::mstdnConversation()->CreateFromConvId($conv['id']);
90                 }
91
92                 DBA::close($convs);
93
94                 if (!empty($request['min_id'])) {
95                         array_reverse($conversations);
96                 }
97
98                 self::setLinkHeader();
99                 System::jsonExit($conversations);
100         }
101 }