2 require_once("include/bbcode.php");
3 require_once('include/security.php');
4 require_once('include/conversation.php');
5 require_once('mod/dirfind.php');
7 function search_saved_searches() {
11 if(! feature_enabled(local_user(),'savedsearch'))
14 $r = q("SELECT `id`,`term` FROM `search` WHERE `uid` = %d",
23 'term' => $rr['term'],
24 'encodedterm' => urlencode($rr['term']),
25 'delete' => t('Remove term'),
26 'selected' => ($search==$rr['term']),
31 $tpl = get_markup_template("saved_searches_aside.tpl");
33 $o .= replace_macros($tpl, array(
34 '$title' => t('Saved Searches'),
46 function search_init(&$a) {
48 $search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');
51 if(x($_GET,'save') && $search) {
52 $r = q("SELECT * FROM `search` WHERE `uid` = %d AND `term` = '%s' LIMIT 1",
57 q("INSERT INTO `search` (`uid`,`term`) VALUES ( %d, '%s')",
63 if(x($_GET,'remove') && $search) {
64 q("delete from `search` where `uid` = %d and `term` = '%s' limit 1",
70 $a->page['aside'] .= search_saved_searches();
74 unset($_SESSION['theme']);
75 unset($_SESSION['mobile-theme']);
84 function search_post(&$a) {
85 if(x($_POST,'search'))
86 $a->data['search'] = $_POST['search'];
90 function search_content(&$a) {
92 if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
93 notice( t('Public access denied.') . EOL);
97 if(get_config('system','local_search') AND !local_user()) {
99 array("title" => t("Public access denied."),
100 "description" => t("Only logged in users are permitted to perform a search.")));
102 //notice(t('Public access denied.').EOL);
106 if (get_config('system','permit_crawling') AND !local_user()) {
108 // - 10 requests are "free", after the 11th only a call per minute is allowed
110 $remote = $_SERVER["REMOTE_ADDR"];
111 $result = Cache::get("remote_search:".$remote);
112 if (!is_null($result)) {
113 if ($result > (time() - 60)) {
114 http_status_exit(429,
115 array("title" => t("Too Many Requests"),
116 "description" => t("Only one search per minute is permitted for not logged in users.")));
120 Cache::set("remote_search:".$remote, time(), CACHE_HOUR);
123 nav_set_selected('search');
126 $o = '<h3>' . t('Search') . '</h3>';
128 if(x($a->data,'search'))
129 $search = notags(trim($a->data['search']));
131 $search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');
136 $search = ((x($_GET,'tag')) ? notags(trim(rawurldecode($_GET['tag']))) : '');
140 $o .= search($search,'search-box','/search',((local_user()) ? true : false), false);
142 if(strpos($search,'#') === 0) {
144 $search = substr($search,1);
146 if(strpos($search,'@') === 0) {
147 return dirfind_content($a);
149 if(strpos($search,'!') === 0) {
150 return dirfind_content($a);
153 if(x($_GET,'search-option'))
154 switch($_GET['search-option']) {
161 return dirfind_content($a, "@");
164 return dirfind_content($a, "!");
171 if (get_config('system','only_tag_search'))
174 // Here is the way permissions work in the search module...
175 // Only public posts can be shown
176 // OR your own posts if you are a logged in member
177 // No items will be shown if the member has a blocked profile wall.
180 logger("Start tag search for '".$search."'", LOGGER_DEBUG);
182 $r = q("SELECT STRAIGHT_JOIN `item`.`uri`, `item`.*, `item`.`id` AS `item_id`,
183 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`rel`,
184 `contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`,
185 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
187 INNER JOIN `item` ON `item`.`id`=`term`.`oid`
188 INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
189 WHERE `item`.`visible` AND NOT `item`.`deleted` AND NOT `item`.`moderated`
190 AND (`term`.`uid` = 0 OR (`term`.`uid` = %d AND NOT `term`.`global`)) AND `term`.`otype` = %d AND `term`.`type` = %d AND `term`.`term` = '%s'
191 ORDER BY term.created DESC LIMIT %d , %d ",
192 intval(local_user()), intval(TERM_OBJ_POST), intval(TERM_HASHTAG), dbesc(protect_sprintf($search)),
193 intval($a->pager['start']), intval($a->pager['itemspage']));
195 logger("Start fulltext search for '".$search."'", LOGGER_DEBUG);
197 if (get_config('system','use_fulltext_engine')) {
198 $sql_extra = sprintf(" AND MATCH (`item`.`body`, `item`.`title`) AGAINST ('%s' in boolean mode) ", dbesc(protect_sprintf($search)));
200 $sql_extra = sprintf(" AND `item`.`body` REGEXP '%s' ", dbesc(protect_sprintf(preg_quote($search))));
203 $r = q("SELECT STRAIGHT_JOIN `item`.`uri`, `item`.*, `item`.`id` AS `item_id`,
204 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`rel`,
205 `contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`,
206 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`
208 INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` AND NOT `contact`.`blocked` AND NOT `contact`.`pending`
209 WHERE `item`.`visible` AND NOT `item`.`deleted` AND NOT `item`.`moderated`
210 AND (`item`.`uid` = 0 OR (`item`.`uid` = %s AND (`item`.`private` OR NOT `item`.`network` IN ('%s', '%s', '%s'))))
212 GROUP BY `item`.`uri` ORDER BY `item`.`id` DESC LIMIT %d , %d ",
213 intval(local_user()), dbesc(NETWORK_DFRN), dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DIASPORA),
214 intval($a->pager['start']), intval($a->pager['itemspage']));
218 info( t('No results.') . EOL);
224 $title = sprintf( t('Items tagged with: %s'), $search);
226 $title = sprintf( t('Search results for: %s'), $search);
228 $o .= replace_macros(get_markup_template("section_title.tpl"),array(
232 logger("Start Conversation for '".$search."'", LOGGER_DEBUG);
233 $o .= conversation($a,$r,'search',false);
235 $o .= alt_pager($a,count($r));
237 logger("Done '".$search."'", LOGGER_DEBUG);