forgot to move global $message
[squirrelmail.git] / functions / imap_search.php
CommitLineData
6e189ce2 1<?php
2ba13803 2
35586184 3/**
15e6162e 4 * imap_search.php
35586184 5 *
15e6162e 6 * Copyright (c) 1999-2002 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
35586184 8 *
15e6162e 9 * IMAP search routines
35586184 10 *
15e6162e 11 * $Id$
35586184 12 */
13
35586184 14require_once('../functions/imap.php');
15require_once('../functions/date.php');
16require_once('../functions/array.php');
17require_once('../functions/mailbox_display.php');
18require_once('../functions/mime.php');
2ba13803 19
b1e29794 20function sqimap_search($imapConnection, $search_where, $search_what, $mailbox,
21 $color, $search_position = '', $search_all, $count_all) {
2ba13803 22
b1e29794 23 global $msgs, $message_highlight_list, $squirrelmail_language, $languages,
65ffb3ce 24 $index_order, $pos, $allow_charset_search;
53828ec5 25
26 $pos = $search_position;
2ba13803 27
29eb5486 28 $urlMailbox = urlencode($mailbox);
2ba13803 29
b1e29794 30 /* construct the search query, taking multiple search terms into account */
31 $multi_search = array();
32 $search_what = trim($search_what);
33 $search_what = ereg_replace('[ ]{2,}', ' ', $search_what);
34 $multi_search = explode(' ', $search_what);
35 $search_string = '';
36 foreach ($multi_search as $multi_search_part) {
484a2e6a 37 $search_string .= $search_where . ' {' . strlen($multi_search_part)
38 . "}\r\n" . $multi_search_part . ' ';
b1e29794 39 }
484a2e6a 40
70c4fd84 41 $search_string = trim($search_string);
c92ef720 42
b1e29794 43 /* now use $search_string in the imap search */
65ffb3ce 44 if ($allow_charset_search && isset($languages[$squirrelmail_language]['CHARSET']) &&
29eb5486 45 $languages[$squirrelmail_language]['CHARSET']) {
8ceffac2 46 $ss = "SEARCH CHARSET "
47 . strtoupper($languages[$squirrelmail_language]['CHARSET'])
48 . " ALL $search_string";
29eb5486 49 } else {
b1e29794 50 $ss = "SEARCH ALL $search_string";
29eb5486 51 }
b1e29794 52
53 /* read data back from IMAP */
632a9a19 54 $readin = sqimap_run_command($imapConnection, $ss, false, $result, $message);
b1e29794 55
56 /* try US-ASCII charset if search fails */
8ceffac2 57 if (isset($languages[$squirrelmail_language]['CHARSET'])
58 && strtolower($result) == 'no') {
fee5ad96 59 $ss = "SEARCH CHARSET \"US-ASCII\" ALL $search_string";
8ceffac2 60 $readin = sqimap_run_command ($imapConnection, $ss, true,
61 $result, $message);
29eb5486 62 }
2ba13803 63
70c4fd84 64 unset($messagelist);
65 $msgs = '';
b1e29794 66
67 /* Keep going till we find the SEARCH response */
68 foreach ($readin as $readin_part) {
69 /* Check to see if a SEARCH response was received */
70 if (substr($readin_part, 0, 9) == '* SEARCH ') {
71 $messagelist = explode(' ', substr($readin_part, 9));
72 } else if (isset($errors)) {
73 $errors = $errors.$readin_part;
74 } else {
75 $errors = $readin_part;
76 }
29eb5486 77 }
2ba13803 78
29eb5486 79 /* If nothing is found * SEARCH should be the first error else echo errors */
b1e29794 80 if (isset($errors)) {
81 if (strstr($errors,'* SEARCH')) {
82 if ($search_all != 'all') {
83 echo '<br><CENTER>' . _("No Messages Found") . '</CENTER>';
84 }
70c4fd84 85 return;
86 }
b1e29794 87 echo "<!-- $errors -->";
29eb5486 88 }
2ba13803 89
29eb5486 90 /*
b1e29794 91 * HACKED CODE FROM ANOTHER FUNCTION, could probably dump this and modify
92 * existing code with a search true/false variable.
93 */
2ba13803 94
29eb5486 95 global $sent_folder;
96 for ($q = 0; $q < count($messagelist); $q++) {
97 $id[$q] = trim($messagelist[$q]);
98 }
99 $issent = ($mailbox == $sent_folder);
100 $hdr_list = sqimap_get_small_header_list($imapConnection, $id, $issent);
f6b58812 101// $flags = sqimap_get_flags_list($imapConnection, $id, $issent);
102
29eb5486 103 foreach ($hdr_list as $hdr) {
104 $from[] = $hdr->from;
105 $date[] = $hdr->date;
106 $subject[] = $hdr->subject;
107 $to[] = $hdr->to;
108 $priority[] = $hdr->priority;
109 $cc[] = $hdr->cc;
110 $size[] = $hdr->size;
111 $type[] = $hdr->type0;
f6b58812 112 $flag_deleted[] = $hdr->flag_deleted;
113 $flag_answered[] = $hdr->flag_answered;
114 $flag_seen[] = $hdr->flag_seen;
115 $flag_flagged[] = $hdr->flag_flagged;
29eb5486 116 }
2ba13803 117
29eb5486 118 $j = 0;
119 while ($j < count($messagelist)) {
0f8a1ce9 120 $date[$j] = str_replace(' ', ' ', $date[$j]);
b1e29794 121 $tmpdate = explode(' ', trim($date[$j]));
29eb5486 122
123 $messages[$j]["TIME_STAMP"] = getTimeStamp($tmpdate);
124 $messages[$j]["DATE_STRING"] = getDateString($messages[$j]["TIME_STAMP"]);
125 $messages[$j]["ID"] = $id[$j];
126 $messages[$j]["FROM"] = decodeHeader($from[$j]);
127 $messages[$j]["FROM-SORT"] = strtolower(sqimap_find_displayable_name(decodeHeader($from[$j])));
128 $messages[$j]["SUBJECT"] = decodeHeader($subject[$j]);
129 $messages[$j]["SUBJECT-SORT"] = strtolower(decodeHeader($subject[$j]));
130 $messages[$j]["TO"] = decodeHeader($to[$j]);
131 $messages[$j]["PRIORITY"] = $priority[$j];
132 $messages[$j]["CC"] = $cc[$j];
133 $messages[$j]["SIZE"] = $size[$j];
134 $messages[$j]["TYPE0"] = $type[$j];
f6b58812 135 $messages[$j]['FLAG_DELETED'] = $flag_deleted[$j];
136 $messages[$j]['FLAG_ANSWERED'] = $flag_answered[$j];
137 $messages[$j]['FLAG_SEEN'] = $flag_seen[$j];
138 $messages[$j]['FLAG_FLAGGED'] = $flag_flagged[$j];
139/*
29eb5486 140 $num = 0;
141 while ($num < count($flags[$j])) {
142 if ($flags[$j][$num] == 'Deleted') {
143 $messages[$j]['FLAG_DELETED'] = true;
144 } else if ($flags[$j][$num] == 'Answered') {
145 $messages[$j]['FLAG_ANSWERED'] = true;
146 } else if ($flags[$j][$num] == 'Seen') {
147 $messages[$j]['FLAG_SEEN'] = true;
148 } else if ($flags[$j][$num] == 'Flagged') {
149 $messages[$j]['FLAG_FLAGGED'] = true;
2ba13803 150 }
29eb5486 151 $num++;
fc05541b 152 }
f6b58812 153*/
29eb5486 154 $j++;
f6b58812 155
29eb5486 156 }
2ba13803 157
29eb5486 158 /* Find and remove the ones that are deleted */
159 $i = 0;
160 $j = 0;
161 while ($j < count($messagelist)) {
70c4fd84 162 if (isset($messages[$j]['FLAG_DELETED']) && $messages[$j]['FLAG_DELETED']) {
1809bad8 163 $j++;
29eb5486 164 continue;
2ba13803 165 }
29eb5486 166 $msgs[$i] = $messages[$j];
2ba13803 167
29eb5486 168 $i++;
169 $j++;
170 }
171 $numMessages = $i;
2ba13803 172
29eb5486 173 /* There's gotta be messages in the array for it to sort them. */
2ba13803 174
29eb5486 175 if (count($messagelist) > 0) {
176 $j=0;
70c4fd84 177 if (!isset ($msg)) {
178 $msg = '';
53828ec5 179 }
8d93176b 180 if ($search_all != 'all') {
70c4fd84 181 if ( !isset( $start_msg ) ) {
182 $start_msg =0;
183 }
184 if ( !isset( $sort ) ) {
185 $sort = 0;
186 }
8d93176b 187 mail_message_listing_beginning( $imapConnection,
188 "move_messages.php?msg=$msg&mailbox=$urlMailbox&pos=$pos&where=" . urlencode($search_where) . "&what=".urlencode($search_what),
b1e29794 189 $mailbox,
8d93176b 190 -1,
191 '<b>' . _("Found") . ' ' . count($messagelist) . ' ' . _("messages") . '</b></tr><tr>'.
b1e29794 192 get_selectall_link($start_msg, $sort));
8d93176b 193 }
194 else {
195 mail_message_listing_beginning( $imapConnection,
196 "move_messages.php?msg=$msg&mailbox=$urlMailbox&pos=$pos&where=" . urlencode($search_where) . "&what=".urlencode($search_what),
b1e29794 197 $mailbox,
8d93176b 198 -1,
199 '<b>' . _("Found") . ' ' . count($messagelist) . ' ' . _("messages") . '</b></tr><tr>');
200 }
f8a2d9ee 201 if ( $mailbox == 'INBOX' ) {
202 $showbox = _("INBOX");
203 } else {
204 $showbox = $mailbox;
205 }
206 echo '<b><big>' . _("Folder:") . " $showbox</big></b>";
29eb5486 207 while ($j < count($msgs)) {
208 printMessageInfo($imapConnection, $msgs[$j]["ID"], 0, $j, $mailbox, '', 0, $search_where, $search_what);
209 $j++;
70c4fd84 210 echo '</td></tr>';
2ba13803 211 }
7c0060c9 212 echo '</table></td></tr></table></form>';
70c4fd84 213 $count_all = count($msgs);
2ba13803 214 }
70c4fd84 215 return $count_all;
29eb5486 216}
fc05541b 217
1c72b151 218?>