* Made everything here global too to work with new include system
[squirrelmail.git] / functions / imap_search.php
1 <?php
2 /******************************************************************
3 ** IMAP SEARCH ROUTIES
4 ** $Id$
5 *****************************************************************/
6
7 if (defined ('imap_search_php'))
8 return;
9 define ('imap_search_php', true);
10
11 include("../functions/imap.php");
12 include("../functions/date.php");
13 include("../functions/array.php");
14 include("../functions/mailbox_display.php");
15 include("../functions/mime.php");
16
17
18 function sqimap_search($imapConnection,$search_where,$search_what,$mailbox,$color) {
19 global $msgs, $message_highlight_list, $squirrelmail_language, $languages, $index_order;
20 $urlMailbox = urlencode($mailbox);
21
22 # Construct the Search QuERY
23
24 if (isset($languages[$squirrelmail_language]["CHARSET"]) && $languages[$squirrelmail_language]["CHARSET"]) {
25 $ss = "a001 SEARCH CHARSET ".$languages[$squirrelmail_language]["CHARSET"]." ALL $search_where \"$search_what\"\r\n";
26 } else {
27 $ss = "a001 SEARCH ALL $search_where \"$search_what\"\r\n";
28 }
29 fputs($imapConnection,$ss);
30
31 # Read Data Back From IMAP
32 $readin = sqimap_read_data ($imapConnection, "a001", false, $result, $message);
33 if (isset($languages[$squirrelmail_language]["CHARSET"]) && strtolower($result) == "no") {
34 $ss = "a001 SEARCH CHARSET \"US-ASCII\" ALL $search_where \"$search_what\"\r\n";
35 fputs ($imapConnection, $ss);
36 $readin = sqimap_read_data ($imapConnection, "a001", true, $result, $message);
37 }
38 unset($messagelist); $msgs=""; $c = 0;
39
40 #Keep going till we find the SEARCH responce
41 while ($c < count($readin)) {
42
43 #Check to see if a SEARCH Responce was recived
44 if (substr($readin[$c],0,9) == "* SEARCH ")
45 $messagelist = explode(" ",substr($readin[$c],9));
46 else if (isset($errors))
47 $errors = $errors.$readin[$c];
48 else
49 $errors = $readin[$c];
50 $c++;
51 }
52
53 #If nothing is found * SEARCH should be the first error else echo errors
54 if (isset($errors) && strstr($errors,"* SEARCH")) {
55 echo "<br><CENTER>No Messages Found</CENTER>";
56 return;
57 } else if (isset($errors)) {
58 echo "<!-- ".$errors." -->";
59 }
60
61 # HACKED CODED FROM ANOTHER FUNCTION, Could Probably dump this and mondify
62 # exsitising code with a search true/false varible.
63
64
65 global $sent_folder;
66 for ($q = 0; $q < count($messagelist); $q++) {
67 $messagelist[$q] = trim($messagelist[$q]);
68 if ($mailbox == $sent_folder)
69 $hdr = sqimap_get_small_header ($imapConnection, $messagelist[$q], true);
70 else
71 $hdr = sqimap_get_small_header ($imapConnection, $messagelist[$q], false);
72
73 $from[$q] = $hdr->from;
74 $date[$q] = $hdr->date;
75 $subject[$q] = $hdr->subject;
76 $to[$q] = $hdr->to;
77 $priority[$q] = $hdr->priority;
78 $cc[$q] = $hdr->cc;
79 $size[$q] = $hdr->size;
80 $type[$q] = $hdr->type0;
81 $id[$q] = $messagelist[$q];
82 $flags[$q] = sqimap_get_flags ($imapConnection, $messagelist[$q]);
83 }
84
85 $j = 0;
86 while ($j < count($messagelist)) {
87 $date[$j] = ereg_replace(' ', ' ', $date[$j]);
88 $tmpdate = explode(" ", trim($date[$j]));
89
90 $messages[$j]["TIME_STAMP"] = getTimeStamp($tmpdate);
91 $messages[$j]["DATE_STRING"] = getDateString($messages[$j]["TIME_STAMP"]);
92 $messages[$j]["ID"] = $id[$j];
93 $messages[$j]["FROM"] = decodeHeader($from[$j]);
94 $messages[$j]["FROM-SORT"] = strtolower(sqimap_find_displayable_name(decodeHeader($from[$j])));
95 $messages[$j]["SUBJECT"] = decodeHeader($subject[$j]);
96 $messages[$j]["SUBJECT-SORT"] = strtolower(decodeHeader($subject[$j]));
97 $messages[$j]["TO"] = decodeHeader($to[$j]);
98 $messages[$j]["PRIORITY"] = $priority[$j];
99 $messages[$j]["CC"] = $cc[$j];
100 $messages[$j]["SIZE"] = $size[$j];
101 $messages[$j]["TYPE0"] = $type[$j];
102
103 $num = 0;
104 while ($num < count($flags[$j])) {
105 if ($flags[$j][$num] == "Deleted") {
106 $messages[$j]["FLAG_DELETED"] = true;
107 }
108 else if ($flags[$j][$num] == "Answered") {
109 $messages[$j]["FLAG_ANSWERED"] = true;
110 }
111 else if ($flags[$j][$num] == "Seen") {
112 $messages[$j]["FLAG_SEEN"] = true;
113 }
114 else if ($flags[$j][$num] == "Flagged") {
115 $messages[$j]["FLAG_FLAGGED"] = true;
116 }
117 $num++;
118 }
119 $j++;
120 }
121
122 /** Find and remove the ones that are deleted */
123 $i = 0;
124 $j = 0;
125 while ($j < count($messagelist)) {
126 if (isset($messages[$j]["FLAG_DELETED"]) && $messages[$j]["FLAG_DELETED"] == true) {
127 $j++;
128 continue;
129 }
130 $msgs[$i] = $messages[$j];
131
132 $i++;
133 $j++;
134 }
135 $numMessages = $i;
136
137 // There's gotta be messages in the array for it to sort them.
138
139 if (count($messagelist) > 0) {
140 $j=0;
141 if (!isset ($msg)) { $msg = ""; }
142 mail_message_listing_beginning($imapConnection,
143 "move_messages.php?msg=$msg&mailbox=$urlMailbox&where=".urlencode($search_where)."&what=".urlencode($search_what),
144 '', -1, '<b>' . _("Found") . ' ' . count($messagelist) . ' ' . _("messages") . '</b>',
145 '&nbsp;');
146
147
148 while ($j < count($msgs)) {
149 printMessageInfo($imapConnection, $msgs[$j]["ID"], 0, $j, $mailbox, "", 0, $search_where, $search_what);
150 $j++;
151 }
152 echo "</table>";
153 echo "</tr></td></table>";
154 }
155 }
156
157 ?>