3 function search_saved_searches() {
7 if(! feature_enabled(local_user(),'savedsearch'))
10 $r = q("select `id`,`term` from `search` WHERE `uid` = %d",
19 'term' => $rr['term'],
20 'encodedterm' => urlencode($rr['term']),
21 'delete' => t('Remove term'),
22 'selected' => ($search==$rr['term']),
27 $tpl = get_markup_template("saved_searches_aside.tpl");
29 $o .= replace_macros($tpl, array(
30 '$title' => t('Saved Searches'),
42 function search_init(&$a) {
44 $search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');
47 if(x($_GET,'save') && $search) {
48 $r = q("select * from `search` where `uid` = %d and `term` = '%s' limit 1",
53 q("insert into `search` ( `uid`,`term` ) values ( %d, '%s') ",
59 if(x($_GET,'remove') && $search) {
60 q("delete from `search` where `uid` = %d and `term` = '%s' limit 1",
66 $a->page['aside'] .= search_saved_searches();
70 unset($_SESSION['theme']);
71 unset($_SESSION['mobile-theme']);
80 function search_post(&$a) {
81 if(x($_POST,'search'))
82 $a->data['search'] = $_POST['search'];
86 function search_content(&$a) {
88 if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
89 notice( t('Public access denied.') . EOL);
93 nav_set_selected('search');
95 require_once("include/bbcode.php");
96 require_once('include/security.php');
97 require_once('include/conversation.php');
99 $o = '<h3>' . t('Search') . '</h3>';
101 if(x($a->data,'search'))
102 $search = notags(trim($a->data['search']));
104 $search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');
109 $search = ((x($_GET,'tag')) ? notags(trim(rawurldecode($_GET['tag']))) : '');
113 $o .= search($search,'search-box','/search',((local_user()) ? true : false));
115 if(strpos($search,'#') === 0) {
117 $search = substr($search,1);
119 if(strpos($search,'@') === 0) {
120 require_once('mod/dirfind.php');
121 return dirfind_content($a);
127 if (get_config('system','only_tag_search'))
130 /*if (get_config('system','use_fulltext_engine')) {
132 $sql_extra = sprintf(" AND MATCH (`item`.`tag`) AGAINST ('".'"%s"'."' in boolean mode) ", '#'.dbesc(protect_sprintf($search)));
134 $sql_extra = sprintf(" AND MATCH (`item`.`body`) AGAINST ('".'"%s"'."' in boolean mode) ", dbesc(protect_sprintf($search)));
137 $sql_extra = sprintf(" AND `item`.`tag` REGEXP '%s' ", dbesc('\\]' . protect_sprintf(preg_quote($search)) . '\\['));
139 $sql_extra = sprintf(" AND `item`.`body` REGEXP '%s' ", dbesc(protect_sprintf(preg_quote($search))));
143 $sql_extra = sprintf(" AND `term`.`term` = '%s' AND `term`.`otype` = %d AND `term`.`type` = %d",
144 dbesc(protect_sprintf($search)), intval(TERM_OBJ_POST), intval(TERM_HASHTAG));
145 $sql_table = "`term` LEFT JOIN `item` ON `item`.`id` = `term`.`oid` AND `item`.`uid` = `term`.`uid` ";
147 if (get_config('system','use_fulltext_engine')) {
148 $sql_extra = sprintf(" AND MATCH (`item`.`body`, `item`.`title`) AGAINST ('%s' in boolean mode) ", dbesc(protect_sprintf($search)));
150 $sql_extra = sprintf(" AND `item`.`body` REGEXP '%s' ", dbesc(protect_sprintf(preg_quote($search))));
152 $sql_table = "`item`";
155 // Here is the way permissions work in the search module...
156 // Only public posts can be shown
157 // OR your own posts if you are a logged in member
158 // No items will be shown if the member has a blocked profile wall.
160 if( (! get_config('alt_pager', 'global')) && (! get_pconfig(local_user(),'system','alt_pager')) ) {
161 $r = q("SELECT distinct(`item`.`uri`) as `total`
162 FROM $sql_table LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id` LEFT JOIN `user` ON `user`.`uid` = `item`.`uid`
163 WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
164 AND (( `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = '' AND `item`.`private` = 0 AND `user`.`hidewall` = 0)
165 OR `item`.`uid` = %d )
166 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
170 // $sql_extra group by `item`.`uri` ",
173 $a->set_pager_total(count($r));
176 info( t('No results.') . EOL);
181 $r = q("SELECT distinct(`item`.`uri`), `item`.*, `item`.`id` AS `item_id`,
182 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`rel`,
183 `contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`,
184 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`,
186 FROM $sql_table LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
187 LEFT JOIN `user` ON `user`.`uid` = `item`.`uid`
188 WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
189 AND (( `item`.`allow_cid` = '' AND `item`.`allow_gid` = '' AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = '' AND `item`.`private` = 0 AND `user`.`hidewall` = 0 )
190 OR `item`.`uid` = %d )
191 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
193 ORDER BY `received` DESC LIMIT %d , %d ",
194 intval(local_user()),
195 intval($a->pager['start']),
196 intval($a->pager['itemspage'])
199 // group by `item`.`uri`
202 info( t('No results.') . EOL);
208 $o .= '<h2>Items tagged with: ' . $search . '</h2>';
210 $o .= '<h2>Search results for: ' . $search . '</h2>';
212 $o .= conversation($a,$r,'search',false);
214 if( get_config('alt_pager', 'global') || get_pconfig(local_user(),'system','alt_pager') ) {
215 $o .= alt_pager($a,count($r));