]> git.mxchange.org Git - friendica.git/blob - src/Module/Search/Index.php
Changed scope
[friendica.git] / src / Module / Search / Index.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, 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\Search;
23
24 use Friendica\Content\Nav;
25 use Friendica\Content\Pager;
26 use Friendica\Content\Text\HTML;
27 use Friendica\Content\Widget;
28 use Friendica\Core\Cache\Duration;
29 use Friendica\Core\Logger;
30 use Friendica\Core\Renderer;
31 use Friendica\Core\Search;
32 use Friendica\Core\Session;
33 use Friendica\Database\DBA;
34 use Friendica\DI;
35 use Friendica\Model\Contact;
36 use Friendica\Model\Item;
37 use Friendica\Model\Post;
38 use Friendica\Model\Tag;
39 use Friendica\Module\BaseSearch;
40 use Friendica\Network\HTTPException;
41 use Friendica\Util\Strings;
42
43 class Index extends BaseSearch
44 {
45         public static function content(array $parameters = [])
46         {
47                 $search = (!empty($_GET['q']) ? Strings::escapeTags(trim(rawurldecode($_GET['q']))) : '');
48
49                 if (DI::config()->get('system', 'block_public') && !Session::isAuthenticated()) {
50                         throw new HTTPException\ForbiddenException(DI::l10n()->t('Public access denied.'));
51                 }
52
53                 if (DI::config()->get('system', 'local_search') && !Session::isAuthenticated()) {
54                         throw new HTTPException\ForbiddenException(DI::l10n()->t('Only logged in users are permitted to perform a search.'));
55                 }
56
57                 if (DI::config()->get('system', 'permit_crawling') && !Session::isAuthenticated()) {
58                         // Default values:
59                         // 10 requests are "free", after the 11th only a call per minute is allowed
60
61                         $free_crawls = intval(DI::config()->get('system', 'free_crawls'));
62                         if ($free_crawls == 0)
63                                 $free_crawls = 10;
64
65                         $crawl_permit_period = intval(DI::config()->get('system', 'crawl_permit_period'));
66                         if ($crawl_permit_period == 0)
67                                 $crawl_permit_period = 10;
68
69                         $remote = $_SERVER['REMOTE_ADDR'];
70                         $result = DI::cache()->get('remote_search:' . $remote);
71                         if (!is_null($result)) {
72                                 $resultdata = json_decode($result);
73                                 if (($resultdata->time > (time() - $crawl_permit_period)) && ($resultdata->accesses > $free_crawls)) {
74                                         throw new HTTPException\TooManyRequestsException(DI::l10n()->t('Only one search per minute is permitted for not logged in users.'));
75                                 }
76                                 DI::cache()->set('remote_search:' . $remote, json_encode(['time' => time(), 'accesses' => $resultdata->accesses + 1]), Duration::HOUR);
77                         } else {
78                                 DI::cache()->set('remote_search:' . $remote, json_encode(['time' => time(), 'accesses' => 1]), Duration::HOUR);
79                         }
80                 }
81
82                 if (local_user()) {
83                         DI::page()['aside'] .= Widget\SavedSearches::getHTML(Search::getSearchPath($search), $search);
84                 }
85
86                 Nav::setSelected('search');
87
88                 $tag = false;
89                 if (!empty($_GET['tag'])) {
90                         $tag = true;
91                         $search = '#' . Strings::escapeTags(trim(rawurldecode($_GET['tag'])));
92                 }
93
94                 // contruct a wrapper for the search header
95                 $o = Renderer::replaceMacros(Renderer::getMarkupTemplate('content_wrapper.tpl'), [
96                         'name' => 'search-header',
97                         '$title' => DI::l10n()->t('Search'),
98                         '$title_size' => 3,
99                         '$content' => HTML::search($search, 'search-box', false)
100                 ]);
101
102                 if (!$search) {
103                         return $o;
104                 }
105
106                 if (strpos($search, '#') === 0) {
107                         $tag = true;
108                         $search = substr($search, 1);
109                 }
110
111                 self::tryRedirectToProfile($search);
112
113                 if (strpos($search, '@') === 0 || strpos($search, '!') === 0) {
114                         return self::performContactSearch($search);
115                 }
116
117                 self::tryRedirectToPost($search);
118
119                 if (!empty($_GET['search-option'])) {
120                         switch ($_GET['search-option']) {
121                                 case 'fulltext':
122                                         break;
123                                 case 'tags':
124                                         $tag = true;
125                                         break;
126                                 case 'contacts':
127                                         return self::performContactSearch($search, '@');
128                                 case 'forums':
129                                         return self::performContactSearch($search, '!');
130                         }
131                 }
132
133                 // Don't perform a fulltext or tag search on search results that look like an URL
134                 // Tags don't look like an URL and the fulltext search does only work with natural words
135                 if (parse_url($search, PHP_URL_SCHEME) && parse_url($search, PHP_URL_HOST)) {
136                         Logger::info('Skipping tag and fulltext search since the search looks like a URL.', ['q' => $search]);
137                         notice(DI::l10n()->t('No results.'));
138                         return $o;
139                 }
140
141                 $tag = $tag || DI::config()->get('system', 'only_tag_search');
142
143                 // Here is the way permissions work in the search module...
144                 // Only public posts can be shown
145                 // OR your own posts if you are a logged in member
146                 // No items will be shown if the member has a blocked profile wall.
147
148                 if (DI::mode()->isMobile()) {
149                         $itemsPerPage = DI::pConfig()->get(local_user(), 'system', 'itemspage_mobile_network',
150                                 DI::config()->get('system', 'itemspage_network_mobile'));
151                 } else {
152                         $itemsPerPage = DI::pConfig()->get(local_user(), 'system', 'itemspage_network',
153                                 DI::config()->get('system', 'itemspage_network'));
154                 }
155
156                 $last_uriid = isset($_GET['last_uriid']) ? intval($_GET['last_uriid']) : 0;
157
158                 $pager = new Pager(DI::l10n(), DI::args()->getQueryString(), $itemsPerPage);
159
160                 if ($tag) {
161                         Logger::info('Start tag search.', ['q' => $search]);
162                         $uriids = Tag::getURIIdListByTag($search, local_user(), $pager->getStart(), $pager->getItemsPerPage(), $last_uriid);
163                         $count = Tag::countByTag($search, local_user());
164                 } else {
165                         Logger::info('Start fulltext search.', ['q' => $search]);
166                         $uriids = Post\Content::getURIIdListBySearch($search, local_user(), $pager->getStart(), $pager->getItemsPerPage(), $last_uriid);
167                         $count = Post\Content::countBySearch($search, local_user());
168                 }
169
170                 if (!empty($uriids)) {
171                         $condition = ["(`uid` = ? OR (`uid` = ? AND NOT `global`))", 0, local_user()];
172                         $condition = DBA::mergeConditions($condition, ['uri-id' => $uriids]);
173                         $params = ['order' => ['id' => true]];
174                         $items = Post::toArray(Post::selectForUser(local_user(), Item::DISPLAY_FIELDLIST, $condition, $params));
175                 }
176
177                 if (empty($items)) {
178                         if (empty($last_uriid)) {
179                                 notice(DI::l10n()->t('No results.'));
180                         }
181                         return $o;
182                 }
183
184                 if (DI::pConfig()->get(local_user(), 'system', 'infinite_scroll')) {
185                         $tpl = Renderer::getMarkupTemplate('infinite_scroll_head.tpl');
186                         $o .= Renderer::replaceMacros($tpl, ['$reload_uri' => DI::args()->getQueryString()]);
187                 }
188
189                 if ($tag) {
190                         $title = DI::l10n()->t('Items tagged with: %s', $search);
191                 } else {
192                         $title = DI::l10n()->t('Results for: %s', $search);
193                 }
194
195                 $o .= Renderer::replaceMacros(Renderer::getMarkupTemplate('section_title.tpl'), [
196                         '$title' => $title
197                 ]);
198
199                 Logger::info('Start Conversation.', ['q' => $search]);
200
201                 $o .= DI::conversation()->create($items, 'search', false, false, 'commented', local_user());
202
203                 if (DI::pConfig()->get(local_user(), 'system', 'infinite_scroll')) {
204                         $o .= HTML::scrollLoader();
205                 } else {
206                         $o .= $pager->renderMinimal($count);
207                 }
208
209
210                 return $o;
211         }
212
213         /**
214          * Tries to redirect to a local profile page based on the input.
215          *
216          * This method separates logged in and anonymous users. Logged in users can trigger contact probes to import
217          * non-existing contacts while anonymous users can only trigger a local lookup.
218          *
219          * Formats matched:
220          * - @user@domain
221          * - user@domain
222          * - Any fully-formed URL
223          *
224          * @param string  $search
225          * @throws HTTPException\InternalServerErrorException
226          * @throws \ImagickException
227          */
228         private static function tryRedirectToProfile(string $search)
229         {
230                 $isUrl = !empty(parse_url($search, PHP_URL_SCHEME));
231                 $isAddr = (bool)preg_match('/^@?([a-z0-9.-_]+@[a-z0-9.-_:]+)$/i', trim($search), $matches);
232
233                 if (!$isUrl && !$isAddr) {
234                         return;
235                 }
236
237                 if ($isAddr) {
238                         $search = $matches[1];
239                 }
240
241                 if (local_user()) {
242                         // User-specific contact URL/address search
243                         $contact_id = Contact::getIdForURL($search, local_user());
244                         if (!$contact_id) {
245                                 // User-specific contact URL/address search and probe
246                                 $contact_id = Contact::getIdForURL($search);
247                         }
248                 } else {
249                         // Cheaper local lookup for anonymous users, no probe
250                         if ($isAddr) {
251                                 $contact = Contact::selectFirst(['id'], ['addr' => $search, 'uid' => 0]);
252                         } else {
253                                 $contact = Contact::getByURL($search, null, ['id']) ?: ['id' => 0];
254                         }
255
256                         if (DBA::isResult($contact)) {
257                                 $contact_id = $contact['id'];
258                         }
259                 }
260
261                 if (!empty($contact_id)) {
262                         DI::baseUrl()->redirect('contact/' . $contact_id);
263                 }
264         }
265
266         /**
267          * Fetch/search a post by URL and redirects to its local representation if it was found.
268          *
269          * @param string  $search
270          * @throws HTTPException\InternalServerErrorException
271          */
272         private static function tryRedirectToPost(string $search)
273         {
274                 if (parse_url($search, PHP_URL_SCHEME) == '') {
275                         return;
276                 }
277
278                 if (local_user()) {
279                         // Post URL search
280                         $item_id = Item::fetchByLink($search, local_user());
281                         if (!$item_id) {
282                                 // If the user-specific search failed, we search and probe a public post
283                                 $item_id = Item::fetchByLink($search);
284                         }
285                 } else {
286                         // Cheaper local lookup for anonymous users, no probe
287                         $item_id = Item::searchByLink($search);
288                 }
289
290                 if (!empty($item_id)) {
291                         $item = Post::selectFirst(['guid'], ['id' => $item_id]);
292                         if (DBA::isResult($item)) {
293                                 DI::baseUrl()->redirect('display/' . $item['guid']);
294                         }
295                 }
296         }
297 }