]> git.mxchange.org Git - friendica.git/blob - src/Core/Search.php
Merge pull request #13070 from xundeenergie/fix-share-via
[friendica.git] / src / Core / Search.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\Core;
23
24 use Friendica\DI;
25 use Friendica\Model\Contact;
26 use Friendica\Network\HTTPClient\Client\HttpClientAccept;
27 use Friendica\Network\HTTPException;
28 use Friendica\Object\Search\ContactResult;
29 use Friendica\Object\Search\ResultList;
30 use Friendica\Util\Network;
31 use Friendica\Util\Strings;
32 use GuzzleHttp\Psr7\Uri;
33
34 /**
35  * Specific class to perform searches for different systems. Currently:
36  * - Probe for contacts
37  * - Search in the local directory
38  * - Search in the global directory
39  */
40 class Search
41 {
42         const DEFAULT_DIRECTORY = 'https://dir.friendica.social';
43
44         const TYPE_PEOPLE = 0;
45         const TYPE_FORUM  = 1;
46         const TYPE_ALL    = 2;
47
48         /**
49          * Search a user based on his/her profile address
50          * pattern: @username@domain.tld
51          *
52          * @param string $user The user to search for
53          *
54          * @return ResultList
55          * @throws HTTPException\InternalServerErrorException
56          * @throws \ImagickException
57          */
58         public static function getContactsFromProbe(string $user): ResultList
59         {
60                 $emptyResultList = new ResultList(1, 0, 1);
61
62                 if ((filter_var($user, FILTER_VALIDATE_EMAIL) && Network::isEmailDomainValid($user)) ||
63                     (substr(Strings::normaliseLink($user), 0, 7) == 'http://')) {
64
65                         $user_data = Contact::getByURL($user);
66                         if (empty($user_data)) {
67                                 return $emptyResultList;
68                         }
69
70                         if (!in_array($user_data['network'], Protocol::FEDERATED)) {
71                                 return $emptyResultList;
72                         }
73
74                         $contactDetails = Contact::getByURLForUser($user_data['url'] ?? '', DI::userSession()->getLocalUserId());
75
76                         $result = new ContactResult(
77                                 $user_data['name'] ?? '',
78                                 $user_data['addr'] ?? '',
79                                 ($contactDetails['addr'] ?? '') ?: ($user_data['url'] ?? ''),
80                                 new Uri($user_data['url'] ?? ''),
81                                 $user_data['photo'] ?? '',
82                                 $user_data['network'] ?? '',
83                                 $contactDetails['cid'] ?? 0,
84                                 $user_data['id'] ?? 0,
85                                 $user_data['tags'] ?? ''
86                         );
87
88                         return new ResultList(1, 1, 1, [$result]);
89                 } else {
90                         return $emptyResultList;
91                 }
92         }
93
94         /**
95          * Search in the global directory for occurrences of the search string
96          *
97          * @see https://github.com/friendica/friendica-directory/blob/stable/docs/Protocol.md#search
98          *
99          * @param string $search
100          * @param int    $type specific type of searching
101          * @param int    $page
102          *
103          * @return ResultList
104          * @throws HTTPException\InternalServerErrorException
105          */
106         public static function getContactsFromGlobalDirectory(string $search, int $type = self::TYPE_ALL, int $page = 1): ResultList
107         {
108                 $server = self::getGlobalDirectory();
109
110                 $searchUrl = $server . '/search';
111
112                 switch ($type) {
113                         case self::TYPE_FORUM:
114                                 $searchUrl .= '/forum';
115                                 break;
116                         case self::TYPE_PEOPLE:
117                                 $searchUrl .= '/people';
118                                 break;
119                 }
120                 $searchUrl .= '?q=' . urlencode($search);
121
122                 if ($page > 1) {
123                         $searchUrl .= '&page=' . $page;
124                 }
125
126                 $resultJson = DI::httpClient()->fetch($searchUrl, HttpClientAccept::JSON);
127
128                 $results = json_decode($resultJson, true);
129
130                 $resultList = new ResultList(
131                         ($results['page']         ?? 0) ?: 1,
132                          $results['count']        ?? 0,
133                         ($results['itemsperpage'] ?? 0) ?: 30
134                 );
135
136                 $profiles = $results['profiles'] ?? [];
137
138                 foreach ($profiles as $profile) {
139                         $profile_url = $profile['profile_url'] ?? '';
140                         $contactDetails = Contact::getByURLForUser($profile_url, DI::userSession()->getLocalUserId());
141
142                         $result = new ContactResult(
143                                 $profile['name'] ?? '',
144                                 $profile['addr'] ?? '',
145                                 ($contactDetails['addr'] ?? '') ?: $profile_url,
146                                 new Uri($profile_url),
147                                 $profile['photo'] ?? '',
148                                 Protocol::DFRN,
149                                 $contactDetails['cid'] ?? 0,
150                                 $contactDetails['zid'] ?? 0,
151                                 $profile['tags'] ?? ''
152                         );
153
154                         $resultList->addResult($result);
155                 }
156
157                 return $resultList;
158         }
159
160         /**
161          * Search in the local database for occurrences of the search string
162          *
163          * @param string $search
164          * @param int    $type
165          * @param int    $start
166          * @param int    $itemPage
167          *
168          * @return ResultList
169          * @throws HTTPException\InternalServerErrorException
170          */
171         public static function getContactsFromLocalDirectory(string $search, int $type = self::TYPE_ALL, int $start = 0, int $itemPage = 80): ResultList
172         {
173                 Logger::info('Searching', ['search' => $search, 'type' => $type, 'start' => $start, 'itempage' => $itemPage]);
174
175                 $contacts = Contact::searchByName($search, $type == self::TYPE_FORUM ? 'community' : '', true);
176
177                 $resultList = new ResultList($start, $itemPage, count($contacts));
178
179                 foreach ($contacts as $contact) {
180                         $result = new ContactResult(
181                                 $contact['name'],
182                                 $contact['addr'],
183                                 $contact['addr'] ?: $contact['url'],
184                                 new Uri($contact['url']),
185                                 $contact['photo'],
186                                 $contact['network'],
187                                 0,
188                                 $contact['pid'],
189                                 $contact['keywords']
190                         );
191
192                         $resultList->addResult($result);
193                 }
194
195                 // Add found profiles from the global directory to the local directory
196                 Worker::add(Worker::PRIORITY_LOW, 'SearchDirectory', $search);
197
198                 return $resultList;
199         }
200
201         /**
202          * Searching for contacts for autocompletion
203          *
204          * @param string $search Name or part of a name or nick
205          * @param string $mode   Search mode (e.g. "community")
206          * @param int    $page   Page number (starts at 1)
207          *
208          * @return array with the search results or empty if error or nothing found
209          * @throws HTTPException\InternalServerErrorException
210          */
211         public static function searchContact(string $search, string $mode, int $page = 1): array
212         {
213                 Logger::info('Searching', ['search' => $search, 'mode' => $mode, 'page' => $page]);
214
215                 if (DI::config()->get('system', 'block_public') && !DI::userSession()->isAuthenticated()) {
216                         return [];
217                 }
218
219                 // don't search if search term has less than 2 characters
220                 if (!$search || mb_strlen($search) < 2) {
221                         return [];
222                 }
223
224                 if (substr($search, 0, 1) === '@') {
225                         $search = substr($search, 1);
226                 }
227
228                 // check if searching in the local global contact table is enabled
229                 if (DI::config()->get('system', 'poco_local_search')) {
230                         $return = Contact::searchByName($search, $mode, true);
231                 } else {
232                         $p = $page > 1 ? 'p=' . $page : '';
233                         $curlResult = DI::httpClient()->get(self::getGlobalDirectory() . '/search/people?' . $p . '&q=' . urlencode($search), HttpClientAccept::JSON);
234                         if ($curlResult->isSuccess()) {
235                                 $searchResult = json_decode($curlResult->getBody(), true);
236                                 if (!empty($searchResult['profiles'])) {
237                                         // Converting Directory Search results into contact-looking records
238                                         $return = array_map(function ($result) {
239                                                 static $contactType = [
240                                                         'People'       => Contact::TYPE_PERSON,
241                                                         'Forum'        => Contact::TYPE_COMMUNITY,
242                                                         'Organization' => Contact::TYPE_ORGANISATION,
243                                                         'News'         => Contact::TYPE_NEWS,
244                                                 ];
245
246                                                 return [
247                                                         'name'         => $result['name'],
248                                                         'addr'         => $result['addr'],
249                                                         'url'          => $result['profile_url'],
250                                                         'network'      => Protocol::DFRN,
251                                                         'micro'        => $result['photo'],
252                                                         'contact-type' => $contactType[$result['account_type']],
253                                                 ];
254                                         }, $searchResult['profiles']);
255                                 }
256                         }
257                 }
258
259                 return $return ?? [];
260         }
261
262         /**
263          * Returns the global directory name, used in this node
264          *
265          * @return string
266          */
267         public static function getGlobalDirectory(): string
268         {
269                 return DI::config()->get('system', 'directory', self::DEFAULT_DIRECTORY);
270         }
271
272         /**
273          * Return the search path (either fulltext search or tag search)
274          *
275          * @param string $search
276          *
277          * @return string search path
278          */
279         public static function getSearchPath(string $search): string
280         {
281                 if (substr($search, 0, 1) == '#') {
282                         return 'search?tag=' . urlencode(substr($search, 1));
283                 } else {
284                         return 'search?q=' . urlencode($search);
285                 }
286         }
287 }