]> git.mxchange.org Git - friendica.git/blob - mod/search.php
Merge pull request #817 from annando/master
[friendica.git] / mod / search.php
1 <?php
2
3 function search_saved_searches() {
4
5         $o = '';
6
7         if(! feature_enabled(local_user(),'savedsearch'))
8                 return $o;
9
10         $r = q("select `id`,`term` from `search` WHERE `uid` = %d",
11                 intval(local_user())
12         );
13
14         if(count($r)) {
15                 $saved = array();
16                 foreach($r as $rr) {
17                         $saved[] = array(
18                                 'id'            => $rr['id'],
19                                 'term'                  => $rr['term'],
20                                 'encodedterm'   => urlencode($rr['term']),
21                                 'delete'                => t('Remove term'),
22                                 'selected'              => ($search==$rr['term']),
23                         );
24                 }
25
26
27                 $tpl = get_markup_template("saved_searches_aside.tpl");
28
29                 $o .= replace_macros($tpl, array(
30                         '$title'         => t('Saved Searches'),
31                         '$add'           => '',
32                         '$searchbox' => '',
33                         '$saved'         => $saved,
34                 ));
35         }
36
37         return $o;
38
39 }
40
41
42 function search_init(&$a) {
43
44         $search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');
45
46         if(local_user()) {
47                 if(x($_GET,'save') && $search) {
48                         $r = q("select * from `search` where `uid` = %d and `term` = '%s' limit 1",
49                                 intval(local_user()),
50                                 dbesc($search)
51                         );
52                         if(! count($r)) {
53                                 q("insert into `search` ( `uid`,`term` ) values ( %d, '%s') ",
54                                         intval(local_user()),
55                                         dbesc($search)
56                                 );
57                         }
58                 }
59                 if(x($_GET,'remove') && $search) {
60                         q("delete from `search` where `uid` = %d and `term` = '%s' limit 1",
61                                 intval(local_user()),
62                                 dbesc($search)
63                         );
64                 }
65
66                 $a->page['aside'] .= search_saved_searches();
67
68         }
69         else {
70                 unset($_SESSION['theme']);
71                 unset($_SESSION['mobile-theme']);
72         }
73
74
75
76 }
77
78
79
80 function search_post(&$a) {
81         if(x($_POST,'search'))
82                 $a->data['search'] = $_POST['search'];
83 }
84
85
86 function search_content(&$a) {
87
88         if((get_config('system','block_public')) && (! local_user()) && (! remote_user())) {
89                 notice( t('Public access denied.') . EOL);
90                 return;
91         }
92
93         nav_set_selected('search');
94
95         require_once("include/bbcode.php");
96         require_once('include/security.php');
97         require_once('include/conversation.php');
98
99         $o = '<h3>' . t('Search') . '</h3>';
100
101         if(x($a->data,'search'))
102                 $search = notags(trim($a->data['search']));
103         else
104                 $search = ((x($_GET,'search')) ? notags(trim(rawurldecode($_GET['search']))) : '');
105
106         $tag = false;
107         if(x($_GET,'tag')) {
108                 $tag = true;
109                 $search = ((x($_GET,'tag')) ? notags(trim(rawurldecode($_GET['tag']))) : '');
110         }
111
112
113         $o .= search($search,'search-box','/search',((local_user()) ? true : false));
114
115         if(strpos($search,'#') === 0) {
116                 $tag = true;
117                 $search = substr($search,1);
118         }
119         if(strpos($search,'@') === 0) {
120                 require_once('mod/dirfind.php');
121                 return dirfind_content($a);
122         }
123
124         if(! $search)
125                 return $o;
126
127         if (get_config('system','only_tag_search'))
128                 $tag = true;
129
130         if($tag) {
131                 //$sql_extra = sprintf(" AND `term`.`term` = '%s' AND `term`.`otype` = %d AND `term`.`type` = %d",
132                 //$sql_extra = sprintf(" AND `term`.`term` = '%s' AND `term`.`otype` = %d AND `term`.`type` = %d group by `item`.`uri` ",
133                 //                      dbesc(protect_sprintf($search)), intval(TERM_OBJ_POST), intval(TERM_HASHTAG));
134                 //$sql_table = "`term` LEFT JOIN `item` ON `item`.`id` = `term`.`oid` AND `item`.`uid` = `term`.`uid` ";
135                 //$sql_order = "`term`.`tid`";
136                 //$sql_order = "`item`.`received`";
137
138                 //$sql_extra = sprintf(" AND EXISTS (SELECT * FROM `term` WHERE `item`.`id` = `term`.`oid` AND `item`.`uid` = `term`.`uid` AND `term`.`term` = '%s' AND `term`.`otype` = %d AND `term`.`type` = %d) GROUP BY `item`.`uri` ",
139                 //                      dbesc(protect_sprintf($search)), intval(TERM_OBJ_POST), intval(TERM_HASHTAG));
140                 //$sql_table = "`item` FORCE INDEX (`uri`) ";
141
142                 $sql_extra = "";
143
144                 $sql_table = sprintf("`item` INNER JOIN (SELECT `oid` FROM `term` WHERE `term` = '%s' AND `otype` = %d AND `type` = %d AND `uid` = %d ORDER BY `tid` DESC) AS `term` ON `item`.`id` = `term`.`oid` ",
145                                         dbesc(protect_sprintf($search)), intval(TERM_OBJ_POST), intval(TERM_HASHTAG), intval(local_user()));
146
147                 $sql_order = "`item`.`received`";
148         } else {
149                 if (get_config('system','use_fulltext_engine')) {
150                         $sql_extra = sprintf(" AND MATCH (`item`.`body`, `item`.`title`) AGAINST ('%s' in boolean mode) ", dbesc(protect_sprintf($search)));
151                 } else {
152                         $sql_extra = sprintf(" AND `item`.`body` REGEXP '%s' ", dbesc(protect_sprintf(preg_quote($search))));
153                 }
154                 $sql_table = "`item`";
155                 $sql_order = "`item`.`received`";
156         }
157
158         // Here is the way permissions work in the search module...
159         // Only public posts can be shown
160         // OR your own posts if you are a logged in member
161         // No items will be shown if the member has a blocked profile wall. 
162
163         if( (! get_config('alt_pager', 'global')) && (! get_pconfig(local_user(),'system','alt_pager')) ) {
164                 $r = q("SELECT distinct(`item`.`uri`) as `total`
165                         FROM $sql_table LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id` LEFT JOIN `user` ON `user`.`uid` = `item`.`uid`
166                         WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
167                         AND (( `item`.`allow_cid` = ''  AND `item`.`allow_gid` = '' AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = '' AND `item`.`private` = 0 AND `user`.`hidewall` = 0) 
168                                 OR ( `item`.`uid` = %d ))
169                         AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
170                         $sql_extra ",
171                         intval(local_user())
172                 );
173 //                      $sql_extra group by `item`.`uri` ",
174
175                 if(count($r))
176                         $a->set_pager_total(count($r));
177
178                 if(! count($r)) {
179                         info( t('No results.') . EOL);
180                         return $o;
181                 }
182         }
183
184         $r = q("SELECT `item`.`uri`, `item`.*, `item`.`id` AS `item_id`, 
185                 `contact`.`name`, `contact`.`photo`, `contact`.`url`, `contact`.`alias`, `contact`.`rel`,
186                 `contact`.`network`, `contact`.`thumb`, `contact`.`self`, `contact`.`writable`, 
187                 `contact`.`id` AS `cid`, `contact`.`uid` AS `contact-uid`,
188                 `user`.`nickname`, `user`.`uid`, `user`.`hidewall`
189                 FROM $sql_table LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id`
190                 LEFT JOIN `user` ON `user`.`uid` = `item`.`uid`
191                 WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
192                 AND (( `item`.`allow_cid` = ''  AND `item`.`allow_gid` = '' AND `item`.`deny_cid`  = '' AND `item`.`deny_gid`  = '' AND `item`.`private` = 0 AND `user`.`hidewall` = 0 ) 
193                         OR ( `item`.`uid` = %d ))
194                 AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
195                 $sql_extra
196                 ORDER BY $sql_order DESC LIMIT %d , %d ",
197                 intval(local_user()),
198                 intval($a->pager['start']),
199                 intval($a->pager['itemspage'])
200
201         );
202 //              group by `item`.`uri`
203
204         if(! count($r)) {
205                 info( t('No results.') . EOL);
206                 return $o;
207         }
208
209
210         if($tag)
211                 $o .= '<h2>Items tagged with: ' . $search . '</h2>';
212         else
213                 $o .= '<h2>Search results for: ' . $search . '</h2>';
214
215         $o .= conversation($a,$r,'search',false);
216
217         if( get_config('alt_pager', 'global') || get_pconfig(local_user(),'system','alt_pager') ) {
218                 $o .= alt_pager($a,count($r));
219         }
220         else {
221                 $o .= paginate($a);
222         }
223
224         return $o;
225 }
226