2010-11-09 02:30:00 +01:00
|
|
|
<?php
|
2017-12-04 14:33:49 +01:00
|
|
|
/**
|
|
|
|
* @file mod/search.php
|
|
|
|
*/
|
2018-07-20 04:15:21 +02:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-12-04 15:04:36 +01:00
|
|
|
use Friendica\Content\Feature;
|
2018-01-15 20:51:56 +01:00
|
|
|
use Friendica\Content\Nav;
|
2017-11-09 17:05:18 +01:00
|
|
|
use Friendica\Core\Cache;
|
2017-11-07 03:22:52 +01:00
|
|
|
use Friendica\Core\Config;
|
2018-01-21 19:33:59 +01:00
|
|
|
use Friendica\Core\L10n;
|
2018-01-27 17:59:10 +01:00
|
|
|
use Friendica\Core\System;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2018-06-10 16:36:22 +02:00
|
|
|
use Friendica\Model\Item;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2017-12-04 14:33:49 +01:00
|
|
|
require_once 'include/security.php';
|
|
|
|
require_once 'include/conversation.php';
|
|
|
|
require_once 'mod/dirfind.php';
|
2010-11-09 02:30:00 +01:00
|
|
|
|
2011-09-09 06:42:52 +02:00
|
|
|
function search_saved_searches() {
|
|
|
|
|
|
|
|
$o = '';
|
2018-02-12 03:25:09 +01:00
|
|
|
$search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');
|
2011-09-09 06:42:52 +02:00
|
|
|
|
2018-06-21 10:23:35 +02:00
|
|
|
if (!Feature::isEnabled(local_user(),'savedsearch'))
|
2012-11-22 17:14:22 +01:00
|
|
|
return $o;
|
|
|
|
|
2015-05-23 01:23:31 +02:00
|
|
|
$r = q("SELECT `id`,`term` FROM `search` WHERE `uid` = %d",
|
2011-09-09 06:42:52 +02:00
|
|
|
intval(local_user())
|
|
|
|
);
|
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (DBA::isResult($r)) {
|
2018-01-15 14:05:12 +01:00
|
|
|
$saved = [];
|
2016-12-20 21:15:53 +01:00
|
|
|
foreach ($r as $rr) {
|
2018-01-15 14:05:12 +01:00
|
|
|
$saved[] = [
|
2015-05-30 02:21:30 +02:00
|
|
|
'id' => $rr['id'],
|
|
|
|
'term' => $rr['term'],
|
|
|
|
'encodedterm' => urlencode($rr['term']),
|
2018-01-22 15:16:25 +01:00
|
|
|
'delete' => L10n::t('Remove term'),
|
2015-05-30 02:21:30 +02:00
|
|
|
'selected' => ($search==$rr['term']),
|
2018-01-15 14:05:12 +01:00
|
|
|
];
|
2011-09-09 06:42:52 +02:00
|
|
|
}
|
2012-10-02 16:03:20 +02:00
|
|
|
|
2013-01-13 14:50:55 +01:00
|
|
|
|
2012-10-02 16:03:20 +02:00
|
|
|
$tpl = get_markup_template("saved_searches_aside.tpl");
|
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$o .= replace_macros($tpl, [
|
2018-01-22 15:16:25 +01:00
|
|
|
'$title' => L10n::t('Saved Searches'),
|
2015-05-30 02:21:30 +02:00
|
|
|
'$add' => '',
|
|
|
|
'$searchbox' => '',
|
|
|
|
'$saved' => $saved,
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2013-01-13 14:50:55 +01:00
|
|
|
}
|
2011-09-09 06:42:52 +02:00
|
|
|
|
|
|
|
return $o;
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2016-02-05 21:52:39 +01:00
|
|
|
}
|
2011-09-09 06:42:52 +02:00
|
|
|
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2017-01-09 13:14:55 +01:00
|
|
|
function search_init(App $a) {
|
2011-09-09 06:42:52 +02:00
|
|
|
|
|
|
|
$search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');
|
|
|
|
|
2017-09-15 21:41:30 +02:00
|
|
|
if (local_user()) {
|
|
|
|
if (x($_GET,'save') && $search) {
|
2015-05-23 01:23:31 +02:00
|
|
|
$r = q("SELECT * FROM `search` WHERE `uid` = %d AND `term` = '%s' LIMIT 1",
|
2011-09-09 06:42:52 +02:00
|
|
|
intval(local_user()),
|
2018-07-21 15:10:13 +02:00
|
|
|
DBA::escape($search)
|
2011-09-09 06:42:52 +02:00
|
|
|
);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($r)) {
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::insert('search', ['uid' => local_user(), 'term' => $search]);
|
2011-09-09 06:42:52 +02:00
|
|
|
}
|
|
|
|
}
|
2017-09-15 21:41:30 +02:00
|
|
|
if (x($_GET,'remove') && $search) {
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::delete('search', ['uid' => local_user(), 'term' => $search]);
|
2011-09-09 06:42:52 +02:00
|
|
|
}
|
|
|
|
|
2018-07-10 14:27:56 +02:00
|
|
|
/// @todo Check if there is a case at all that "aside" is prefilled here
|
|
|
|
if (!isset($a->page['aside'])) {
|
|
|
|
$a->page['aside'] = '';
|
|
|
|
}
|
|
|
|
|
2011-09-09 06:42:52 +02:00
|
|
|
$a->page['aside'] .= search_saved_searches();
|
|
|
|
|
2017-09-15 21:41:30 +02:00
|
|
|
} else {
|
2011-10-12 04:27:58 +02:00
|
|
|
unset($_SESSION['theme']);
|
2012-09-07 01:24:34 +02:00
|
|
|
unset($_SESSION['mobile-theme']);
|
|
|
|
}
|
2011-10-12 04:27:58 +02:00
|
|
|
|
2011-09-09 06:42:52 +02:00
|
|
|
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2011-09-09 06:42:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2017-01-09 13:14:55 +01:00
|
|
|
function search_post(App $a) {
|
2017-09-15 21:41:30 +02:00
|
|
|
if (x($_POST,'search'))
|
2010-12-13 03:43:32 +01:00
|
|
|
$a->data['search'] = $_POST['search'];
|
|
|
|
}
|
|
|
|
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2017-01-09 13:14:55 +01:00
|
|
|
function search_content(App $a) {
|
2010-11-09 02:30:00 +01:00
|
|
|
|
2017-11-07 03:22:52 +01:00
|
|
|
if (Config::get('system','block_public') && !local_user() && !remote_user()) {
|
2018-01-21 19:33:59 +01:00
|
|
|
notice(L10n::t('Public access denied.') . EOL);
|
2011-04-22 02:29:47 +02:00
|
|
|
return;
|
|
|
|
}
|
2012-05-26 11:51:48 +02:00
|
|
|
|
2017-11-07 03:22:52 +01:00
|
|
|
if (Config::get('system','local_search') && !local_user() && !remote_user()) {
|
2018-01-27 17:59:10 +01:00
|
|
|
System::httpExit(403,
|
2018-01-22 15:16:25 +01:00
|
|
|
["title" => L10n::t("Public access denied."),
|
|
|
|
"description" => L10n::t("Only logged in users are permitted to perform a search.")]);
|
2015-10-03 23:16:40 +02:00
|
|
|
killme();
|
2018-01-21 19:33:59 +01:00
|
|
|
//notice(L10n::t('Public access denied.').EOL);
|
2015-10-03 23:16:40 +02:00
|
|
|
//return;
|
|
|
|
}
|
|
|
|
|
2017-11-07 03:22:52 +01:00
|
|
|
if (Config::get('system','permit_crawling') && !local_user() && !remote_user()) {
|
2015-12-06 22:01:20 +01:00
|
|
|
// Default values:
|
|
|
|
// 10 requests are "free", after the 11th only a call per minute is allowed
|
|
|
|
|
2017-11-07 03:22:52 +01:00
|
|
|
$free_crawls = intval(Config::get('system','free_crawls'));
|
2015-12-06 22:01:20 +01:00
|
|
|
if ($free_crawls == 0)
|
|
|
|
$free_crawls = 10;
|
|
|
|
|
2017-11-07 03:22:52 +01:00
|
|
|
$crawl_permit_period = intval(Config::get('system','crawl_permit_period'));
|
2015-12-06 22:01:20 +01:00
|
|
|
if ($crawl_permit_period == 0)
|
|
|
|
$crawl_permit_period = 10;
|
2015-10-03 23:16:40 +02:00
|
|
|
|
|
|
|
$remote = $_SERVER["REMOTE_ADDR"];
|
|
|
|
$result = Cache::get("remote_search:".$remote);
|
|
|
|
if (!is_null($result)) {
|
2015-12-06 22:01:20 +01:00
|
|
|
$resultdata = json_decode($result);
|
2017-06-08 04:00:59 +02:00
|
|
|
if (($resultdata->time > (time() - $crawl_permit_period)) && ($resultdata->accesses > $free_crawls)) {
|
2018-01-27 17:59:10 +01:00
|
|
|
System::httpExit(429,
|
2018-01-22 15:16:25 +01:00
|
|
|
["title" => L10n::t("Too Many Requests"),
|
|
|
|
"description" => L10n::t("Only one search per minute is permitted for not logged in users.")]);
|
2015-10-03 23:16:40 +02:00
|
|
|
killme();
|
|
|
|
}
|
2018-01-15 14:05:12 +01:00
|
|
|
Cache::set("remote_search:".$remote, json_encode(["time" => time(), "accesses" => $resultdata->accesses + 1]), CACHE_HOUR);
|
2015-12-06 22:01:20 +01:00
|
|
|
} else
|
2018-01-15 14:05:12 +01:00
|
|
|
Cache::set("remote_search:".$remote, json_encode(["time" => time(), "accesses" => 1]), CACHE_HOUR);
|
2015-09-05 04:29:37 +02:00
|
|
|
}
|
|
|
|
|
2018-01-15 20:51:56 +01:00
|
|
|
Nav::setSelected('search');
|
2011-04-22 02:29:47 +02:00
|
|
|
|
2018-01-19 06:32:37 +01:00
|
|
|
$search = '';
|
2017-09-15 21:41:30 +02:00
|
|
|
if (x($a->data,'search'))
|
2010-12-13 03:43:32 +01:00
|
|
|
$search = notags(trim($a->data['search']));
|
|
|
|
else
|
|
|
|
$search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');
|
2010-11-09 02:30:00 +01:00
|
|
|
|
2012-04-24 07:41:32 +02:00
|
|
|
$tag = false;
|
2017-09-15 21:41:30 +02:00
|
|
|
if (x($_GET,'tag')) {
|
2012-04-24 07:41:32 +02:00
|
|
|
$tag = true;
|
2018-02-26 12:45:53 +01:00
|
|
|
$search = (x($_GET,'tag') ? '#' . notags(trim(rawurldecode($_GET['tag']))) : '');
|
2012-04-24 07:41:32 +02:00
|
|
|
}
|
|
|
|
|
2016-06-07 16:32:02 +02:00
|
|
|
// contruct a wrapper for the search header
|
2018-02-12 03:25:09 +01:00
|
|
|
$o = replace_macros(get_markup_template("content_wrapper.tpl"),[
|
2016-06-07 16:32:02 +02:00
|
|
|
'name' => "search-header",
|
2018-01-22 15:16:25 +01:00
|
|
|
'$title' => L10n::t("Search"),
|
2016-06-07 16:32:02 +02:00
|
|
|
'$title_size' => 3,
|
|
|
|
'$content' => search($search,'search-box','search',((local_user()) ? true : false), false)
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2010-11-09 02:30:00 +01:00
|
|
|
|
2017-09-15 21:41:30 +02:00
|
|
|
if (strpos($search,'#') === 0) {
|
2012-05-19 11:42:11 +02:00
|
|
|
$tag = true;
|
|
|
|
$search = substr($search,1);
|
|
|
|
}
|
2017-09-15 21:41:30 +02:00
|
|
|
if (strpos($search,'@') === 0) {
|
2012-05-20 06:53:27 +02:00
|
|
|
return dirfind_content($a);
|
|
|
|
}
|
2017-09-15 21:41:30 +02:00
|
|
|
if (strpos($search,'!') === 0) {
|
2015-07-30 23:27:50 +02:00
|
|
|
return dirfind_content($a);
|
|
|
|
}
|
2012-05-19 11:42:11 +02:00
|
|
|
|
2017-09-15 21:41:30 +02:00
|
|
|
if (x($_GET,'search-option'))
|
2015-08-24 11:55:29 +02:00
|
|
|
switch($_GET['search-option']) {
|
|
|
|
case 'fulltext':
|
|
|
|
break;
|
|
|
|
case 'tags':
|
|
|
|
$tag = true;
|
|
|
|
break;
|
|
|
|
case 'contacts':
|
|
|
|
return dirfind_content($a, "@");
|
|
|
|
break;
|
|
|
|
case 'forums':
|
|
|
|
return dirfind_content($a, "!");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2018-06-21 10:23:35 +02:00
|
|
|
if (!$search)
|
2010-11-09 02:30:00 +01:00
|
|
|
return $o;
|
|
|
|
|
2017-11-07 03:22:52 +01:00
|
|
|
if (Config::get('system','only_tag_search'))
|
2013-01-13 09:37:15 +01:00
|
|
|
$tag = true;
|
|
|
|
|
2015-03-07 21:24:39 +01:00
|
|
|
// 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.
|
2013-11-03 02:07:44 +01:00
|
|
|
|
2017-09-15 21:41:30 +02:00
|
|
|
if ($tag) {
|
2015-03-08 03:24:54 +01:00
|
|
|
logger("Start tag search for '".$search."'", LOGGER_DEBUG);
|
2015-03-07 21:24:39 +01:00
|
|
|
|
2018-06-10 16:36:22 +02:00
|
|
|
$condition = ["(`uid` = 0 OR (`uid` = ? AND NOT `global`))
|
|
|
|
AND `otype` = ? AND `type` = ? AND `term` = ?",
|
|
|
|
local_user(), TERM_OBJ_POST, TERM_HASHTAG, $search];
|
|
|
|
$params = ['order' => ['created' => true],
|
|
|
|
'limit' => [$a->pager['start'], $a->pager['itemspage']]];
|
2018-07-20 14:19:26 +02:00
|
|
|
$terms = DBA::select('term', ['oid'], $condition, $params);
|
2018-06-10 16:36:22 +02:00
|
|
|
|
|
|
|
$itemids = [];
|
2018-07-20 14:19:26 +02:00
|
|
|
while ($term = DBA::fetch($terms)) {
|
2018-06-10 16:36:22 +02:00
|
|
|
$itemids[] = $term['oid'];
|
|
|
|
}
|
2018-07-20 14:19:26 +02:00
|
|
|
DBA::close($terms);
|
2018-06-10 16:36:22 +02:00
|
|
|
|
2018-06-21 10:23:35 +02:00
|
|
|
if (!empty($itemids)) {
|
|
|
|
$params = ['order' => ['id' => true]];
|
|
|
|
$items = Item::selectForUser(local_user(), [], ['id' => $itemids], $params);
|
2018-06-24 12:48:29 +02:00
|
|
|
$r = Item::inArray($items);
|
2018-06-21 10:23:35 +02:00
|
|
|
} else {
|
|
|
|
$r = [];
|
|
|
|
}
|
2013-01-13 14:50:55 +01:00
|
|
|
} else {
|
2015-03-08 03:24:54 +01:00
|
|
|
logger("Start fulltext search for '".$search."'", LOGGER_DEBUG);
|
2015-03-07 21:24:39 +01:00
|
|
|
|
2018-06-10 16:36:22 +02:00
|
|
|
$condition = ["(`uid` = 0 OR (`uid` = ? AND NOT `global`))
|
|
|
|
AND `body` LIKE CONCAT('%',?,'%')",
|
|
|
|
local_user(), $search];
|
|
|
|
$params = ['order' => ['id' => true],
|
|
|
|
'limit' => [$a->pager['start'], $a->pager['itemspage']]];
|
2018-06-17 19:05:17 +02:00
|
|
|
$items = Item::selectForUser(local_user(), [], $condition, $params);
|
2018-06-24 12:48:29 +02:00
|
|
|
$r = Item::inArray($items);
|
2010-11-09 02:30:00 +01:00
|
|
|
}
|
|
|
|
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($r)) {
|
2018-01-21 19:33:59 +01:00
|
|
|
info(L10n::t('No results.') . EOL);
|
2012-07-14 20:21:58 +02:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-01-24 03:59:16 +01:00
|
|
|
if ($tag) {
|
|
|
|
$title = L10n::t('Items tagged with: %s', $search);
|
|
|
|
} else {
|
|
|
|
$title = L10n::t('Results for: %s', $search);
|
|
|
|
}
|
2015-05-30 02:21:30 +02:00
|
|
|
|
2018-01-15 14:05:12 +01:00
|
|
|
$o .= replace_macros(get_markup_template("section_title.tpl"),[
|
2015-05-30 02:21:30 +02:00
|
|
|
'$title' => $title
|
2018-01-15 14:05:12 +01:00
|
|
|
]);
|
2011-04-11 10:31:04 +02:00
|
|
|
|
2015-03-08 03:24:54 +01:00
|
|
|
logger("Start Conversation for '".$search."'", LOGGER_DEBUG);
|
2018-05-26 22:03:30 +02:00
|
|
|
$o .= conversation($a, $r, 'search', false, false, 'commented', local_user());
|
2010-11-25 03:37:10 +01:00
|
|
|
|
2015-03-07 21:39:28 +01:00
|
|
|
$o .= alt_pager($a,count($r));
|
|
|
|
|
2015-03-08 03:24:54 +01:00
|
|
|
logger("Done '".$search."'", LOGGER_DEBUG);
|
2010-11-25 03:37:10 +01:00
|
|
|
|
2010-11-09 02:30:00 +01:00
|
|
|
return $o;
|
|
|
|
}
|