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",
18 if (dbm::is_result($r)) {
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(App &$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",
56 if (! dbm::is_result($r)) {
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(App &$a) {
85 if(x($_POST,'search'))
86 $a->data['search'] = $_POST['search'];
90 function search_content(App &$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 $free_crawls = intval(get_config('system','free_crawls'));
111 if ($free_crawls == 0)
114 $crawl_permit_period = intval(get_config('system','crawl_permit_period'));
115 if ($crawl_permit_period == 0)
116 $crawl_permit_period = 10;
118 $remote = $_SERVER["REMOTE_ADDR"];
119 $result = Cache::get("remote_search:".$remote);
120 if (!is_null($result)) {
121 $resultdata = json_decode($result);
122 if (($resultdata->time > (time() - $crawl_permit_period)) AND ($resultdata->accesses > $free_crawls)) {
123 http_status_exit(429,
124 array("title" => t("Too Many Requests"),
125 "description" => t("Only one search per minute is permitted for not logged in users.")));
128 Cache::set("remote_search:".$remote, json_encode(array("time" => time(), "accesses" => $resultdata->accesses + 1)), CACHE_HOUR);
130 Cache::set("remote_search:".$remote, json_encode(array("time" => time(), "accesses" => 1)), CACHE_HOUR);
133 nav_set_selected('search');
135 if(x($a->data,'search'))
136 $search = notags(trim($a->data['search']));
138 $search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');
143 $search = ((x($_GET,'tag')) ? notags(trim(rawurldecode($_GET['tag']))) : '');
146 // contruct a wrapper for the search header
147 $o .= replace_macros(get_markup_template("content_wrapper.tpl"),array(
148 'name' => "search-header",
149 '$title' => t("Search"),
151 '$content' => search($search,'search-box','search',((local_user()) ? true : false), false)
154 if(strpos($search,'#') === 0) {
156 $search = substr($search,1);
158 if(strpos($search,'@') === 0) {
159 return dirfind_content($a);
161 if(strpos($search,'!') === 0) {
162 return dirfind_content($a);
165 if(x($_GET,'search-option'))
166 switch($_GET['search-option']) {
173 return dirfind_content($a, "@");
176 return dirfind_content($a, "!");
183 if (get_config('system','only_tag_search'))
186 // Here is the way permissions work in the search module...
187 // Only public posts can be shown
188 // OR your own posts if you are a logged in member
189 // No items will be shown if the member has a blocked profile wall.
192 logger("Start tag search for '".$search."'", LOGGER_DEBUG);
196 STRAIGHT_JOIN `item` ON `item`.`id`=`term`.`oid` %s
197 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'
198 ORDER BY term.created DESC LIMIT %d , %d ",
199 item_fieldlists(), item_joins(), item_condition(),
200 intval(local_user()),
201 intval(TERM_OBJ_POST), intval(TERM_HASHTAG), dbesc(protect_sprintf($search)),
202 intval($a->pager['start']), intval($a->pager['itemspage']));
204 logger("Start fulltext search for '".$search."'", LOGGER_DEBUG);
206 if (get_config('system','use_fulltext_engine')) {
207 $sql_extra = sprintf(" AND MATCH (`item`.`body`, `item`.`title`) AGAINST ('%s' in boolean mode) ", dbesc(protect_sprintf($search)));
209 $sql_extra = sprintf(" AND `item`.`body` REGEXP '%s' ", dbesc(protect_sprintf(preg_quote($search))));
214 WHERE %s AND (`item`.`uid` = 0 OR (`item`.`uid` = %s AND NOT `item`.`global`))
216 GROUP BY `item`.`uri` ORDER BY `item`.`id` DESC LIMIT %d , %d",
217 item_fieldlists(), item_joins(), item_condition(),
218 intval(local_user()),
219 intval($a->pager['start']), intval($a->pager['itemspage']));
222 if (! dbm::is_result($r)) {
223 info( t('No results.') . EOL);
229 $title = sprintf( t('Items tagged with: %s'), $search);
231 $title = sprintf( t('Results for: %s'), $search);
233 $o .= replace_macros(get_markup_template("section_title.tpl"),array(
237 logger("Start Conversation for '".$search."'", LOGGER_DEBUG);
238 $o .= conversation($a,$r,'search',false);
240 $o .= alt_pager($a,count($r));
242 logger("Done '".$search."'", LOGGER_DEBUG);