]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Twitter/Favorites.php
Changes:
[friendica.git] / src / Module / Api / Twitter / Favorites.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2024, 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\Twitter;
23
24 use Friendica\Core\Logger;
25 use Friendica\Database\DBA;
26 use Friendica\Model\Item;
27 use Friendica\Module\BaseApi;
28 use Friendica\DI;
29 use Friendica\Model\Contact;
30 use Friendica\Model\Post;
31
32 /**
33  * Returns the most recent mentions.
34  *
35  * @see http://developer.twitter.com/doc/get/statuses/mentions
36  */
37 class Favorites extends BaseApi
38 {
39         protected function rawContent(array $request = [])
40         {
41                 $this->checkAllowedScope(BaseApi::SCOPE_READ);
42                 $uid = BaseApi::getCurrentUserID();
43
44                 // in friendica starred item are private
45                 // return favorites only for self
46                 Logger::info(BaseApi::LOG_PREFIX . 'for {self}', ['module' => 'api', 'action' => 'favorites']);
47
48                 // params
49                 $count            = $this->getRequestValue($request, 'count', 20, 1, 100);
50                 $page             = $this->getRequestValue($request, 'page', 1, 1);
51                 $since_id         = $this->getRequestValue($request, 'since_id', 0, 0);
52                 $max_id           = $this->getRequestValue($request, 'max_id', 0, 0);
53                 $include_entities = $this->getRequestValue($request, 'include_entities', false);
54
55                 $start = max(0, ($page - 1) * $count);
56
57                 $condition = ["`uid` = ? AND `gravity` IN (?, ?) AND `uri-id` > ? AND `starred`",
58                         $uid, Item::GRAVITY_PARENT, Item::GRAVITY_COMMENT, $since_id];
59
60                 $params = ['order' => ['uri-id' => true], 'limit' => [$start, $count]];
61
62                 if ($max_id > 0) {
63                         $condition[0] .= " AND `uri-id` <= ?";
64                         $condition[] = $max_id;
65                 }
66
67                 $statuses = Post::selectForUser($uid, [], $condition, $params);
68
69                 $ret = [];
70                 while ($status = DBA::fetch($statuses)) {
71                         $ret[] = DI::twitterStatus()->createFromUriId($status['uri-id'], $status['uid'], $include_entities)->toArray();
72                 }
73                 DBA::close($statuses);
74
75                 $this->response->addFormattedContent('statuses', ['status' => $ret], $this->parameters['extension'] ?? null, Contact::getPublicIdByUserId($uid));
76         }
77 }