small changes/fixes. duplicate searches are not saved in recent table.
[squirrelmail.git] / src / search.php
CommitLineData
c61bb006 1<?php
245a6892 2
35586184 3/**
a5ee5ac2 4 * search.php
35586184 5 *
15e6162e 6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
35586184 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * $Id$
10 */
2d367c68 11
35586184 12require_once('../src/validate.php');
13require_once('../functions/imap.php');
14require_once('../functions/imap_search.php');
15require_once('../functions/array.php');
46d38f78 16require_once('../functions/strings.php');
c61bb006 17
56e0b3b7 18
23a9084b 19/* here are some functions, could go in imap_search.php
56e0b3b7 20
23a9084b 21 this was here, pretty handy */
29eb5486 22function s_opt( $val, $sel, $tit ) {
23 echo " <option value=\"$val\"";
0d672ac0 24 if ( $sel == $val ) {
bd9bbfef 25 echo ' selected';
99d2a184 26 }
29eb5486 27 echo ">$tit</option>\n";
28}
99d2a184 29
23a9084b 30/* function to get the recent searches and put them in arrays */
56e0b3b7 31function get_recent($pref_name, $username, $data_dir) {
32 $array = array ();
33 $recent_count = getPref($data_dir, $username, 'search_memory', 0);
34 $n = 0;
35 for ($x=1;$x<=$recent_count;$x++) {
23a9084b 36 $array[$n] = getPref($data_dir, $username, "$pref_name" . "$x", "");
37 $n++;
56e0b3b7 38 }
39 return $array;
40}
41
23a9084b 42/* function to get the saved searches and put them in arrays */
56e0b3b7 43function get_saved($pref_name, $username, $data_dir) {
44 $array = array ();
45 $n = 0;
46 for ($x=1;;$x++) {
47 $array[$n] = getPref($data_dir, $username, "$pref_name" . "$x", "");
23a9084b 48 if ($array[$n] == "") {
49 array_pop($array);
50 return $array;
51 }
52 $n++;
56e0b3b7 53 }
54 return $array;
55}
56
23a9084b 57/* function to update recent pref arrays */
58function update_recent($what, $where, $mailbox, $username, $data_dir) {
59 $what_array = get_recent("search_what", $username, $data_dir);
60 $where_array = get_recent("search_where", $username, $data_dir);
61 $folder_array = get_recent("search_folder", $username, $data_dir);
62 $dupe = "no";
63 for ($i=0;$i<count($what_array);$i++) {
64 if ($what == $what_array[$i] &&
65 $where == $where_array[$i] &&
66 $mailbox == $folder_array[$i]) {
67
68 $dupe = "yes";
69 }
70 }
71 if ($dupe == "no") {
72 array_push ($what_array, $what);
73 array_push ($where_array, $where);
74 array_push ($folder_array, $mailbox);
75 array_shift ($what_array);
76 array_shift ($where_array);
77 array_shift ($folder_array);
56e0b3b7 78 $recent_count = getPref($data_dir, $username, 'search_memory', 0);
79 $n=0;
80 for ($i=1;$i<=$recent_count;$i++) {
23a9084b 81 setPref($data_dir, $username, "search_what" . "$i", $what_array[$n]);
82 setPref($data_dir, $username, "search_where" . "$i", $where_array[$n]);
83 setPref($data_dir, $username, "search_folder" . "$i", $folder_array[$n]);
56e0b3b7 84 $n++;
23a9084b 85 }
56e0b3b7 86 }
87}
88
23a9084b 89/* function to forget a recent search */
56e0b3b7 90function forget_recent($forget_index, $username, $data_dir) {
91 $what_array = get_recent("search_what", $username, $data_dir);
92 $where_array = get_recent("search_where", $username, $data_dir);
93 $folder_array = get_recent("search_folder", $username, $data_dir);
94 array_splice($what_array, $forget_index, 1);
95 array_splice($where_array, $forget_index, 1);
96 array_splice($folder_array, $forget_index, 1);
23a9084b 97 array_unshift($what_array, "");
98 array_unshift($where_array, "");
99 array_unshift($folder_array, "");
56e0b3b7 100 $recent_count = getPref($data_dir, $username, 'search_memory', 0);
101 $n=0;
102 for ($i=1;$i<=$recent_count;$i++) {
103 setPref($data_dir, $username, "search_what" . "$i", $what_array[$n]);
23a9084b 104 setPref($data_dir, $username, "search_where" . "$i", $where_array[$n]);
105 setPref($data_dir, $username, "search_folder" . "$i", $folder_array[$n]);
106 $n++;
56e0b3b7 107 }
108}
23a9084b 109
110/* function to delete a saved search */
56e0b3b7 111function delete_saved($delete_index, $username, $data_dir) {
112 $saved_what_array = get_saved("saved_what", $username, $data_dir);
113 $saved_where_array = get_saved("saved_where", $username, $data_dir);
114 $saved_folder_array = get_saved("saved_folder", $username, $data_dir);
115 array_splice($saved_what_array, $delete_index, 1);
116 array_splice($saved_where_array, $delete_index, 1);
117 array_splice($saved_folder_array, $delete_index, 1);
118 $n=0;
119 $saved_count = count($saved_what_array);
120 $last_element = $saved_count + 1;
121 if ($last_element < 1) {
122 for ($i=1;$i<=$saved_count;$i++) {
123 setPref($data_dir, $username, "saved_what" . "$i", $saved_what_array[$n]);
23a9084b 124 setPref($data_dir, $username, "saved_where" . "$i", $saved_where_array[$n]);
125 setPref($data_dir, $username, "saved_folder" . "$i", $saved_folder_array[$n]);
126 $n++;
56e0b3b7 127 }
128 }
129 removePref($data_dir, $username, "saved_what" . "$last_element");
130 removePref($data_dir, $username, "saved_where" . "$last_element");
131 removePref($data_dir, $username, "saved_folder" . "$last_element");
132}
6c8388a9 133
23a9084b 134/* function to save a search from recent to saved */
56e0b3b7 135function save_recent($save_index, $username, $data_dir) {
136 $what_array = get_recent("search_what", $username, $data_dir);
137 $where_array = get_recent("search_where", $username, $data_dir);
138 $folder_array = get_recent("search_folder", $username, $data_dir);
139 $saved_what_once = array_slice($what_array, $save_index, 1);
140 $saved_where_once = array_slice($where_array, $save_index, 1);
141 $saved_folder_once = array_slice($folder_array, $save_index, 1);
142 $saved_array = get_saved("saved_what", $username, $data_dir);
143 $saved_count = (count($saved_array) + 1);
144 setPref($data_dir, $username, "saved_what" . "$saved_count", $saved_what_once[0]);
145 setPref($data_dir, $username, "saved_where" . "$saved_count", $saved_where_once[0]);
146 setPref($data_dir, $username, "saved_folder" . "$saved_count", $saved_folder_once[0]);
147}
148
0d672ac0 149/* ------------------------ main ------------------------ */
150
23a9084b 151/* reset these arrays on each page load just in case */
56e0b3b7 152$what_array = array ();
153$where_array = array ();
154$folder_array = array ();
155$saved_what_array = array ();
156$saved_where_array = array ();
157$saved_folder_array = array ();
158$search_all = "none";
23a9084b 159$perbox_count = array ();
56e0b3b7 160
23a9084b 161/* get mailbox names */
29eb5486 162$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
c1cb7ba4 163$boxes = sqimap_mailbox_list($imapConnection);
164
56e0b3b7 165
23a9084b 166/* set current mailbox to INBOX if none was selected or if page
167 was called to search all folders. */
3b7d68e6 168if ($mailbox == 'None' || $mailbox == '' ) {
56e0b3b7 169 $mailbox = $boxes[0]['unformatted'];
170}
3b7d68e6 171if ($mailbox == 'All Folders') {
56e0b3b7 172 $search_all = "all";
c1cb7ba4 173}
174
175displayPageHeader($color, $mailbox);
c61bb006 176
23a9084b 177/* See how the page was called and fire off correct function */
88cb1b4d 178if ( !isset( $submit ) ) {
179 $submit = '';
180} else if ($submit == 'Search' && !empty($what)) {
23a9084b 181 update_recent($what, $where, $mailbox, $username, $data_dir);
56e0b3b7 182}
88cb1b4d 183elseif ($submit == 'forget') {
56e0b3b7 184 forget_recent($count, $username, $data_dir);
185}
88cb1b4d 186elseif ($submit == 'save') {
56e0b3b7 187 save_recent($count, $username, $data_dir);
188}
88cb1b4d 189elseif ($submit == 'delete') {
56e0b3b7 190 delete_saved($count, $username, $data_dir);
191}
23a9084b 192
29eb5486 193do_hook('search_before_form');
56e0b3b7 194
195echo "<BR>\n".
88cb1b4d 196 "<table width=\"100%\">\n".
197 "<TR><td bgcolor=\"$color[0]\">\n".
198 "<CENTER><B>" . _("Search") . "</B></CENTER>\n".
199 "</TD></TR>\n".
200 "</TABLE>\n";
c61bb006 201
23a9084b 202/* update the recent and saved searches from the pref files */
56e0b3b7 203$what_array = get_recent("search_what", $username, $data_dir);
204$where_array = get_recent("search_where", $username, $data_dir);
205$folder_array = get_recent("search_folder", $username, $data_dir);
206$recent_count = getPref($data_dir, $username, 'search_memory', 0);
88cb1b4d 207$saved_what_array = get_saved("saved_what", $username, $data_dir);
56e0b3b7 208$saved_where_array = get_saved("saved_where", $username, $data_dir);
209$saved_folder_array = get_saved("saved_folder", $username, $data_dir);
210$saved_count = count($saved_what_array);
91954f9e 211$count_all = 0;
a7d0eaf6 212
184ef883 213/* Saved Search Table */
56e0b3b7 214if ($saved_count > 0) {
184ef883 215 echo "<BR>\n"
88cb1b4d 216 . "<TABLE WIDTH=\"95%\" BGCOLOR=\"$color[9]\" ALIGN=\"CENTER\" CELLPADDING=1 CELLSPACING=1>"
217 . '<TR><TD align=center><B>Saved Searches</B></TD></TR><TR><TD>'
218 . '<TABLE WIDTH="100%" ALIGN="CENTER" CELLPADDING=0 CELLSPACING=0>';
184ef883 219 for ($i=0; $i < $saved_count; ++$i) {
88cb1b4d 220 if ($i % 2) {
221 echo "<TR BGCOLOR=\"$color[0]\">";
222 } else {
184ef883 223 echo "<TR BGCOLOR=\"$color[4]\">";
224 }
225 echo "<TD WIDTH=\"35%\">$saved_folder_array[$i]</TD>"
88cb1b4d 226 . "<TD ALIGN=LEFT>$saved_what_array[$i]</TD>"
227 . "<TD ALIGN=CENTER>$saved_where_array[$i]</TD>"
228 . '<TD ALIGN=RIGHT>'
229 . '<A HREF=search.php'
230 . '?mailbox=' . urlencode($saved_folder_array[$i])
231 . '&what=' . urlencode($saved_what_array[$i])
232 . '&where=' . urlencode($saved_where_array[$i])
233 . '>' . _("edit") . '</A>'
234 . '&nbsp;|&nbsp;'
235 . '<A HREF=search.php'
236 . '?mailbox=' . urlencode($saved_folder_array[$i])
237 . '&what=' . urlencode($saved_what_array[$i])
238 . '&where=' . urlencode($saved_where_array[$i])
239 . '&submit=Search_no_update'
240 . '>' . _("search") . '</A>'
241 . '&nbsp;|&nbsp;'
242 . "<A HREF=search.php?count=$i&submit=delete>"
243 . _("delete")
244 . '</A>'
245 . '</TD></TR>';
56e0b3b7 246 }
184ef883 247 echo "</TABLE></TD></TR></TABLE>\n";
a7d0eaf6 248}
249
184ef883 250/* Recent Search Table */
56e0b3b7 251if ($recent_count > 0) {
184ef883 252 echo "<BR>\n"
253 . "<TABLE WIDTH=\"95%\" BGCOLOR=\"$color[9]\" ALIGN=\"CENTER\" CELLPADDING=1 CELLSPACING=1>\n"
254 . '<TR><TD ALIGN=CENTER><B>Recent Searches</B></TD></TR><TR><TD>'
255 . '<TABLE WIDTH="100%" ALIGN="CENTER" CELLPADDING=0 CELLSPACING=0>';
256 for ($i=0; $i < $recent_count; ++$i) {
56e0b3b7 257 if (!empty($what_array[$i])) {
184ef883 258 if ($folder_array[$i] == "") {
259 $folder_array[$i] = "INBOX";
260 }
261 if ($i % 2) {
262 echo "<TR BGCOLOR=\"$color[0]\">";
263 } else {
264 echo "<TR BGCOLOR=\"$color[4]\">";
265 }
266 echo "<TD WIDTH=35%>$folder_array[$i]</TD>"
267 . "<TD ALIGN=LEFT>$what_array[$i]</TD>"
268 . "<TD ALIGN=CENTER>$where_array[$i]</TD>"
269 . '<TD ALIGN=RIGHT>'
270 . "<A HREF=search.php?count=$i&submit=save>"
271 . _("save")
272 . '</A>'
273 . '&nbsp;|&nbsp;'
274 . '<A HREF=search.php'
275 . '?mailbox=' . urlencode($folder_array[$i])
276 . '&what=' . urlencode($what_array[$i])
277 . '&where=' . urlencode($where_array[$i])
278 . '&submit=Search_no_update'
279 . '>' . _("search") . '</A>'
280 . '&nbsp;|&nbsp;'
281 . "<A HREF=search.php?count=$i&submit=forget>"
282 . _("forget")
283 . '</A>'
284 . '</TD></TR>';
0d672ac0 285 }
29eb5486 286 }
184ef883 287 echo '</TABLE></TD></TR></TABLE><BR>';
56e0b3b7 288}
184ef883 289
290/* Search Form */
3b7d68e6 291echo '<B>' . _("Current Search") . '</B>'
f1c7f8bb 292 . '<FORM ACTION="search.php" NAME=s>'
184ef883 293 . ' <TABLE WIDTH="95%" CELLPADDING=0 CELLSPACING=0>'
294 . ' <TR>'
295 . ' <TD><SELECT NAME="mailbox">';
56e0b3b7 296for ($i = 0; $i < count($boxes); $i++) {
297 if (!in_array('noselect', $boxes[$i]['flags'])) {
298 $box = $boxes[$i]['unformatted'];
299 $box2 = str_replace(' ', '&nbsp;', $boxes[$i]['unformatted-disp']);
3b7d68e6 300 if( $box2 == 'INBOX' ) {
301 $box2 = _("INBOX");
302 }
56e0b3b7 303 if ($mailbox == $box) {
304 echo " <OPTION VALUE=\"$box\" SELECTED>$box2</OPTION>\n";
0d672ac0 305 }
56e0b3b7 306 else {
307 echo " <OPTION VALUE=\"$box\">$box2</OPTION>\n";
88cb1b4d 308 }
56e0b3b7 309 }
310}
6c8388a9 311 echo "<OPTION VALUE=\"All Folders\"";
312 if ($mailbox == "All Folders") {
56e0b3b7 313 echo "SELECTED";
0d672ac0 314 }
56e0b3b7 315 echo ">All folders</OPTION>\n";
316echo ' </SELECT>'.
317 " </TD>\n".
318 " <TD ALIGN=\"CENTER\">\n";
88cb1b4d 319if ( !isset( $what ) ) {
320 $what = '';
321}
56e0b3b7 322$what_disp = str_replace(',', ' ', $what);
323$what_disp = str_replace('\\\\', '\\', $what_disp);
324$what_disp = str_replace('\\"', '"', $what_disp);
325$what_disp = str_replace('"', '&quot;', $what_disp);
326echo " <INPUT TYPE=\"TEXT\" SIZE=\"35\" NAME=\"what\" VALUE=\"$what_disp\">\n".
327 " </TD>\n".
328 "<TD ALIGN=\"RIGHT\">\n".
329 "<SELECT NAME=\"where\">";
330s_opt( 'BODY', $where, _("Body") );
331s_opt( 'TEXT', $where, _("Everywhere") );
332s_opt( 'SUBJECT', $where, _("Subject") );
333s_opt( 'FROM', $where, _("From") );
334s_opt( 'CC', $where, _("Cc") );
335s_opt( 'TO', $where, _("To") );
336echo " </SELECT>\n" .
337 " </TD>\n".
338 " <TD COLSPAN=\"3\" ALIGN=\"CENTER\">\n".
339 " <INPUT TYPE=\"submit\" NAME=\"submit\" VALUE=\"Search\">\n".
340 " </TD>\n".
341 " </TR>\n".
342 "</FORM>\n".
343 " </TABLE>\n".
344 "</TD></TR></TABLE>\n";
345
346
88cb1b4d 347do_hook('search_after_form');
56e0b3b7 348
88cb1b4d 349/*
350 search all folders option still in the works. returns a table for each
23a9084b 351 folder it finds a match in.
88cb1b4d 352*/
56e0b3b7 353
88cb1b4d 354if ($search_all == 'all') {
355 $mailbox == '';
56e0b3b7 356 $boxcount = count($boxes);
88cb1b4d 357 echo '<BR><CENTER><B>' .
358 _("Search Results") .
359 "</B><CENTER><BR>\n";
56e0b3b7 360 for ($x=0;$x<$boxcount;$x++) {
361 if (!in_array('noselect', $boxes[$x]['flags'])) {
88cb1b4d 362 $mailbox = $boxes[$x]['unformatted'];
363 }
56e0b3b7 364 if (($submit == "Search" || $submit == "Search_no_update") && !empty($what)) {
365 sqimap_mailbox_select($imapConnection, $mailbox);
88cb1b4d 366 $count_all = sqimap_search($imapConnection, $where, $what, $mailbox, $color, 0, $search_all, $count_all);
23a9084b 367 array_push($perbox_count, $count_all);
368 }
369 }
370 for ($i=0;$i<count($perbox_count);$i++) {
371 if ($perbox_count[$i] != "") {
372 break;
88cb1b4d 373 }
23a9084b 374 $count_all = "none";
88cb1b4d 375 }
23a9084b 376 if ($count_all == "none") {
88cb1b4d 377 echo '<br><b>' .
378 _("No Messages found") .
379 '</b><br>';
56e0b3b7 380 }
0d672ac0 381}
0d672ac0 382
23a9084b 383/* search one folder option */
56e0b3b7 384else {
88cb1b4d 385 if (($submit == 'Search' || $submit == 'Search_no_update') && !empty($what)) {
386 echo '<BR><CENTER><B>' .
387 _("Search Results") .
388 "</B></CENTER>\n";
56e0b3b7 389 sqimap_mailbox_select($imapConnection, $mailbox);
88cb1b4d 390 sqimap_search($imapConnection, $where, $what, $mailbox, $color, 0, $search_all, $count_all);
56e0b3b7 391 }
29eb5486 392}
56e0b3b7 393
23a9084b 394/* must have search terms to search */
88cb1b4d 395if ($submit == 'Search' && empty($what)) {
56e0b3b7 396 echo "<BR><CENTER><B>Please enter something to search for</B></CENTER>\n";
397}
398
29eb5486 399do_hook("search_bottom");
56e0b3b7 400sqimap_logout ($imapConnection);
29eb5486 401echo '</body></html>';
99d2a184 402
91954f9e 403?>