]> git.mxchange.org Git - friendica.git/blob - src/Core/Search.php
Merge pull request #7996 from annando/poco-cleanup
[friendica.git] / src / Core / Search.php
1 <?php
2
3 namespace Friendica\Core;
4
5 use Friendica\BaseObject;
6 use Friendica\Database\DBA;
7 use Friendica\Model\Contact;
8 use Friendica\Model\GContact;
9 use Friendica\Network\HTTPException;
10 use Friendica\Network\Probe;
11 use Friendica\Object\Search\ContactResult;
12 use Friendica\Object\Search\ResultList;
13 use Friendica\Protocol\PortableContact;
14 use Friendica\Util\Network;
15 use Friendica\Util\Strings;
16
17 /**
18  * Specific class to perform searches for different systems. Currently:
19  * - Probe for contacts
20  * - Search in the local directory
21  * - Search in the global directory
22  */
23 class Search extends BaseObject
24 {
25         const DEFAULT_DIRECTORY = 'https://dir.friendica.social';
26
27         const TYPE_PEOPLE = 0;
28         const TYPE_FORUM  = 1;
29         const TYPE_ALL    = 2;
30
31         /**
32          * Search a user based on his/her profile address
33          * pattern: @username@domain.tld
34          *
35          * @param string $user The user to search for
36          *
37          * @return ResultList
38          * @throws HTTPException\InternalServerErrorException
39          * @throws \ImagickException
40          */
41         public static function getContactsFromProbe($user)
42         {
43                 $emptyResultList = new ResultList(1, 0, 1);
44
45                 if ((filter_var($user, FILTER_VALIDATE_EMAIL) && Network::isEmailDomainValid($user)) ||
46                     (substr(Strings::normaliseLink($user), 0, 7) == "http://")) {
47
48                         /// @todo Possibly use "getIdForURL" instead?
49                         $user_data = Probe::uri($user);
50                         if (empty($user_data)) {
51                                 return $emptyResultList;
52                         }
53
54                         if (!in_array($user_data["network"], Protocol::FEDERATED)) {
55                                 return $emptyResultList;
56                         }
57
58                         // Ensure that we do have a contact entry
59                         Contact::getIdForURL($user_data['url'] ?? '');
60
61                         $contactDetails = Contact::getDetailsByURL($user_data['url'] ?? '', local_user());
62
63                         $result = new ContactResult(
64                                 $user_data['name'] ?? '',
65                                 $user_data['addr'] ?? '',
66                                 ($contactDetails['addr'] ?? '') ?: ($user_data['url'] ?? ''),
67                                 $user_data['url'] ?? '',
68                                 $user_data['photo'] ?? '',
69                                 $user_data['network'] ?? '',
70                                 $contactDetails['id'] ?? 0,
71                                 0,
72                                 $user_data['tags'] ?? ''
73                         );
74
75                         return new ResultList(1, 1, 1, [$result]);
76                 } else {
77                         return $emptyResultList;
78                 }
79         }
80
81         /**
82          * Search in the global directory for occurrences of the search string
83          *
84          * @see https://github.com/friendica/friendica-directory/blob/master/docs/Protocol.md#search
85          *
86          * @param string $search
87          * @param int    $type specific type of searching
88          * @param int    $page
89          *
90          * @return ResultList
91          * @throws HTTPException\InternalServerErrorException
92          */
93         public static function getContactsFromGlobalDirectory($search, $type = self::TYPE_ALL, $page = 1)
94         {
95                 $config = self::getApp()->getConfig();
96                 $server = $config->get('system', 'directory', self::DEFAULT_DIRECTORY);
97
98                 $searchUrl = $server . '/search';
99
100                 switch ($type) {
101                         case self::TYPE_FORUM:
102                                 $searchUrl .= '/forum';
103                                 break;
104                         case self::TYPE_PEOPLE:
105                                 $searchUrl .= '/people';
106                                 break;
107                 }
108                 $searchUrl .= '?q=' . urlencode($search);
109
110                 if ($page > 1) {
111                         $searchUrl .= '&page=' . $page;
112                 }
113
114                 $resultJson = Network::fetchUrl($searchUrl, false, 0, 'application/json');
115
116                 $results = json_decode($resultJson, true);
117
118                 $resultList = new ResultList(
119                         ($results['page']         ?? 0) ?: 1,
120                          $results['count']        ?? 0,
121                         ($results['itemsperpage'] ?? 0) ?: 30
122                 );
123
124                 $profiles = $results['profiles'] ?? [];
125
126                 foreach ($profiles as $profile) {
127                         $profile_url = $profile['profile_url'] ?? '';
128                         $contactDetails = Contact::getDetailsByURL($profile_url, local_user());
129
130                         $result = new ContactResult(
131                                 $profile['name'] ?? '',
132                                 $profile['addr'] ?? '',
133                                 ($contactDetails['addr'] ?? '') ?: $profile_url,
134                                 $profile_url,
135                                 $profile['photo'] ?? '',
136                                 Protocol::DFRN,
137                                 $contactDetails['cid'] ?? 0,
138                                 0,
139                                 $profile['tags'] ?? ''
140                         );
141
142                         $resultList->addResult($result);
143                 }
144
145                 return $resultList;
146         }
147
148         /**
149          * Search in the local database for occurrences of the search string
150          *
151          * @param string $search
152          * @param int    $type
153          * @param int    $start
154          * @param int    $itemPage
155          *
156          * @return ResultList
157          * @throws HTTPException\InternalServerErrorException
158          */
159         public static function getContactsFromLocalDirectory($search, $type = self::TYPE_ALL, $start = 0, $itemPage = 80)
160         {
161                 $config = self::getApp()->getConfig();
162
163                 $diaspora = $config->get('system', 'diaspora_enabled') ? Protocol::DIASPORA : Protocol::DFRN;
164                 $ostatus  = !$config->get('system', 'ostatus_disabled') ? Protocol::OSTATUS : Protocol::DFRN;
165
166                 $wildcard = Strings::escapeHtml('%' . $search . '%');
167
168                 $count = DBA::count('gcontact', [
169                         'NOT `hide`
170                         AND `network` IN (?, ?, ?, ?)
171                         AND ((`last_contact` >= `last_failure`) OR (`updated` >= `last_failure`))
172                         AND (`url` LIKE ? OR `name` LIKE ? OR `location` LIKE ? 
173                                 OR `addr` LIKE ? OR `about` LIKE ? OR `keywords` LIKE ?)
174                         AND `community` = ?',
175                         Protocol::ACTIVITYPUB, Protocol::DFRN, $ostatus, $diaspora,
176                         $wildcard, $wildcard, $wildcard,
177                         $wildcard, $wildcard, $wildcard,
178                         ($type === self::TYPE_FORUM),
179                 ]);
180
181                 $resultList = new ResultList($start, $itemPage, $count);
182
183                 if (empty($count)) {
184                         return $resultList;
185                 }
186
187                 $data = DBA::select('gcontact', ['nurl'], [
188                         'NOT `hide`
189                         AND `network` IN (?, ?, ?, ?)
190                         AND ((`last_contact` >= `last_failure`) OR (`updated` >= `last_failure`))
191                         AND (`url` LIKE ? OR `name` LIKE ? OR `location` LIKE ? 
192                                 OR `addr` LIKE ? OR `about` LIKE ? OR `keywords` LIKE ?)
193                         AND `community` = ?',
194                         Protocol::ACTIVITYPUB, Protocol::DFRN, $ostatus, $diaspora,
195                         $wildcard, $wildcard, $wildcard,
196                         $wildcard, $wildcard, $wildcard,
197                         ($type === self::TYPE_FORUM),
198                 ], [
199                         'group_by' => ['nurl', 'updated'],
200                         'limit'    => [$start, $itemPage],
201                         'order'    => ['updated' => 'DESC']
202                 ]);
203
204                 if (!DBA::isResult($data)) {
205                         return $resultList;
206                 }
207
208                 while ($row = DBA::fetch($data)) {
209                         if (PortableContact::alternateOStatusUrl($row["nurl"])) {
210                                 continue;
211                         }
212
213                         $urlParts = parse_url($row["nurl"]);
214
215                         // Ignore results that look strange.
216                         // For historic reasons the gcontact table does contain some garbage.
217                         if (!empty($urlParts['query']) || !empty($urlParts['fragment'])) {
218                                 continue;
219                         }
220
221                         $contact = Contact::getDetailsByURL($row["nurl"], local_user());
222
223                         if ($contact["name"] == "") {
224                                 $contact["name"] = end(explode("/", $urlParts["path"]));
225                         }
226
227                         $result = new ContactResult(
228                                 $contact["name"],
229                                 $contact["addr"],
230                                 $contact["addr"],
231                                 $contact["url"],
232                                 $contact["photo"],
233                                 $contact["network"],
234                                 $contact["cid"],
235                                 $contact["zid"],
236                                 $contact["keywords"]
237                         );
238
239                         $resultList->addResult($result);
240                 }
241
242                 DBA::close($data);
243
244                 // Add found profiles from the global directory to the local directory
245                 Worker::add(PRIORITY_LOW, 'SearchDirectory', $search);
246
247                 return $resultList;
248         }
249
250         /**
251          * Searching for global contacts for autocompletion
252          *
253          * @brief Searching for global contacts for autocompletion
254          * @param string $search Name or part of a name or nick
255          * @param string $mode   Search mode (e.g. "community")
256          * @param int    $page   Page number (starts at 1)
257          * @return array with the search results
258          * @throws HTTPException\InternalServerErrorException
259          */
260         public static function searchGlobalContact($search, $mode, int $page = 1)
261         {
262                 if (Config::get('system', 'block_public') && !Session::isAuthenticated()) {
263                         return [];
264                 }
265
266                 // don't search if search term has less than 2 characters
267                 if (!$search || mb_strlen($search) < 2) {
268                         return [];
269                 }
270
271                 if (substr($search, 0, 1) === '@') {
272                         $search = substr($search, 1);
273                 }
274
275                 // check if searching in the local global contact table is enabled
276                 if (Config::get('system', 'poco_local_search')) {
277                         $return = GContact::searchByName($search, $mode);
278                 } else {
279                         $p = $page > 1 ? 'p=' . $page : '';
280                         $curlResult = Network::curl(get_server() . '/search/people?' . $p . '&q=' . urlencode($search), false, ['accept_content' => 'application/json']);
281                         if ($curlResult->isSuccess()) {
282                                 $searchResult = json_decode($curlResult->getBody(), true);
283                                 if (!empty($searchResult['profiles'])) {
284                                         $return = $searchResult['profiles'];
285                                 }
286                         }
287                 }
288
289                 return $return ?? [];
290         }
291 }