]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Mastodon/Search.php
Issue 2657: Mentions will now be recognized by clients
[friendica.git] / src / Module / Api / Mastodon / Search.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, 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\Protocol;
25 use Friendica\Core\Search as CoreSearch;
26 use Friendica\Core\System;
27 use Friendica\Database\DBA;
28 use Friendica\DI;
29 use Friendica\Model\Contact;
30 use Friendica\Model\Post;
31 use Friendica\Model\Tag;
32 use Friendica\Module\BaseApi;
33 use Friendica\Object\Search\ContactResult;
34 use Friendica\Util\Network;
35
36 /**
37  * @see https://docs.joinmastodon.org/methods/search/
38  */
39 class Search extends BaseApi
40 {
41         /**
42          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
43          */
44         protected function rawContent(array $request = [])
45         {
46                 self::checkAllowedScope(self::SCOPE_READ);
47                 $uid = self::getCurrentUserID();
48
49                 $request = $this->getRequest([
50                         'account_id'         => 0,     // If provided, statuses returned will be authored only by this account
51                         'max_id'             => 0,     // Return results older than this id
52                         'min_id'             => 0,     // Return results immediately newer than this id
53                         'type'               => '',    // Enum(accounts, hashtags, statuses)
54                         'exclude_unreviewed' => false, // Filter out unreviewed tags? Defaults to false. Use true when trying to find trending tags.
55                         'q'                  => '',    // The search query
56                         'resolve'            => false, // Attempt WebFinger lookup. Defaults to false.
57                         'limit'              => 20,    // Maximum number of results to load, per type. Defaults to 20. Max 40.
58                         'offset'             => 0,     // Offset in search results. Used for pagination. Defaults to 0.
59                         'following'          => false, // Only include accounts that the user is following. Defaults to false.
60                 ], $request);
61
62                 if (empty($request['q'])) {
63                         DI::mstdnError()->UnprocessableEntity();
64                 }
65
66                 $limit = min($request['limit'], 40);
67
68                 $result = ['accounts' => [], 'statuses' => [], 'hashtags' => []];
69
70                 if (empty($request['type']) || ($request['type'] == 'accounts')) {
71                         $result['accounts'] = self::searchAccounts($uid, $request['q'], $request['resolve'], $limit, $request['offset'], $request['following']);
72                 }
73                 if ((empty($request['type']) || ($request['type'] == 'statuses')) && (strpos($request['q'], '@') == false)) {
74                         $result['statuses'] = self::searchStatuses($uid, $request['q'], $request['account_id'], $request['max_id'], $request['min_id'], $limit, $request['offset']);
75                 }
76                 if ((empty($request['type']) || ($request['type'] == 'hashtags')) && (strpos($request['q'], '@') == false)) {
77                         $result['hashtags'] = self::searchHashtags($request['q'], $request['exclude_unreviewed'], $limit, $request['offset'], $this->parameters['version']);
78                 }
79
80                 System::jsonExit($result);
81         }
82
83         private static function searchAccounts(int $uid, string $q, bool $resolve, int $limit, int $offset, bool $following)
84         {
85                 $accounts = [];
86
87                 if ((strrpos($q, '@') > 0) || Network::isValidHttpUrl($q)) {
88                         $id = Contact::getIdForURL($q, 0, $resolve ? null : false);
89
90                         if (!empty($id)) {
91                                 $accounts[] = DI::mstdnAccount()->createFromContactId($id, $uid);
92                         }
93                 }
94
95                 if (empty($accounts)) {
96                         $contacts = Contact::searchByName($q, '', $following ? $uid : 0, $limit, $offset);
97                         foreach ($contacts as $contact) {
98                                 $accounts[] = DI::mstdnAccount()->createFromContactId($contact['id'], $uid);
99                         }
100                         DBA::close($contacts);
101                 }
102
103                 return $accounts;
104         }
105
106         private static function searchStatuses(int $uid, string $q, string $account_id, int $max_id, int $min_id, int $limit, int $offset)
107         {
108                 $params = ['order' => ['uri-id' => true], 'limit' => [$offset, $limit]];
109
110                 if (substr($q, 0, 1) == '#') {
111                         $condition = ["`name` = ? AND (`uid` = ? OR (`uid` = ? AND NOT `global`))
112                                 AND (`network` IN (?, ?, ?, ?) OR (`uid` = ? AND `uid` != ?))",
113                                 substr($q, 1), 0, $uid, Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, $uid, 0];
114                         $table = 'tag-search-view';
115                 } else {
116                         $condition = ["`uri-id` IN (SELECT `uri-id` FROM `post-content` WHERE MATCH (`title`, `content-warning`, `body`) AGAINST (? IN BOOLEAN MODE))
117                                 AND (`uid` = ? OR (`uid` = ? AND NOT `global`)) AND (`network` IN (?, ?, ?, ?) OR (`uid` = ? AND `uid` != ?))",
118                                 str_replace('@', ' ', $q), 0, $uid, Protocol::ACTIVITYPUB, Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, $uid, 0];
119                         $table = 'post-user-view';
120                 }
121
122                 if (!empty($max_id)) {
123                         $condition = DBA::mergeConditions($condition, ["`uri-id` < ?", $max_id]);
124                 }
125
126                 if (!empty($since_id)) {
127                         $condition = DBA::mergeConditions($condition, ["`uri-id` > ?", $since_id]);
128                 }
129
130                 if (!empty($min_id)) {
131                         $condition = DBA::mergeConditions($condition, ["`uri-id` > ?", $min_id]);
132
133                         $params['order'] = ['uri-id'];
134                 }
135
136                 $items = DBA::select($table, ['uri-id'], $condition, $params);
137
138                 $statuses = [];
139                 while ($item = Post::fetch($items)) {
140                         self::setBoundaries($item['uri-id']);
141                         $statuses[] = DI::mstdnStatus()->createFromUriId($item['uri-id'], $uid);
142                 }
143                 DBA::close($items);
144
145                 if (!empty($min_id)) {
146                         $statuses = array_reverse($statuses);
147                 }
148
149                 self::setLinkHeader();
150                 return $statuses;
151         }
152
153         private static function searchHashtags(string $q, bool $exclude_unreviewed, int $limit, int $offset, int $version)
154         {
155                 $q = ltrim($q, '#');
156
157                 $params = ['order' => ['name'], 'limit' => [$offset, $limit]];
158
159                 $condition = ["`id` IN (SELECT `tid` FROM `post-tag` WHERE `type` = ?) AND `name` LIKE ?", Tag::HASHTAG, $q . '%'];
160
161                 $tags = DBA::select('tag', ['name'], $condition, $params);
162
163                 $hashtags = [];
164                 foreach ($tags as $tag) {
165                         if ($version == 1) {
166                                 $hashtags[] = $tag['name'];
167                         } else {
168                                 $hashtags[] = new \Friendica\Object\Api\Mastodon\Tag(DI::baseUrl(), $tag);
169                         }
170                 }
171
172                 return $hashtags;
173         }
174 }