2019-10-07 14:27:20 -04:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Module\Search;
|
|
|
|
|
|
|
|
use Friendica\Content\Nav;
|
|
|
|
use Friendica\Content\Pager;
|
|
|
|
use Friendica\Content\Text\HTML;
|
|
|
|
use Friendica\Content\Widget;
|
2020-01-18 09:41:19 -05:00
|
|
|
use Friendica\Core\Cache\Duration;
|
2019-10-07 14:27:20 -04:00
|
|
|
use Friendica\Core\Config;
|
|
|
|
use Friendica\Core\Logger;
|
|
|
|
use Friendica\Core\Renderer;
|
|
|
|
use Friendica\Core\Session;
|
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2019-12-24 17:38:04 -05:00
|
|
|
use Friendica\Model\Contact;
|
2019-10-07 14:27:20 -04:00
|
|
|
use Friendica\Model\Item;
|
|
|
|
use Friendica\Model\Term;
|
|
|
|
use Friendica\Module\BaseSearchModule;
|
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
use Friendica\Util\Strings;
|
|
|
|
|
|
|
|
class Index extends BaseSearchModule
|
|
|
|
{
|
2019-11-05 16:48:54 -05:00
|
|
|
public static function content(array $parameters = [])
|
2019-10-07 14:27:20 -04:00
|
|
|
{
|
|
|
|
$search = (!empty($_GET['q']) ? Strings::escapeTags(trim(rawurldecode($_GET['q']))) : '');
|
|
|
|
|
|
|
|
if (Config::get('system', 'block_public') && !Session::isAuthenticated()) {
|
2020-01-18 14:52:34 -05:00
|
|
|
throw new HTTPException\ForbiddenException(DI::l10n()->t('Public access denied.'));
|
2019-10-07 14:27:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (Config::get('system', 'local_search') && !Session::isAuthenticated()) {
|
2020-01-18 14:52:34 -05:00
|
|
|
$e = new HTTPException\ForbiddenException(DI::l10n()->t('Only logged in users are permitted to perform a search.'));
|
|
|
|
$e->httpdesc = DI::l10n()->t('Public access denied.');
|
2019-10-07 14:27:20 -04:00
|
|
|
throw $e;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Config::get('system', 'permit_crawling') && !Session::isAuthenticated()) {
|
|
|
|
// Default values:
|
|
|
|
// 10 requests are "free", after the 11th only a call per minute is allowed
|
|
|
|
|
|
|
|
$free_crawls = intval(Config::get('system', 'free_crawls'));
|
|
|
|
if ($free_crawls == 0)
|
|
|
|
$free_crawls = 10;
|
|
|
|
|
|
|
|
$crawl_permit_period = intval(Config::get('system', 'crawl_permit_period'));
|
|
|
|
if ($crawl_permit_period == 0)
|
|
|
|
$crawl_permit_period = 10;
|
|
|
|
|
|
|
|
$remote = $_SERVER['REMOTE_ADDR'];
|
2020-01-06 18:45:49 -05:00
|
|
|
$result = DI::cache()->get('remote_search:' . $remote);
|
2019-10-07 14:27:20 -04:00
|
|
|
if (!is_null($result)) {
|
|
|
|
$resultdata = json_decode($result);
|
|
|
|
if (($resultdata->time > (time() - $crawl_permit_period)) && ($resultdata->accesses > $free_crawls)) {
|
2020-01-18 14:52:34 -05:00
|
|
|
throw new HTTPException\TooManyRequestsException(DI::l10n()->t('Only one search per minute is permitted for not logged in users.'));
|
2019-10-07 14:27:20 -04:00
|
|
|
}
|
2020-01-18 09:41:19 -05:00
|
|
|
DI::cache()->set('remote_search:' . $remote, json_encode(['time' => time(), 'accesses' => $resultdata->accesses + 1]), Duration::HOUR);
|
2019-10-07 14:27:20 -04:00
|
|
|
} else {
|
2020-01-18 09:41:19 -05:00
|
|
|
DI::cache()->set('remote_search:' . $remote, json_encode(['time' => time(), 'accesses' => 1]), Duration::HOUR);
|
2019-10-07 14:27:20 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (local_user()) {
|
2019-12-30 14:02:09 -05:00
|
|
|
DI::page()['aside'] .= Widget\SavedSearches::getHTML('search?q=' . urlencode($search), $search);
|
2019-10-07 14:27:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
Nav::setSelected('search');
|
|
|
|
|
|
|
|
$tag = false;
|
|
|
|
if (!empty($_GET['tag'])) {
|
|
|
|
$tag = true;
|
|
|
|
$search = '#' . Strings::escapeTags(trim(rawurldecode($_GET['tag'])));
|
|
|
|
}
|
|
|
|
|
|
|
|
// contruct a wrapper for the search header
|
|
|
|
$o = Renderer::replaceMacros(Renderer::getMarkupTemplate('content_wrapper.tpl'), [
|
|
|
|
'name' => 'search-header',
|
2020-01-18 14:52:34 -05:00
|
|
|
'$title' => DI::l10n()->t('Search'),
|
2019-10-07 14:27:20 -04:00
|
|
|
'$title_size' => 3,
|
|
|
|
'$content' => HTML::search($search, 'search-box', false)
|
|
|
|
]);
|
|
|
|
|
2019-12-24 17:17:27 -05:00
|
|
|
if (!$search) {
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
2019-10-07 14:27:20 -04:00
|
|
|
if (strpos($search, '#') === 0) {
|
|
|
|
$tag = true;
|
|
|
|
$search = substr($search, 1);
|
|
|
|
}
|
|
|
|
|
2019-12-27 09:20:40 -05:00
|
|
|
self::tryRedirectToProfile($search);
|
2019-12-24 17:38:04 -05:00
|
|
|
|
2019-10-07 14:27:20 -04:00
|
|
|
if (strpos($search, '@') === 0 || strpos($search, '!') === 0) {
|
2019-12-24 17:15:41 -05:00
|
|
|
return self::performContactSearch($search);
|
2019-10-07 14:27:20 -04:00
|
|
|
}
|
|
|
|
|
2019-12-27 09:20:40 -05:00
|
|
|
self::tryRedirectToPost($search);
|
2019-10-07 14:27:20 -04:00
|
|
|
|
|
|
|
if (!empty($_GET['search-option'])) {
|
|
|
|
switch ($_GET['search-option']) {
|
|
|
|
case 'fulltext':
|
|
|
|
break;
|
|
|
|
case 'tags':
|
|
|
|
$tag = true;
|
|
|
|
break;
|
|
|
|
case 'contacts':
|
2019-12-24 17:15:41 -05:00
|
|
|
return self::performContactSearch($search, '@');
|
2019-10-07 14:27:20 -04:00
|
|
|
case 'forums':
|
2019-12-24 17:15:41 -05:00
|
|
|
return self::performContactSearch($search, '!');
|
2019-10-07 14:27:20 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$tag = $tag || Config::get('system', 'only_tag_search');
|
|
|
|
|
|
|
|
// Here is the way permissions work in the search module...
|
|
|
|
// Only public posts can be shown
|
|
|
|
// OR your own posts if you are a logged in member
|
|
|
|
// No items will be shown if the member has a blocked profile wall.
|
|
|
|
|
2019-12-15 17:28:01 -05:00
|
|
|
$pager = new Pager(DI::args()->getQueryString());
|
2019-10-07 14:27:20 -04:00
|
|
|
|
|
|
|
if ($tag) {
|
2019-10-07 16:18:19 -04:00
|
|
|
Logger::info('Start tag search.', ['q' => $search]);
|
2019-10-07 14:27:20 -04:00
|
|
|
|
|
|
|
$condition = [
|
|
|
|
"(`uid` = 0 OR (`uid` = ? AND NOT `global`))
|
|
|
|
AND `otype` = ? AND `type` = ? AND `term` = ?",
|
|
|
|
local_user(), Term::OBJECT_TYPE_POST, Term::HASHTAG, $search
|
|
|
|
];
|
|
|
|
$params = [
|
|
|
|
'order' => ['received' => true],
|
|
|
|
'limit' => [$pager->getStart(), $pager->getItemsPerPage()]
|
|
|
|
];
|
|
|
|
$terms = DBA::select('term', ['oid'], $condition, $params);
|
|
|
|
|
|
|
|
$itemids = [];
|
|
|
|
while ($term = DBA::fetch($terms)) {
|
|
|
|
$itemids[] = $term['oid'];
|
|
|
|
}
|
|
|
|
|
|
|
|
DBA::close($terms);
|
|
|
|
|
|
|
|
if (!empty($itemids)) {
|
|
|
|
$params = ['order' => ['id' => true]];
|
|
|
|
$items = Item::selectForUser(local_user(), [], ['id' => $itemids], $params);
|
|
|
|
$r = Item::inArray($items);
|
|
|
|
} else {
|
|
|
|
$r = [];
|
|
|
|
}
|
|
|
|
} else {
|
2019-10-07 16:18:19 -04:00
|
|
|
Logger::info('Start fulltext search.', ['q' => $search]);
|
2019-10-07 14:27:20 -04:00
|
|
|
|
|
|
|
$condition = [
|
|
|
|
"(`uid` = 0 OR (`uid` = ? AND NOT `global`))
|
|
|
|
AND `body` LIKE CONCAT('%',?,'%')",
|
|
|
|
local_user(), $search
|
|
|
|
];
|
|
|
|
$params = [
|
|
|
|
'order' => ['id' => true],
|
|
|
|
'limit' => [$pager->getStart(), $pager->getItemsPerPage()]
|
|
|
|
];
|
|
|
|
$items = Item::selectForUser(local_user(), [], $condition, $params);
|
|
|
|
$r = Item::inArray($items);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!DBA::isResult($r)) {
|
2020-01-18 14:52:34 -05:00
|
|
|
info(DI::l10n()->t('No results.'));
|
2019-10-07 14:27:20 -04:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($tag) {
|
2020-01-18 14:52:34 -05:00
|
|
|
$title = DI::l10n()->t('Items tagged with: %s', $search);
|
2019-10-07 14:27:20 -04:00
|
|
|
} else {
|
2020-01-18 14:52:34 -05:00
|
|
|
$title = DI::l10n()->t('Results for: %s', $search);
|
2019-10-07 14:27:20 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
$o .= Renderer::replaceMacros(Renderer::getMarkupTemplate('section_title.tpl'), [
|
|
|
|
'$title' => $title
|
|
|
|
]);
|
|
|
|
|
2019-10-07 16:18:19 -04:00
|
|
|
Logger::info('Start Conversation.', ['q' => $search]);
|
|
|
|
|
2019-12-15 16:34:11 -05:00
|
|
|
$o .= conversation(DI::app(), $r, $pager, 'search', false, false, 'commented', local_user());
|
2019-10-07 14:27:20 -04:00
|
|
|
|
|
|
|
$o .= $pager->renderMinimal(count($r));
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
}
|
2019-12-24 17:38:04 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Tries to redirect to a local profile page based on the input.
|
|
|
|
*
|
|
|
|
* This method separates logged in and anonymous users. Logged in users can trigger contact probes to import
|
|
|
|
* non-existing contacts while anonymous users can only trigger a local lookup.
|
|
|
|
*
|
|
|
|
* Formats matched:
|
|
|
|
* - @user@domain
|
|
|
|
* - user@domain
|
|
|
|
* - Any fully-formed URL
|
|
|
|
*
|
|
|
|
* @param string $search
|
|
|
|
* @throws HTTPException\InternalServerErrorException
|
|
|
|
* @throws \ImagickException
|
|
|
|
*/
|
2019-12-27 09:20:40 -05:00
|
|
|
private static function tryRedirectToProfile(string $search)
|
2019-12-24 17:38:04 -05:00
|
|
|
{
|
2019-12-28 06:15:57 -05:00
|
|
|
$isUrl = !empty(parse_url($search, PHP_URL_SCHEME));
|
|
|
|
$isAddr = (bool)preg_match('/^@?([a-z0-9.-_]+@[a-z0-9.-_:]+)$/i', trim($search), $matches);
|
2019-12-24 17:38:04 -05:00
|
|
|
|
|
|
|
if (!$isUrl && !$isAddr) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($isAddr) {
|
|
|
|
$search = $matches[1];
|
|
|
|
}
|
2019-12-28 06:17:10 -05:00
|
|
|
|
2019-12-24 17:38:04 -05:00
|
|
|
if (local_user()) {
|
|
|
|
// User-specific contact URL/address search
|
|
|
|
$contact_id = Contact::getIdForURL($search, local_user());
|
|
|
|
if (!$contact_id) {
|
|
|
|
// User-specific contact URL/address search and probe
|
|
|
|
$contact_id = Contact::getIdForURL($search);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Cheaper local lookup for anonymous users, no probe
|
|
|
|
if ($isAddr) {
|
|
|
|
$contact = Contact::selectFirst(['id' => 'cid'], ['addr' => $search, 'uid' => 0]);
|
|
|
|
} else {
|
|
|
|
$contact = Contact::getDetailsByURL($search, 0, ['cid' => 0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DBA::isResult($contact)) {
|
|
|
|
$contact_id = $contact['cid'];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($contact_id)) {
|
2019-12-27 09:20:40 -05:00
|
|
|
DI::baseUrl()->redirect('contact/' . $contact_id);
|
2019-12-24 17:38:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Fetch/search a post by URL and redirects to its local representation if it was found.
|
|
|
|
*
|
|
|
|
* @param string $search
|
|
|
|
* @throws HTTPException\InternalServerErrorException
|
|
|
|
*/
|
2019-12-27 09:20:40 -05:00
|
|
|
private static function tryRedirectToPost(string $search)
|
2019-12-24 17:38:04 -05:00
|
|
|
{
|
|
|
|
if (parse_url($search, PHP_URL_SCHEME) == '') {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (local_user()) {
|
|
|
|
// Post URL search
|
|
|
|
$item_id = Item::fetchByLink($search, local_user());
|
|
|
|
if (!$item_id) {
|
|
|
|
// If the user-specific search failed, we search and probe a public post
|
|
|
|
$item_id = Item::fetchByLink($search);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Cheaper local lookup for anonymous users, no probe
|
|
|
|
$item_id = Item::searchByLink($search);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!empty($item_id)) {
|
|
|
|
$item = Item::selectFirst(['guid'], ['id' => $item_id]);
|
|
|
|
if (DBA::isResult($item)) {
|
2019-12-27 09:20:40 -05:00
|
|
|
DI::baseUrl()->redirect('display/' . $item['guid']);
|
2019-12-24 17:38:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-10-07 14:27:20 -04:00
|
|
|
}
|