2010-11-09 02:30:00 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
2010-12-13 03:43:32 +01:00
|
|
|
function search_post(&$a) {
|
|
|
|
if(x($_POST,'search'))
|
|
|
|
$a->data['search'] = $_POST['search'];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2011-04-13 02:58:16 +02:00
|
|
|
require_once("include/bbcode.php");
|
|
|
|
require_once('include/security.php');
|
|
|
|
require_once('include/conversation.php');
|
|
|
|
|
2011-01-07 13:33:34 +01:00
|
|
|
if(x($_SESSION,'theme'))
|
|
|
|
unset($_SESSION['theme']);
|
|
|
|
|
2010-11-09 02:30:00 +01:00
|
|
|
$o = '<div id="live-search"></div>' . "\r\n";
|
|
|
|
|
|
|
|
$o .= '<h3>' . t('Search') . '</h3>';
|
|
|
|
|
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
|
|
|
|
|
|
|
$o .= search($search);
|
|
|
|
|
|
|
|
if(! $search)
|
|
|
|
return $o;
|
|
|
|
|
|
|
|
|
|
|
|
$sql_extra = "
|
|
|
|
AND `item`.`allow_cid` = ''
|
|
|
|
AND `item`.`allow_gid` = ''
|
|
|
|
AND `item`.`deny_cid` = ''
|
|
|
|
AND `item`.`deny_gid` = ''
|
|
|
|
";
|
|
|
|
|
2011-04-05 15:27:40 +02:00
|
|
|
$s_bool = "AND MATCH (`item`.`body`) AGAINST ( '%s' IN BOOLEAN MODE )";
|
|
|
|
$s_regx = "AND `item`.`body` REGEXP '%s' ";
|
|
|
|
|
|
|
|
if(mb_strlen($search) >= 3)
|
|
|
|
$search_alg = $s_bool;
|
|
|
|
else
|
|
|
|
$search_alg = $s_regx;
|
|
|
|
|
2010-11-09 02:30:00 +01:00
|
|
|
$r = q("SELECT COUNT(*) AS `total`
|
|
|
|
FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
|
|
|
|
WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0
|
2010-11-09 06:10:53 +01:00
|
|
|
AND ( `wall` = 1 OR `contact`.`uid` = %d )
|
2010-11-09 02:30:00 +01:00
|
|
|
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
|
2011-04-05 15:27:40 +02:00
|
|
|
$search_alg
|
2010-11-09 02:30:00 +01:00
|
|
|
$sql_extra ",
|
2010-11-09 06:10:53 +01:00
|
|
|
intval(local_user()),
|
2010-11-09 02:30:00 +01:00
|
|
|
dbesc($search)
|
|
|
|
);
|
|
|
|
|
|
|
|
if(count($r))
|
|
|
|
$a->set_pager_total($r[0]['total']);
|
|
|
|
|
|
|
|
if(! $r[0]['total']) {
|
2011-03-11 05:46:27 +01:00
|
|
|
notice( t('No results.') . EOL);
|
2010-11-09 02:30:00 +01:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|
|
|
|
$r = q("SELECT `item`.*, `item`.`id` AS `item_id`,
|
|
|
|
`contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`rel`,
|
2011-04-11 12:22:09 +02:00
|
|
|
`contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`,
|
2010-11-09 02:30:00 +01:00
|
|
|
`contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`,
|
|
|
|
`user`.`nickname`
|
|
|
|
FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
|
|
|
|
LEFT JOIN `user` ON `user`.`uid` = `item`.`uid`
|
|
|
|
WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0
|
2010-11-09 06:10:53 +01:00
|
|
|
AND ( `wall` = 1 OR `contact`.`uid` = %d )
|
2010-11-09 02:30:00 +01:00
|
|
|
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
|
2011-04-05 15:27:40 +02:00
|
|
|
$search_alg
|
2010-11-09 02:30:00 +01:00
|
|
|
$sql_extra
|
|
|
|
ORDER BY `parent` DESC ",
|
2010-11-09 06:10:53 +01:00
|
|
|
intval(local_user()),
|
2010-11-09 02:30:00 +01:00
|
|
|
dbesc($search)
|
|
|
|
);
|
|
|
|
|
2011-04-11 10:31:04 +02:00
|
|
|
|
|
|
|
|
|
|
|
$o .= conversation($a,$r,'search',false);
|
2010-11-25 03:37:10 +01:00
|
|
|
|
|
|
|
$o .= paginate($a);
|
|
|
|
|
2010-11-09 02:30:00 +01:00
|
|
|
return $o;
|
|
|
|
}
|
|
|
|
|