2010-11-09 02:30:00 +01:00
|
|
|
<?php
|
2015-08-24 11:55:29 +02:00
|
|
|
require_once("include/bbcode.php");
|
|
|
|
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 = '';
|
|
|
|
|
2012-11-22 17:14:22 +01:00
|
|
|
if(! feature_enabled(local_user(),'savedsearch'))
|
|
|
|
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())
|
|
|
|
);
|
|
|
|
|
|
|
|
if(count($r)) {
|
2012-10-02 16:03:20 +02:00
|
|
|
$saved = array();
|
2011-09-09 06:42:52 +02:00
|
|
|
foreach($r as $rr) {
|
2012-10-02 16:03:20 +02:00
|
|
|
$saved[] = array(
|
2015-05-30 02:21:30 +02:00
|
|
|
'id' => $rr['id'],
|
|
|
|
'term' => $rr['term'],
|
|
|
|
'encodedterm' => urlencode($rr['term']),
|
|
|
|
'delete' => t('Remove term'),
|
|
|
|
'selected' => ($search==$rr['term']),
|
2012-10-02 16:03:20 +02: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");
|
|
|
|
|
|
|
|
$o .= replace_macros($tpl, array(
|
2015-05-30 02:21:30 +02:00
|
|
|
'$title' => t('Saved Searches'),
|
|
|
|
'$add' => '',
|
|
|
|
'$searchbox' => '',
|
|
|
|
'$saved' => $saved,
|
2012-10-02 16:03:20 +02: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
|
|
|
|
2011-09-09 06:42:52 +02:00
|
|
|
function search_init(&$a) {
|
|
|
|
|
|
|
|
$search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');
|
|
|
|
|
|
|
|
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()),
|
|
|
|
dbesc($search)
|
|
|
|
);
|
|
|
|
if(! count($r)) {
|
2015-05-23 01:23:31 +02:00
|
|
|
q("INSERT INTO `search` (`uid`,`term`) VALUES ( %d, '%s')",
|
2011-09-09 06:42:52 +02:00
|
|
|
intval(local_user()),
|
|
|
|
dbesc($search)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(x($_GET,'remove') && $search) {
|
2016-06-09 13:06:21 +02:00
|
|
|
q("DELETE FROM `search` WHERE `uid` = %d AND `term` = '%s' LIMIT 1",
|
2011-09-09 06:42:52 +02:00
|
|
|
intval(local_user()),
|
|
|
|
dbesc($search)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$a->page['aside'] .= search_saved_searches();
|
|
|
|
|
|
|
|
}
|
2012-09-07 01:24:34 +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
|
|
|
|
2010-12-13 03:43:32 +01:00
|
|
|
function search_post(&$a) {
|
|
|
|
if(x($_POST,'search'))
|
|
|
|
$a->data['search'] = $_POST['search'];
|
|
|
|
}
|
|
|
|
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2010-11-09 02:30:00 +01:00
|
|
|
function search_content(&$a) {
|
|
|
|
|
2011-04-22 02:29:47 +02:00
|
|
|
if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
|
|
|
|
notice( t('Public access denied.') . EOL);
|
|
|
|
return;
|
|
|
|
}
|
2012-05-26 11:51:48 +02:00
|
|
|
|
2015-09-05 04:29:37 +02:00
|
|
|
if(get_config('system','local_search') AND !local_user()) {
|
2015-10-03 23:16:40 +02:00
|
|
|
http_status_exit(403,
|
|
|
|
array("title" => t("Public access denied."),
|
|
|
|
"description" => t("Only logged in users are permitted to perform a search.")));
|
|
|
|
killme();
|
|
|
|
//notice(t('Public access denied.').EOL);
|
|
|
|
//return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (get_config('system','permit_crawling') AND !local_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
|
|
|
|
|
|
|
|
$free_crawls = intval(get_config('system','free_crawls'));
|
|
|
|
if ($free_crawls == 0)
|
|
|
|
$free_crawls = 10;
|
|
|
|
|
|
|
|
$crawl_permit_period = intval(get_config('system','crawl_permit_period'));
|
|
|
|
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);
|
|
|
|
if (($resultdata->time > (time() - $crawl_permit_period)) AND ($resultdata->accesses > $free_crawls)) {
|
2015-10-03 23:16:40 +02:00
|
|
|
http_status_exit(429,
|
|
|
|
array("title" => t("Too Many Requests"),
|
|
|
|
"description" => t("Only one search per minute is permitted for not logged in users.")));
|
|
|
|
killme();
|
|
|
|
}
|
2015-12-06 22:01:20 +01:00
|
|
|
Cache::set("remote_search:".$remote, json_encode(array("time" => time(), "accesses" => $resultdata->accesses + 1)), CACHE_HOUR);
|
|
|
|
} else
|
|
|
|
Cache::set("remote_search:".$remote, json_encode(array("time" => time(), "accesses" => 1)), CACHE_HOUR);
|
2015-09-05 04:29:37 +02:00
|
|
|
}
|
|
|
|
|
2011-08-17 18:36:24 +02:00
|
|
|
nav_set_selected('search');
|
2011-04-22 02:29:47 +02:00
|
|
|
|
2010-12-13 03:43:32 +01:00
|
|
|
if(x($a->data,'search'))
|
|
|
|
$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;
|
|
|
|
if(x($_GET,'tag')) {
|
|
|
|
$tag = true;
|
|
|
|
$search = ((x($_GET,'tag')) ? notags(trim(rawurldecode($_GET['tag']))) : '');
|
|
|
|
}
|
|
|
|
|
2016-06-07 16:32:02 +02:00
|
|
|
// contruct a wrapper for the search header
|
|
|
|
$o .= replace_macros(get_markup_template("content_wrapper.tpl"),array(
|
|
|
|
'name' => "search-header",
|
|
|
|
'$title' => t("Search"),
|
|
|
|
'$title_size' => 3,
|
|
|
|
'$content' => search($search,'search-box','search',((local_user()) ? true : false), false)
|
|
|
|
));
|
2010-11-09 02:30:00 +01:00
|
|
|
|
2012-05-19 11:42:11 +02:00
|
|
|
if(strpos($search,'#') === 0) {
|
|
|
|
$tag = true;
|
|
|
|
$search = substr($search,1);
|
|
|
|
}
|
2012-05-20 06:53:27 +02:00
|
|
|
if(strpos($search,'@') === 0) {
|
|
|
|
return dirfind_content($a);
|
|
|
|
}
|
2015-07-30 23:27:50 +02:00
|
|
|
if(strpos($search,'!') === 0) {
|
|
|
|
return dirfind_content($a);
|
|
|
|
}
|
2012-05-19 11:42:11 +02:00
|
|
|
|
2016-06-07 16:32:02 +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;
|
|
|
|
}
|
|
|
|
|
2010-11-09 02:30:00 +01:00
|
|
|
if(! $search)
|
|
|
|
return $o;
|
|
|
|
|
2013-01-13 09:37:15 +01:00
|
|
|
if (get_config('system','only_tag_search'))
|
|
|
|
$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
|
|
|
|
2015-03-07 21:24:39 +01: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
|
|
|
|
2016-06-20 22:03:40 +02:00
|
|
|
$r = q("SELECT %s
|
2015-03-07 21:24:39 +01:00
|
|
|
FROM `term`
|
2016-06-20 22:03:40 +02:00
|
|
|
STRAIGHT_JOIN `item` ON `item`.`id`=`term`.`oid` %s
|
2016-06-12 21:04:55 +02:00
|
|
|
WHERE %s AND (`term`.`uid` = 0 OR (`term`.`uid` = %d AND NOT `term`.`global`)) AND `term`.`otype` = %d AND `term`.`type` = %d AND `term`.`term` = '%s'
|
2015-03-09 00:45:53 +01:00
|
|
|
ORDER BY term.created DESC LIMIT %d , %d ",
|
2016-06-19 01:07:20 +02:00
|
|
|
item_fieldlists(), item_joins(), item_condition(),
|
2016-06-12 21:04:55 +02:00
|
|
|
intval(local_user()),
|
|
|
|
intval(TERM_OBJ_POST), intval(TERM_HASHTAG), dbesc(protect_sprintf($search)),
|
2015-03-07 21:24:39 +01:00
|
|
|
intval($a->pager['start']), intval($a->pager['itemspage']));
|
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
|
|
|
|
2013-01-13 14:50:55 +01:00
|
|
|
if (get_config('system','use_fulltext_engine')) {
|
|
|
|
$sql_extra = sprintf(" AND MATCH (`item`.`body`, `item`.`title`) AGAINST ('%s' in boolean mode) ", dbesc(protect_sprintf($search)));
|
|
|
|
} else {
|
|
|
|
$sql_extra = sprintf(" AND `item`.`body` REGEXP '%s' ", dbesc(protect_sprintf(preg_quote($search))));
|
|
|
|
}
|
2012-04-24 07:41:32 +02:00
|
|
|
|
2016-06-20 22:03:40 +02:00
|
|
|
|
|
|
|
$r = q("SELECT %s
|
2016-06-19 01:07:20 +02:00
|
|
|
FROM `item` %s
|
2016-06-12 21:04:55 +02:00
|
|
|
WHERE %s AND (`item`.`uid` = 0 OR (`item`.`uid` = %s AND NOT `item`.`global`))
|
2015-03-07 21:24:39 +01:00
|
|
|
$sql_extra
|
2016-06-12 21:04:55 +02:00
|
|
|
GROUP BY `item`.`uri` ORDER BY `item`.`id` DESC LIMIT %d , %d",
|
2016-06-19 01:07:20 +02:00
|
|
|
item_fieldlists(), item_joins(), item_condition(),
|
2016-06-12 21:04:55 +02:00
|
|
|
intval(local_user()),
|
|
|
|
intval($a->pager['start']), intval($a->pager['itemspage']));
|
2010-11-09 02:30:00 +01:00
|
|
|
}
|
|
|
|
|
2012-07-14 20:21:58 +02:00
|
|
|
if(! count($r)) {
|
|
|
|
info( t('No results.') . EOL);
|
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-10-15 00:49:13 +02:00
|
|
|
if($tag)
|
2015-05-30 02:21:30 +02:00
|
|
|
$title = sprintf( t('Items tagged with: %s'), $search);
|
2012-04-24 07:41:32 +02:00
|
|
|
else
|
2016-06-09 13:06:21 +02:00
|
|
|
$title = sprintf( t('Results for: %s'), $search);
|
2015-05-30 02:21:30 +02:00
|
|
|
|
|
|
|
$o .= replace_macros(get_markup_template("section_title.tpl"),array(
|
|
|
|
'$title' => $title
|
|
|
|
));
|
2011-04-11 10:31:04 +02:00
|
|
|
|
2015-03-08 03:24:54 +01:00
|
|
|
logger("Start Conversation for '".$search."'", LOGGER_DEBUG);
|
2011-04-11 10:31:04 +02:00
|
|
|
$o .= conversation($a,$r,'search',false);
|
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;
|
|
|
|
}
|
2016-02-07 15:11:34 +01:00
|
|
|
|