Make Answered flag translatable
[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
91954f9e 20function sqimap_search($imapConnection,$search_where,$search_what,$mailbox,$color, $search_position = '', $search_all, $count_all) {
2ba13803 21
29eb5486 22 global $msgs, $message_highlight_list, $squirrelmail_language, $languages, $index_order;
53828ec5 23 global $pos;
24
25 $pos = $search_position;
2ba13803 26
29eb5486 27 $urlMailbox = urlencode($mailbox);
2ba13803 28
29eb5486 29 /* Construct the Search QuERY */
c92ef720 30
31# account for multiple search terms
32
33 $multi_search = array ();
0f8a1ce9 34 $search_what = ereg_replace("[ ]{2,}", ' ', $search_what);
35 $multi_search = split (' ', $search_what);
c92ef720 36 if (count($multi_search)==1) {
0f8a1ce9 37 $search_string = $search_where . ' ' . '"' . $multi_search[0] . '"';
c92ef720 38 }
39 else {
0f8a1ce9 40 $search_string = '';
c92ef720 41 $count = count($multi_search);
42 for ($x=0;$x<$count;$x++) {
0f8a1ce9 43 $search_string = $search_string . ' ' . $search_where . " " . '"' . $multi_search[$x] . '" ';
c92ef720 44 }
45 }
0f8a1ce9 46 $search_string = trim($search_string);
c92ef720 47
48# now use $search_string in the imap search
49
29eb5486 50 if (isset($languages[$squirrelmail_language]['CHARSET']) &&
51 $languages[$squirrelmail_language]['CHARSET']) {
c92ef720 52 $ss = "SEARCH CHARSET ".$languages[$squirrelmail_language]['CHARSET']." ALL $search_string";
29eb5486 53 } else {
c92ef720 54 $ss .= "SEARCH ALL $search_string\"";
29eb5486 55 }
29eb5486 56
57 /* Read Data Back From IMAP */
1c72b151 58 $readin = sqimap_run_command ($imapConnection, $ss, true, $result, $message);
29eb5486 59 if (isset($languages[$squirrelmail_language]['CHARSET']) && strtolower($result) == 'no') {
fee5ad96 60 // $ss = "SEARCH CHARSET \"US-ASCII\" ALL $search_where \"$search_what\"";
61 $ss = "SEARCH CHARSET \"US-ASCII\" ALL $search_string";
1c72b151 62 $readin = sqimap_run_command ($imapConnection, $ss, true, $result, $message);
29eb5486 63 }
2ba13803 64
29eb5486 65 unset($messagelist); $msgs=""; $c = 0;
2ba13803 66
29eb5486 67 /* Keep going till we find the SEARCH responce */
68 while ($c < count( $readin )) {
2ba13803 69
29eb5486 70 /* Check to see if a SEARCH Responce was recived */
71 if (substr($readin[$c],0,9) == "* SEARCH ")
72 $messagelist = explode(" ",substr($readin[$c],9));
73 else if (isset($errors))
74 $errors = $errors.$readin[$c];
75 else
76 $errors = $readin[$c];
77 $c++;
78 }
2ba13803 79
29eb5486 80 /* If nothing is found * SEARCH should be the first error else echo errors */
81 if (isset($errors) && strstr($errors,"* SEARCH")) {
91954f9e 82 if ($search_all != "all") {
29eb5486 83 echo '<br><CENTER>' . _("No Messages Found") . '</CENTER>';
84 return;
91954f9e 85 }
86 else {
87 return;
88 }
89 }
90// else if ($search_all == 'all') {
91// return;
92// }
93 else if (isset($errors)) {
29eb5486 94 echo "<!-- ".$errors." -->";
95 }
2ba13803 96
29eb5486 97 /*
98 HACKED CODED FROM ANOTHER FUNCTION, Could Probably dump this and mondify
99 exsitising code with a search true/false varible.
100 */
2ba13803 101
29eb5486 102 global $sent_folder;
103 for ($q = 0; $q < count($messagelist); $q++) {
104 $id[$q] = trim($messagelist[$q]);
105 }
106 $issent = ($mailbox == $sent_folder);
107 $hdr_list = sqimap_get_small_header_list($imapConnection, $id, $issent);
108 $flags = sqimap_get_flags_list($imapConnection, $id, $issent);
109 foreach ($hdr_list as $hdr) {
110 $from[] = $hdr->from;
111 $date[] = $hdr->date;
112 $subject[] = $hdr->subject;
113 $to[] = $hdr->to;
114 $priority[] = $hdr->priority;
115 $cc[] = $hdr->cc;
116 $size[] = $hdr->size;
117 $type[] = $hdr->type0;
118 }
2ba13803 119
29eb5486 120 $j = 0;
121 while ($j < count($messagelist)) {
0f8a1ce9 122 $date[$j] = str_replace(' ', ' ', $date[$j]);
29eb5486 123 $tmpdate = explode(" ", trim($date[$j]));
124
125 $messages[$j]["TIME_STAMP"] = getTimeStamp($tmpdate);
126 $messages[$j]["DATE_STRING"] = getDateString($messages[$j]["TIME_STAMP"]);
127 $messages[$j]["ID"] = $id[$j];
128 $messages[$j]["FROM"] = decodeHeader($from[$j]);
129 $messages[$j]["FROM-SORT"] = strtolower(sqimap_find_displayable_name(decodeHeader($from[$j])));
130 $messages[$j]["SUBJECT"] = decodeHeader($subject[$j]);
131 $messages[$j]["SUBJECT-SORT"] = strtolower(decodeHeader($subject[$j]));
132 $messages[$j]["TO"] = decodeHeader($to[$j]);
133 $messages[$j]["PRIORITY"] = $priority[$j];
134 $messages[$j]["CC"] = $cc[$j];
135 $messages[$j]["SIZE"] = $size[$j];
136 $messages[$j]["TYPE0"] = $type[$j];
137
138 $num = 0;
139 while ($num < count($flags[$j])) {
140 if ($flags[$j][$num] == 'Deleted') {
141 $messages[$j]['FLAG_DELETED'] = true;
142 } else if ($flags[$j][$num] == 'Answered') {
143 $messages[$j]['FLAG_ANSWERED'] = true;
144 } else if ($flags[$j][$num] == 'Seen') {
145 $messages[$j]['FLAG_SEEN'] = true;
146 } else if ($flags[$j][$num] == 'Flagged') {
147 $messages[$j]['FLAG_FLAGGED'] = true;
2ba13803 148 }
29eb5486 149 $num++;
fc05541b 150 }
29eb5486 151 $j++;
152 }
2ba13803 153
29eb5486 154 /* Find and remove the ones that are deleted */
155 $i = 0;
156 $j = 0;
157 while ($j < count($messagelist)) {
158 if (isset($messages[$j]["FLAG_DELETED"]) && $messages[$j]["FLAG_DELETED"] == true) {
1809bad8 159 $j++;
29eb5486 160 continue;
2ba13803 161 }
29eb5486 162 $msgs[$i] = $messages[$j];
2ba13803 163
29eb5486 164 $i++;
165 $j++;
166 }
167 $numMessages = $i;
2ba13803 168
29eb5486 169 /* There's gotta be messages in the array for it to sort them. */
2ba13803 170
29eb5486 171 if (count($messagelist) > 0) {
172 $j=0;
53828ec5 173 if (!isset ($msg)) {
174 $msg = '';
175 }
29eb5486 176 mail_message_listing_beginning( $imapConnection,
53828ec5 177 "move_messages.php?msg=$msg&mailbox=$urlMailbox&pos=$pos&where=" . urlencode($search_where) . "&what=".urlencode($search_what),
7c0060c9 178 $mailbox,
179 -1,
91954f9e 180 '<b>' . _("Found") . ' ' . count($messagelist) . ' ' . _("messages") . '</b>');
181 #get_selectall_link($start_msg, $sort) );
29eb5486 182
91954f9e 183# echo '<table width=100%>';
184 echo "<b><big><center>$mailbox</center></big></b>";
29eb5486 185 while ($j < count($msgs)) {
186 printMessageInfo($imapConnection, $msgs[$j]["ID"], 0, $j, $mailbox, '', 0, $search_where, $search_what);
187 $j++;
91954f9e 188 echo '</td></tr>';
2ba13803 189 }
7c0060c9 190 echo '</table></td></tr></table></form>';
91954f9e 191 $count_all += count($msgs);
2ba13803 192 }
91954f9e 193 return $count_all;
29eb5486 194}
fc05541b 195
1c72b151 196?>