Operation "foo_once".
[squirrelmail.git] / src / download.php
CommitLineData
59177427 1<?php
ef870322 2 /**
3 ** download.php
4 **
5 ** Copyright (c) 1999-2000 The SquirrelMail development team
6 ** Licensed under the GNU GPL. For full terms see the file COPYING.
7 **
8 ** Handles attachment downloads to the users computer.
9 ** Also allows displaying of attachments when possible.
245a6892 10 **
11 ** $Id$
ef870322 12 **/
13
f740c049 14 define('download_php', true); // Used for preferences
15
16 include('../src/validate.php');
f740c049 17 include("../functions/imap.php");
18 include("../functions/mime.php");
19 include("../functions/date.php");
6b96544a 20
bc104ef3 21 header("Pragma: ");
22 header("Cache-Control: cache");
23
11307a4c 24 function viewText($color, $body, $id, $entid, $mailbox, $type1, $wrap_at) {
8442ac08 25 global $where, $what, $charset;
a037624d 26 global $startMessage;
fdcca8d3 27
7831268e 28 displayPageHeader($color, "None");
29
a037624d 30 echo "<BR><TABLE WIDTH=100% BORDER=0 CELLSPACING=0 CELLPADDING=2 ALIGN=CENTER><TR><TD BGCOLOR=\"$color[0]\">";
180c2c09 31 echo "<B><CENTER>";
aa8dcbd5 32 echo _("Viewing a text attachment") . " - ";
f4991a86 33 if ($where && $what) {
34 // from a search
35 echo "<a href=\"read_body.php?mailbox=".urlencode($mailbox)."&passed_id=$id&where=".urlencode($where)."&what=".urlencode($what)."\">". _("View message") . "</a>";
36 } else {
37 echo "<a href=\"read_body.php?mailbox=".urlencode($mailbox)."&passed_id=$id&startMessage=$startMessage&show_more=0\">". _("View message") . "</a>";
38 }
a037624d 39
7831268e 40 $urlmailbox = urlencode($mailbox);
a037624d 41 echo "</b></td><tr><tr><td><CENTER><A HREF=\"../src/download.php?absolute_dl=true&passed_id=$id&passed_ent_id=$entid&mailbox=$urlmailbox\">";
180c2c09 42 echo _("Download this as a file");
a037624d 43 echo "</A></CENTER><BR>";
44 echo "</CENTER></B>";
45 echo "</TD></TR></TABLE>";
46
47 echo "<TABLE WIDTH=98% BORDER=0 CELLSPACING=0 CELLPADDING=2 ALIGN=CENTER><TR><TD BGCOLOR=\"$color[0]\">";
48 echo "<TR><TD BGCOLOR=\"$color[4]\"><TT>";
49
9eea179c 50 if ($type1 != "html")
51 translateText($body, $wrap_at, $charset);
52
53 echo $body;
0a4cf77a 54
7831268e 55 echo "</TT></TD></TR></TABLE>";
56 }
57
e1469126 58 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
813eba2f 59 sqimap_mailbox_select($imapConnection, $mailbox);
6b96544a 60
61 // $message contains all information about the message
62 // including header and body
813eba2f 63 $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
ca1a555e 64 $top_header = $message->header;
6b96544a 65
8beafbbc 66 // lets redefine message as this particular entity that we wish to display.
67 // it should hold only the header for this entity. We need to fetch the body
68 // yet before we can display anything.
69 $message = getEntity($message, $passed_ent_id);
70
71 $header = $message->header;
8beafbbc 72
8442ac08 73 $charset = $header->charset;
8beafbbc 74 $type0 = $header->type0;
75 $type1 = $header->type1;
0db847e1 76 if (isset($override_type0))
77 $type0 = $override_type0;
78 if (isset($override_type1))
79 $type1 = $override_type1;
f9ab17bf 80 $filename = decodeHeader($header->filename);
66e1a00e 81 if (!$filename) {
82 $filename = decodeHeader($header->name);
83 }
6b96544a 84
7831268e 85 if (strlen($filename) < 1) {
e9f8ea4e 86 if ($type1 == "plain" && $type0 == "text") $suffix = "txt";
87 else if ($type1 == "richtext" && $type0 == "text") $suffix = "rtf";
88 else if ($type1 == "postscript" && $type0 == "application") $suffix = "ps";
89 else if ($type1 == "message" && $type0 == "rfc822") $suffix = "msg";
90 else $suffix = $type1;
91
92 $filename = "untitled$passed_ent_id.$suffix";
7831268e 93 }
6b96544a 94
c4809aca 95 // Note:
96 // The following sections display the attachment in different
97 // ways depending on how they choose. The first way will download
98 // under any circumstance. This sets the Content-type to be
99 // applicatin/octet-stream, which should be interpreted by the
100 // browser as "download me".
101 // The second method (view) is used for images or other formats
102 // that should be able to be handled by the browser. It will
103 // most likely display the attachment inline inside the browser.
104 // And finally, the third one will be used by default. If it
105 // is displayable (text or html), it will load them up in a text
106 // viewer (built in to squirrelmail). Otherwise, it sets the
107 // content-type as application/octet-stream
a7ea7540 108
61423189 109 if (isset($absolute_dl) && $absolute_dl == "true") {
7831268e 110 switch($type0) {
111 case "text":
36294f1a 112 DumpHeaders($type0, $type1, $filename, 1);
beb9e459 113 $body = mime_fetch_body($imapConnection, $passed_id, $passed_ent_id);
8beafbbc 114 $body = decodeBody($body, $header->encoding);
a900c1e6 115 if ($type1 == "plain" && isset($showHeaders)) {
d51894be 116 echo _("Subject") . ": " . decodeHeader($top_header->subject) . "\n";
117 echo " " . _("From") . ": " . decodeHeader($top_header->from) . "\n";
118 echo " " . _("To") . ": " . decodeHeader(getLineOfAddrs($top_header->to)) . "\n";
ca1a555e 119 echo " " . _("Date") . ": " . getLongDateString($top_header->date) . "\n\n";
623332f3 120 }
a900c1e6 121 elseif ($type1 == "html" && isset($showHeaders)) {
122 echo '<table><tr><th align=right>' . _("Subject");
123 echo ':</th><td>' . decodeHeader($top_header->subject);
124 echo "</td></tr>\n<tr><th align=right>" . _("From");
125 echo ':</th><td>' . decodeHeader($top_header->from);
126 echo "</td></tr>\n<tr><th align=right>" . _("To");
127 echo ':</th><td>' . decodeHeader(getLineOfAddrs($top_header->to));
128 echo "</td></tr>\n<tr><th align=right>" . _("Date");
129 echo ':</th><td>' . getLongDateString($top_header->date);
130 echo "</td></tr>\n</table>\n<hr>\n";
131 }
36294f1a 132 echo $body;
7831268e 133 break;
134 default:
36294f1a 135 DumpHeaders($type0, $type1, $filename, 1);
beb9e459 136 mime_print_body_lines ($imapConnection, $passed_id, $passed_ent_id, $header->encoding);
7831268e 137 break;
138 }
139 } else {
140 switch ($type0) {
141 case "text":
beb9e459 142 if ($type1 == "plain" || $type1 == "html") {
143 $body = mime_fetch_body($imapConnection, $passed_id, $passed_ent_id);
144 $body = decodeBody($body, $header->encoding);
beb9e459 145 viewText($color, $body, $passed_id, $passed_ent_id, $mailbox, $type1, $wrap_at);
23a8095f 146 } else {
36294f1a 147 DumpHeaders($type0, $type1, $filename, 0);
beb9e459 148 $body = mime_fetch_body($imapConnection, $passed_id, $passed_ent_id);
149 $body = decodeBody($body, $header->encoding);
beb9e459 150 echo $body;
151 }
152 break;
7831268e 153 case "message":
beb9e459 154 $body = mime_fetch_body($imapConnection, $passed_id, $passed_ent_id);
8beafbbc 155 $body = decodeBody($body, $header->encoding);
11307a4c 156 viewText($color, $body, $passed_id, $passed_ent_id, $mailbox, $type1, $wrap_at);
7831268e 157 break;
158 default:
36294f1a 159 DumpHeaders($type0, $type1, $filename, 0);
beb9e459 160 mime_print_body_lines ($imapConnection, $passed_id, $passed_ent_id, $header->encoding);
7831268e 161 break;
162 }
36294f1a 163 }
164
165
2a0372ff 166 // This function is verified to work with Netscape and the *very latest*
167 // version of IE. I don't know if it works with Opera, but it should now.
36294f1a 168 function DumpHeaders($type0, $type1, $filename, $force)
169 {
170 global $HTTP_USER_AGENT;
171
172 $isIE = 0;
2a0372ff 173 if (strstr($HTTP_USER_AGENT, 'compatible; MSIE ') !== false &&
174 strstr($HTTP_USER_AGENT, 'Opera') === false) {
36294f1a 175 $isIE = 1;
176 }
177
178 $filename = ereg_replace('[^-a-zA-Z0-9\.]', '_', $filename);
179
180 // A Pox on Microsoft and it's Office!
181 if (! $force)
182 {
183 // Try to show in browser window
184 header("Content-Disposition: inline; filename=\"$filename\"");
185 header("Content-Type: $type0/$type1; name=\"$filename\"");
186 }
187 else
188 {
189 // Try to pop up the "save as" box
190 // IE makes this hard. It pops up 2 save boxes, or none.
191 // http://support.microsoft.com/support/kb/articles/Q238/5/88.ASP
192 // But, accordint to Microsoft, it is "RFC compliant but doesn't
193 // take into account some deviations that allowed within the
194 // specification." Doesn't that mean RFC non-compliant?
195 // http://support.microsoft.com/support/kb/articles/Q258/4/52.ASP
196 //
197 // The best thing you can do for IE is to upgrade to the latest
198 // version
199 if ($isIE) {
200 // http://support.microsoft.com/support/kb/articles/Q182/3/15.asp
201 // Do not have quotes around filename, but that applied to
202 // "attachment"... does it apply to inline too?
203 //
204 // This combination seems to work mostly. IE 5.5 SP 1 has
205 // known issues (see the Microsoft Knowledge Base)
206 header("Content-Disposition: inline; filename=$filename");
207
208 // This works for most types, but doesn't work with Word files
209 header("Content-Type: application/download; name=\"$filename\"");
210
211 // These are spares, just in case. :-)
212 //header("Content-Type: $type0/$type1; name=\"$filename\"");
213 //header("Content-Type: application/x-msdownload; name=\"$filename\"");
214 //header("Content-Type: application/octet-stream; name=\"$filename\"");
215 } else {
216 header("Content-Disposition: attachment; filename=\"$filename\"");
217 // application/octet-stream forces download for Netscape
218 header("Content-Type: application/octet-stream; name=\"$filename\"");
219 }
220 }
221 }
7831268e 222?>