Fixed a minor MIME bug
[squirrelmail.git] / functions / mime.php
CommitLineData
aceb0d5c 1<?
2 /** mime.php
3 **
4 ** This contains the functions necessary to detect and decode MIME messages.
5 **/
6
7
4809f489 8 /** This is the first function called. It decides if this is a multipart
9 message or if it should be handled as a single entity
10 **/
11 function decodeMime($body, $bound, $type0, $type1, &$entities) {
aceb0d5c 12 if ($type0 == "multipart") {
aceb0d5c 13 $bound = trim($bound);
f7835374 14 $i = 0;
4809f489 15 while (($i < count($body)) && (substr($body[$i], 0, strlen("--$bound--")) != "--$bound--")) {
16 if (trim($body[$i]) == "--$bound") {
17 $j = $i+1;
aceb0d5c 18 $p = 0;
19
4809f489 20 /** Lets find the header for this entity **/
21 /** If the first line after the boundary is blank, we use default values **/
22 if (trim($body[$j]) == "") {
23 $ent_type0 = "text";
24 $ent_type1 = "plain";
25 $charset = "us-ascii";
aceb0d5c 26 $j++;
4809f489 27 /** If the first line ISNT blank, read in the header for this entity **/
28 } else {
29 while ((substr(trim($body[$j]), 0, strlen("--$bound")) != "--$bound") && (trim($body[$j]) != "")) {
30 $entity_header[$p] = $body[$j];
31 $j++;
32 $p++;
33 }
34 /** All of these values are getting passed back to us **/
35 fetchEntityHeader($imapConnection, $entity_header, $ent_type0, $ent_type1, $ent_bound, $encoding, $charset, $filename);
aceb0d5c 36 }
bcb432a3 37
bcb432a3 38
4809f489 39 /** OK, we have the header information, now lets decide what to do with it **/
40 if ($ent_type0 == "multipart") {
41 $y = 0;
42 while (substr($body[$j], 0, strlen("--$bound--")) != "--$bound--") {
43 $ent_body[$y] = $body[$j];
44 $y++;
45 $j++;
46 }
47 $ent = decodeMime($ent_body, $ent_bound, $ent_type0, $ent_type1, $entities);
48 $entities = $ent;
bcb432a3 49 } else {
7c9499e1 50 $j++;
51 $entity_body = "";
4809f489 52 while (substr(trim($body[$j]), 0, strlen("--$bound")) != "--$bound") {
bcb432a3 53 $entity_body .= $body[$j];
54 $j++;
55 }
4809f489 56 $count = count($entities);
57 $entities[$count] = getEntity($entity_body, $ent_bound, $ent_type0, $ent_type1, $encoding, $charset, $filename);
bcb432a3 58 }
aceb0d5c 59 }
60 $i++;
61 }
d4467150 62 } else {
7831268e 63 /** If this isn't a multipart message **/
64 $j = 0;
65 $entity_body = "";
78509c54 66 while ($j < count($body)) {
7831268e 67 $entity_body .= $body[$j];
68 $j++;
69 }
70
4809f489 71 $count = count($entities);
7831268e 72 $entities[$count] = getEntity($entity_body, $bound, $type0, $type1, $encoding, $charset, $filename);
d4467150 73 }
74
4809f489 75 return $entities;
d4467150 76 }
77
78 /** This gets one entity's properties **/
7c9499e1 79 function getEntity($body, $bound, $type0, $type1, $encoding, $charset, $filename) {
4809f489 80 $msg["TYPE0"] = $type0;
81 $msg["TYPE1"] = $type1;
82 $msg["ENCODING"] = $encoding;
83 $msg["CHARSET"] = $charset;
84 $msg["FILENAME"] = $filename;
d4467150 85
7831268e 86 $msg["BODY"] = $body;
aceb0d5c 87
d4467150 88 return $msg;
89 }
90
4809f489 91 /** This will check whether or not the message contains a certain type. It
92 searches through all the entities for a match.
93 **/
b1dadc61 94 function containsType($message, $type0, $type1, &$ent_num) {
95 $type0 = strtolower($type0);
96 $type1 = strtolower($type1);
d4467150 97 for ($i = 0; $i < count($message["ENTITIES"]); $i++) {
b1dadc61 98 /** Check only on type0 **/
99 if ( $type1 == "any_type" ) {
100 if ( ($message["ENTITIES"][$i]["TYPE0"] == $type0) ) {
101 $ent_num = $i;
102 return true;
103 }
104
105 /** Check on type0 and type1 **/
106 } else {
107 if ( ($message["ENTITIES"][$i]["TYPE0"] == $type0) && ($message["ENTITIES"][$i]["TYPE1"] == $type1) ) {
108 $ent_num = $i;
109 return true;
110 }
d4467150 111 }
112 }
b1dadc61 113 return false;
114 }
8405ee35 115
4809f489 116 /** This returns a parsed string called $body. That string can then be displayed
117 as the actual message in the HTML. It contains everything needed, including
118 HTML Tags, Attachments at the bottom, etc.
119 **/
d3cdb279 120 function formatBody($message, $color) {
7831268e 121
4809f489 122 /** this if statement checks for the entity to show as the primary message. To
123 add more of them, just put them in the order that is their priority.
124 **/
7085fa78 125 $id = $message["INFO"]["ID"];
126 $urlmailbox = urlencode($message["INFO"]["MAILBOX"]);
127 $body = "";
128
b1dadc61 129 if (containsType($message, "text", "html", $ent_num)) {
7085fa78 130 $body .= decodeBody($message["ENTITIES"][$ent_num]["BODY"], $message["ENTITIES"][$ent_num]["ENCODING"]);
b1dadc61 131 } else if (containsType($message, "text", "plain", $ent_num)) {
7085fa78 132 $tmpbody = decodeBody($message["ENTITIES"][$ent_num]["BODY"], $message["ENTITIES"][$ent_num]["ENCODING"]);
d3cdb279 133 $body .= "<TT>" . nl2br(trim($tmpbody)) . "</TT>";
4809f489 134 }
135 // add other primary displaying message types here
b1dadc61 136 else {
137 // find any type that's displayable
138 if (containsType($message, "text", "any_type", $ent_num)) {
7085fa78 139 $tmpbody = decodeBody($message["ENTITIES"][$ent_num]["BODY"], $message["ENTITIES"][$ent_num]["ENCODING"]);
d3cdb279 140 $body .= "<TT>" . nl2br(trim($tmpbody)) . "</TT>";
b1dadc61 141 } else if (containsType($message, "message", "any_type", $ent_num)) {
7085fa78 142 $tmpbody = decodeBody($message["ENTITIES"][$ent_num]["BODY"], $message["ENTITIES"][$ent_num]["ENCODING"]);
d3cdb279 143 $body .= "<TT>" . nl2br(trim($tmpbody)) . "</TT>";
8405ee35 144 }
145 }
146
78509c54 147 /** If there are other types that shouldn't be formatted, add them here **/
148 if ($message["ENTITIES"][$ent_num]["TYPE1"] != "html")
149 $body = translateText($body);
150
7085fa78 151 $body .= "<BR><SMALL><CENTER><A HREF=\"../src/download.php?absolute_dl=true&passed_id=$id&passed_ent_id=$ent_num&mailbox=$urlmailbox\">Download this as a file</A></CENTER><BR></SMALL>";
7831268e 152
b1dadc61 153 /** Display the ATTACHMENTS: message if there's more than one part **/
154 if (count($message["ENTITIES"]) > 1) {
7831268e 155 $body .= "<TABLE WIDTH=100% CELLSPACING=0 CELLPADDING=4 BORDER=0><TR><TD BGCOLOR=\"$color[0]\">";
156 $body .= "<TT><B>ATTACHMENTS:</B></TT>";
157 $body .= "</TD></TR><TR><TD BGCOLOR=\"$color[0]\">";
b1dadc61 158 $num = 0;
159
160 for ($i = 0; $i < count($message["ENTITIES"]); $i++) {
161 /** If we've displayed this entity, go to the next one **/
162 if ($ent_num == $i)
163 continue;
164
165 $type0 = strtolower($message["ENTITIES"][$i]["TYPE0"]);
166 $type1 = strtolower($message["ENTITIES"][$i]["TYPE1"]);
167
168 $num++;
7c9499e1 169 $filename = $message["ENTITIES"][$i]["FILENAME"];
b1dadc61 170 if (trim($filename) == "") {
7085fa78 171 $display_filename = "untitled$i";
b1dadc61 172 } else {
173 $display_filename = $filename;
174 }
7c9499e1 175
97be2168 176 $urlMailbox = urlencode($message["INFO"]["MAILBOX"]);
177 $id = $message["INFO"]["ID"];
7831268e 178 $body .= "<TT>&nbsp;&nbsp;&nbsp;<A HREF=\"../src/download.php?passed_id=$id&mailbox=$urlMailbox&passed_ent_id=$i\">" . $display_filename . "</A>&nbsp;&nbsp;<SMALL>(TYPE: $type0/$type1)</SMALL></TT><BR>";
8405ee35 179 }
7831268e 180 $body .= "</TD></TR></TABLE>";
8405ee35 181 }
d4467150 182 return $body;
183 }
184
4809f489 185
186
187 /** this function decodes the body depending on the encoding type. **/
d4467150 188 function decodeBody($body, $encoding) {
189 $encoding = strtolower($encoding);
7831268e 190
d4467150 191 if ($encoding == "us-ascii") {
192 $newbody = $body; // if only they all were this easy
7831268e 193
d4467150 194 } else if ($encoding == "quoted-printable") {
db87f79c 195 $body_ary = explode("\n", $body);
196
197 for ($q=0; $q < count($body_ary); $q++) {
198 if (substr(trim($body_ary[$q]), -1) == "=") {
199 $body_ary[$q] = trim($body_ary[$q]);
200 $body_ary[$q] = substr($body_ary[$q], 0, strlen($body_ary[$q])-1);
201 } else if (substr(trim($body_ary[$q]), -3) == "=20") {
202 $body_ary[$q] = trim($body_ary[$q]);
203 $body_ary[$q] = substr($body_ary[$q], 0, strlen($body_ary[$q])-3);
204 $body_ary[$q] = "$body_ary[$q]\n";
205 }
206 }
207
208 for ($q=0;$q < count($body_ary);$q++) {
209 $body_ary[$q] = ereg_replace("=3D", "=", $body_ary[$q]);
210 }
7831268e 211
db87f79c 212 $body = "";
213 for ($i = 0; $i < count($body_ary); $i++) {
214 $body .= "$body_ary[$i]\n";
215 }
216
217 $newbody = $body;
97be2168 218 } else if ($encoding == "base64") {
219 $newbody = base64_decode($body);
7831268e 220
d4467150 221 } else {
222 $newbody = $body;
223 }
224 return $newbody;
aceb0d5c 225 }
226?>