]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Mastodon/Favourited.php
dfbaa0ded55db6c0b375e2f9795dc427b1999ca9
[friendica.git] / src / Module / Api / Mastodon / Favourited.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\Item;
28 use Friendica\Model\Post;
29 use Friendica\Module\BaseApi;
30 use Friendica\Network\HTTPException;
31 use Friendica\Protocol\Activity;
32
33 /**
34  * @see https://docs.joinmastodon.org/methods/accounts/favourites/
35  */
36 class Favourited extends BaseApi
37 {
38         /**
39          * @throws HTTPException\InternalServerErrorException
40          */
41         protected function rawContent(array $request = [])
42         {
43                 self::checkAllowedScope(self::SCOPE_READ);
44                 $uid = self::getCurrentUserID();
45
46                 $request = $this->getRequest([
47                         'limit'      => 20,    // Maximum number of results to return. Defaults to 20.
48                         'max_id'     => 0,     // Return results older than id
49                         'since_id'   => 0,     // Return results newer than this ID. Use HTTP Link header to paginate.
50                         'min_id'     => 0,     // Return results immediately newer than id
51                         'with_muted' => false, // Pleroma extension: return activities by muted (not by blocked!) users.
52                 ], $request);
53
54                 $params = ['order' => ['thr-parent-id' => true], 'limit' => $request['limit']];
55
56                 $condition = ['gravity' => Item::GRAVITY_ACTIVITY, 'origin' => true, 'verb' => Activity::LIKE, 'uid' => $uid];
57
58                 if (!empty($request['max_id'])) {
59                         $condition = DBA::mergeConditions($condition, ["`thr-parent-id` < ?", $request['max_id']]);
60                 }
61
62                 if (!empty($request['since_id'])) {
63                         $condition = DBA::mergeConditions($condition, ["`thr-parent-id` > ?", $request['since_id']]);
64                 }
65
66                 if (!empty($request['min_id'])) {
67                         $condition = DBA::mergeConditions($condition, ["`thr-parent-id` > ?", $request['min_id']]);
68
69                         $params['order'] = ['thr-parent-id'];
70                 }
71
72                 $items = Post::selectForUser($uid, ['thr-parent-id'], $condition, $params);
73
74                 $display_quotes = self::appSupportsQuotes();
75
76                 $statuses = [];
77                 while ($item = Post::fetch($items)) {
78                         self::setBoundaries($item['thr-parent-id']);
79                         $statuses[] = DI::mstdnStatus()->createFromUriId($item['thr-parent-id'], $uid, $display_quotes);
80                 }
81                 DBA::close($items);
82
83                 if (!empty($request['min_id'])) {
84                         $statuses = array_reverse($statuses);
85                 }
86
87                 self::setLinkHeader();
88                 System::jsonExit($statuses);
89         }
90 }