In case of messages without a plain/text part (i.e. 1 part which is
[squirrelmail.git] / src / download.php
CommitLineData
59177427 1<?php
895905c0 2
35586184 3/**
4 * download.php
5 *
76911253 6 * Copyright (c) 1999-2003 The SquirrelMail Project Team
35586184 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Handles attachment downloads to the users computer.
10 * Also allows displaying of attachments when possible.
11 *
12 * $Id$
13 */
14
86725763 15/* Path for SquirrelMail required files. */
16define('SM_PATH','../');
17
18/* SquirrelMail required files. */
08185f2a 19require_once(SM_PATH . 'include/validate.php');
86725763 20require_once(SM_PATH . 'functions/imap.php');
21require_once(SM_PATH . 'functions/mime.php');
6b96544a 22
65c3ec94 23header('Pragma: ');
24header('Cache-Control: cache');
25
0b97a708 26/* globals */
1e12d1ff 27sqgetGlobalVar('key', $key, SQ_COOKIE);
28sqgetGlobalVar('username', $username, SQ_SESSION);
29sqgetGlobalVar('onetimepad', $onetimepad, SQ_SESSION);
30sqgetGlobalVar('messages', $messages, SQ_SESSION);
31sqgetGlobalVar('mailbox', $mailbox, SQ_GET);
32sqgetGlobalVar('ent_id', $ent_id, SQ_GET);
33sqgetGlobalVar('absolute_dl',$absolute_dl, SQ_GET);
34if ( sqgetGlobalVar('passed_id', $temp, SQ_GET) ) {
35 $passed_id = (int) $temp;
36}
1075eaf1 37
0b97a708 38/* end globals */
97d7da3b 39
1075eaf1 40global $uid_support;
97d7da3b 41
1e606225 42$imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
43$mbx_response = sqimap_mailbox_select($imapConnection, $mailbox);
97d7da3b 44
1e606225 45$message = &$messages[$mbx_response['UIDVALIDITY']]["$passed_id"];
5a1c48cd 46if (!is_object($message)) {
47 $message = sqimap_get_message($imapConnection,$passed_id, $mailbox);
48}
ff9d4297 49$subject = $message->rfc822_header->subject;
6914aa18 50if ($ent_id) {
51 $message = &$message->getEntity($ent_id);
52 $header = $message->header;
53
54 if ($message->rfc822_header) {
55 $subject = $message->rfc822_header->subject;
107ae60c 56 if (isset($header->content_type)) {
57 $charset = $header->content_type->properties['charset'];
58 } else {
59 $charset = '';
60 }
6914aa18 61 } else {
62 $header = $message->header;
63 $charset = $header->getParameter('charset');
64 }
65 $type0 = $header->type0;
66 $type1 = $header->type1;
67 $encoding = strtolower($header->encoding);
ff9d4297 68} else {
6914aa18 69 /* raw message */
70 $type0 = 'message';
71 $type1 = 'rfc822';
bc5ff7c9 72 $encoding = 'US-ASCII';
5d39ca4d 73 $header = $message->header;
ff9d4297 74}
97d7da3b 75
65c3ec94 76/*
77 * lets redefine message as this particular entity that we wish to display.
78 * it should hold only the header for this entity. We need to fetch the body
79 * yet before we can display anything.
80 */
65c3ec94 81
65c3ec94 82if (isset($override_type0)) {
83 $type0 = $override_type0;
84}
85if (isset($override_type1)) {
86 $type1 = $override_type1;
87}
ff9d4297 88$filename = '';
89if (is_object($message->header->disposition)) {
a91189d6 90 $filename = $header->disposition->getProperty('filename');
ff9d4297 91 if (!$filename) {
a91189d6 92 $filename = $header->disposition->getProperty('name');
ff9d4297 93 }
6914aa18 94 if (!$filename) {
a91189d6 95 $filename = $header->getParameter('name');
6914aa18 96 }
cf22004d 97} else {
5d39ca4d 98 $filename = $header->getParameter('name');
65c3ec94 99}
bc5ff7c9 100
a91189d6 101$filename = decodeHeader($filename);
65c3ec94 102if (strlen($filename) < 1) {
103 if ($type1 == 'plain' && $type0 == 'text') {
104 $suffix = 'txt';
ff9d4297 105 $filename = $subject . '.txt';
65c3ec94 106 } else if ($type1 == 'richtext' && $type0 == 'text') {
107 $suffix = 'rtf';
ff9d4297 108 $filename = $subject . '.rtf';
65c3ec94 109 } else if ($type1 == 'postscript' && $type0 == 'application') {
110 $suffix = 'ps';
ff9d4297 111 $filename = $subject . '.ps';
97d7da3b 112 } else if ($type1 == 'rfc822' && $type0 == 'message') {
113 $suffix = 'eml';
ff9d4297 114 $filename = $subject . '.msg';
65c3ec94 115 } else {
116 $suffix = $type1;
117 }
118
631db37e 119 if (strlen($filename) < 1) {
5d39ca4d 120 $filename = 'untitled'.strip_tags($ent_id).'.'.$suffix;
631db37e 121 } else {
ff9d4297 122 $filename = "$filename.$suffix";
631db37e 123 }
65c3ec94 124}
125
126/*
127 * Note:
128 * The following sections display the attachment in different
129 * ways depending on how they choose. The first way will download
130 * under any circumstance. This sets the Content-type to be
131 * applicatin/octet-stream, which should be interpreted by the
132 * browser as "download me".
133 * The second method (view) is used for images or other formats
134 * that should be able to be handled by the browser. It will
135 * most likely display the attachment inline inside the browser.
136 * And finally, the third one will be used by default. If it
137 * is displayable (text or html), it will load them up in a text
138 * viewer (built in to squirrelmail). Otherwise, it sets the
139 * content-type as application/octet-stream
140 */
88d916ee 141if (isset($absolute_dl) && $absolute_dl) {
5c553e34 142 DumpHeaders($type0, $type1, $filename, 1);
65c3ec94 143} else {
5c553e34 144 DumpHeaders($type0, $type1, $filename, 0);
65c3ec94 145}
38bca81c 146/* be aware that any warning caused by download.php will corrupt the
147 * attachment in case of ERROR reporting = E_ALL and the output is the screen */
ff9d4297 148mime_print_body_lines ($imapConnection, $passed_id, $ent_id, $encoding);
65c3ec94 149
65c3ec94 150/*
151 * This function is verified to work with Netscape and the *very latest*
152 * version of IE. I don't know if it works with Opera, but it should now.
153 */
154function DumpHeaders($type0, $type1, $filename, $force) {
1e12d1ff 155 global $languages, $squirrelmail_language;
88d916ee 156 $isIE = $isIE6 = 0;
97d7da3b 157
1e12d1ff 158 sqgetGlobalVar('HTTP_USER_AGENT', $HTTP_USER_AGENT, SQ_SERVER);
0b97a708 159
65c3ec94 160 if (strstr($HTTP_USER_AGENT, 'compatible; MSIE ') !== false &&
161 strstr($HTTP_USER_AGENT, 'Opera') === false) {
36294f1a 162 $isIE = 1;
65c3ec94 163 }
164
97d7da3b 165 if (strstr($HTTP_USER_AGENT, 'compatible; MSIE 6') !== false &&
166 strstr($HTTP_USER_AGENT, 'Opera') === false) {
167 $isIE6 = 1;
168 }
169
7dae3923 170 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
171 function_exists($languages[$squirrelmail_language]['XTRA_CODE'])) {
6fbd125b 172 $filename =
173 $languages[$squirrelmail_language]['XTRA_CODE']('downloadfilename', $filename, $HTTP_USER_AGENT);
83be314a 174 } else {
7dae3923 175 $filename = ereg_replace('[^-a-zA-Z0-9\.]', '_', $filename);
83be314a 176 }
65c3ec94 177
178 // A Pox on Microsoft and it's Office!
88d916ee 179 if (!$force) {
65c3ec94 180 // Try to show in browser window
181 header("Content-Disposition: inline; filename=\"$filename\"");
182 header("Content-Type: $type0/$type1; name=\"$filename\"");
183 } else {
184 // Try to pop up the "save as" box
185 // IE makes this hard. It pops up 2 save boxes, or none.
186 // http://support.microsoft.com/support/kb/articles/Q238/5/88.ASP
187 // But, accordint to Microsoft, it is "RFC compliant but doesn't
188 // take into account some deviations that allowed within the
189 // specification." Doesn't that mean RFC non-compliant?
190 // http://support.microsoft.com/support/kb/articles/Q258/4/52.ASP
191 //
192 // The best thing you can do for IE is to upgrade to the latest
193 // version
88d916ee 194 if ($isIE && !$isIE6) {
65c3ec94 195 // http://support.microsoft.com/support/kb/articles/Q182/3/15.asp
196 // Do not have quotes around filename, but that applied to
197 // "attachment"... does it apply to inline too?
198 //
199 // This combination seems to work mostly. IE 5.5 SP 1 has
200 // known issues (see the Microsoft Knowledge Base)
201 header("Content-Disposition: inline; filename=$filename");
65c3ec94 202 // This works for most types, but doesn't work with Word files
203 header("Content-Type: application/download; name=\"$filename\"");
204
205 // These are spares, just in case. :-)
206 //header("Content-Type: $type0/$type1; name=\"$filename\"");
207 //header("Content-Type: application/x-msdownload; name=\"$filename\"");
208 //header("Content-Type: application/octet-stream; name=\"$filename\"");
209 } else {
210 header("Content-Disposition: attachment; filename=\"$filename\"");
211 // application/octet-stream forces download for Netscape
212 header("Content-Type: application/octet-stream; name=\"$filename\"");
213 }
214 }
215}
631db37e 216?>