3 * @copyright Copyright (C) 2010-2022, the Friendica project
5 * @license GNU AGPL version 3 or any later version
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.
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.
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/>.
22 namespace Friendica\Module\Search;
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\Enum\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;
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;
42 class Index extends BaseSearch
44 protected function content(array $request = []): string
46 $search = (!empty($_GET['q']) ? trim(rawurldecode($_GET['q'])) : '');
48 if (DI::config()->get('system', 'block_public') && !Session::isAuthenticated()) {
49 throw new HTTPException\ForbiddenException(DI::l10n()->t('Public access denied.'));
52 if (DI::config()->get('system', 'local_search') && !Session::isAuthenticated()) {
53 throw new HTTPException\ForbiddenException(DI::l10n()->t('Only logged in users are permitted to perform a search.'));
56 if (DI::config()->get('system', 'permit_crawling') && !Session::isAuthenticated()) {
58 // 10 requests are "free", after the 11th only a call per minute is allowed
60 $free_crawls = intval(DI::config()->get('system', 'free_crawls'));
61 if ($free_crawls == 0)
64 $crawl_permit_period = intval(DI::config()->get('system', 'crawl_permit_period'));
65 if ($crawl_permit_period == 0)
66 $crawl_permit_period = 10;
68 $remote = $_SERVER['REMOTE_ADDR'];
69 $result = DI::cache()->get('remote_search:' . $remote);
70 if (!is_null($result)) {
71 $resultdata = json_decode($result);
72 if (($resultdata->time > (time() - $crawl_permit_period)) && ($resultdata->accesses > $free_crawls)) {
73 throw new HTTPException\TooManyRequestsException(DI::l10n()->t('Only one search per minute is permitted for not logged in users.'));
75 DI::cache()->set('remote_search:' . $remote, json_encode(['time' => time(), 'accesses' => $resultdata->accesses + 1]), Duration::HOUR);
77 DI::cache()->set('remote_search:' . $remote, json_encode(['time' => time(), 'accesses' => 1]), Duration::HOUR);
82 DI::page()['aside'] .= Widget\SavedSearches::getHTML(Search::getSearchPath($search), $search);
85 Nav::setSelected('search');
88 if (!empty($_GET['tag'])) {
90 $search = '#' . trim(rawurldecode($_GET['tag']));
93 // contruct a wrapper for the search header
94 $o = Renderer::replaceMacros(Renderer::getMarkupTemplate('content_wrapper.tpl'), [
95 'name' => 'search-header',
96 '$title' => DI::l10n()->t('Search'),
98 '$content' => HTML::search($search, 'search-box', false)
105 if (strpos($search, '#') === 0) {
107 $search = substr($search, 1);
110 self::tryRedirectToProfile($search);
112 if (strpos($search, '@') === 0 || strpos($search, '!') === 0) {
113 return self::performContactSearch($search);
116 self::tryRedirectToPost($search);
118 if (!empty($_GET['search-option'])) {
119 switch ($_GET['search-option']) {
126 return self::performContactSearch($search, '@');
128 return self::performContactSearch($search, '!');
132 // Don't perform a fulltext or tag search on search results that look like an URL
133 // Tags don't look like an URL and the fulltext search does only work with natural words
134 if (parse_url($search, PHP_URL_SCHEME) && parse_url($search, PHP_URL_HOST)) {
135 Logger::info('Skipping tag and fulltext search since the search looks like a URL.', ['q' => $search]);
136 notice(DI::l10n()->t('No results.'));
140 $tag = $tag || DI::config()->get('system', 'only_tag_search');
142 // Here is the way permissions work in the search module...
143 // Only public posts can be shown
144 // OR your own posts if you are a logged in member
145 // No items will be shown if the member has a blocked profile wall.
147 if (DI::mode()->isMobile()) {
148 $itemsPerPage = DI::pConfig()->get(local_user(), 'system', 'itemspage_mobile_network',
149 DI::config()->get('system', 'itemspage_network_mobile'));
151 $itemsPerPage = DI::pConfig()->get(local_user(), 'system', 'itemspage_network',
152 DI::config()->get('system', 'itemspage_network'));
155 $last_uriid = isset($_GET['last_uriid']) ? intval($_GET['last_uriid']) : 0;
157 $pager = new Pager(DI::l10n(), DI::args()->getQueryString(), $itemsPerPage);
160 Logger::info('Start tag search.', ['q' => $search]);
161 $uriids = Tag::getURIIdListByTag($search, local_user(), $pager->getStart(), $pager->getItemsPerPage(), $last_uriid);
162 $count = Tag::countByTag($search, local_user());
164 Logger::info('Start fulltext search.', ['q' => $search]);
165 $uriids = Post\Content::getURIIdListBySearch($search, local_user(), $pager->getStart(), $pager->getItemsPerPage(), $last_uriid);
166 $count = Post\Content::countBySearch($search, local_user());
169 if (!empty($uriids)) {
170 $condition = ["(`uid` = ? OR (`uid` = ? AND NOT `global`))", 0, local_user()];
171 $condition = DBA::mergeConditions($condition, ['uri-id' => $uriids]);
172 $params = ['order' => ['id' => true]];
173 $items = Post::toArray(Post::selectForUser(local_user(), Item::DISPLAY_FIELDLIST, $condition, $params));
177 if (empty($last_uriid)) {
178 notice(DI::l10n()->t('No results.'));
183 if (DI::pConfig()->get(local_user(), 'system', 'infinite_scroll')) {
184 $tpl = Renderer::getMarkupTemplate('infinite_scroll_head.tpl');
185 $o .= Renderer::replaceMacros($tpl, ['$reload_uri' => DI::args()->getQueryString()]);
189 $title = DI::l10n()->t('Items tagged with: %s', $search);
191 $title = DI::l10n()->t('Results for: %s', $search);
194 $o .= Renderer::replaceMacros(Renderer::getMarkupTemplate('section_title.tpl'), [
198 Logger::info('Start Conversation.', ['q' => $search]);
200 $o .= DI::conversation()->create($items, 'search', false, false, 'commented', local_user());
202 if (DI::pConfig()->get(local_user(), 'system', 'infinite_scroll')) {
203 $o .= HTML::scrollLoader();
205 $o .= $pager->renderMinimal($count);
213 * Tries to redirect to a local profile page based on the input.
215 * This method separates logged in and anonymous users. Logged in users can trigger contact probes to import
216 * non-existing contacts while anonymous users can only trigger a local lookup.
221 * - Any fully-formed URL
223 * @param string $search
224 * @throws HTTPException\InternalServerErrorException
225 * @throws \ImagickException
227 private static function tryRedirectToProfile(string $search)
229 $isUrl = !empty(parse_url($search, PHP_URL_SCHEME));
230 $isAddr = (bool)preg_match('/^@?([a-z0-9.-_]+@[a-z0-9.-_:]+)$/i', trim($search), $matches);
232 if (!$isUrl && !$isAddr) {
237 $search = $matches[1];
241 // User-specific contact URL/address search
242 $contact_id = Contact::getIdForURL($search, local_user());
244 // User-specific contact URL/address search and probe
245 $contact_id = Contact::getIdForURL($search);
248 // Cheaper local lookup for anonymous users, no probe
250 $contact = Contact::selectFirst(['id'], ['addr' => $search, 'uid' => 0]);
252 $contact = Contact::getByURL($search, null, ['id']) ?: ['id' => 0];
255 if (DBA::isResult($contact)) {
256 $contact_id = $contact['id'];
260 if (!empty($contact_id)) {
261 DI::baseUrl()->redirect('contact/' . $contact_id);
266 * Fetch/search a post by URL and redirects to its local representation if it was found.
268 * @param string $search
269 * @throws HTTPException\InternalServerErrorException
271 private static function tryRedirectToPost(string $search)
273 if (parse_url($search, PHP_URL_SCHEME) == '') {
279 $item_id = Item::fetchByLink($search, local_user());
281 // If the user-specific search failed, we search and probe a public post
282 $item_id = Item::fetchByLink($search);
285 // Cheaper local lookup for anonymous users, no probe
286 $item_id = Item::searchByLink($search);
289 if (!empty($item_id)) {
290 $item = Post::selectFirst(['guid'], ['id' => $item_id]);
291 if (DBA::isResult($item)) {
292 DI::baseUrl()->redirect('display/' . $item['guid']);