]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Mastodon/Trends/Statuses.php
cf287e59c3307d6909196be60b5711a797b5dfe3
[friendica.git] / src / Module / Api / Mastodon / Trends / Statuses.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\Trends;
23
24 use Friendica\Core\Logger;
25 use Friendica\Core\Protocol;
26 use Friendica\Core\System;
27 use Friendica\Database\DBA;
28 use Friendica\DI;
29 use Friendica\Model\Post;
30 use Friendica\Module\BaseApi;
31 use Friendica\Util\DateTimeFormat;
32
33 /**
34  * @see https://docs.joinmastodon.org/methods/trends/#statuses
35  */
36 class Statuses extends BaseApi
37 {
38         /**
39          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
40          */
41         protected function rawContent(array $request = [])
42         {
43                 $uid = self::getCurrentUserID();
44
45                 $request = $this->getRequest([
46                         'limit' => 10, // Maximum number of results to return. Defaults to 10.
47                 ], $request);
48
49                 $condition = ["NOT `private` AND `commented` > ? AND `created` > ?", DateTimeFormat::utc('now -1 day'), DateTimeFormat::utc('now -1 week')];
50                 $condition = DBA::mergeConditions($condition, ['network' => Protocol::FEDERATED]);
51
52                 $display_quotes = self::appSupportsQuotes();
53
54                 $trending = [];
55                 $statuses = Post::selectPostThread(['uri-id'], $condition, ['limit' => $request['limit'], 'order' => ['total-actors' => true]]);
56                 while ($status = Post::fetch($statuses)) {
57                         try {
58                                 $trending[] = DI::mstdnStatus()->createFromUriId($status['uri-id'], $uid, $display_quotes);
59                         } catch (\Throwable $th) {
60                                 Logger::info('Post not fetchable', ['uri-id' => $status['uri-id'], 'uid' => $uid, 'error' => $th]);
61                         }
62                 }
63                 DBA::close($statuses);
64
65                 System::jsonExit($trending);
66         }
67 }