Centralized init
[squirrelmail.git] / src / download.php
1 <?php
2
3 /**
4 * download.php
5 *
6 * Handles attachment downloads to the users computer.
7 * Also allows displaying of attachments when possible.
8 *
9 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
10 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
11 * @version $Id$
12 * @package squirrelmail
13 */
14
15 /**
16 * Include the SquirrelMail initialization file.
17 */
18 require('../include/init.php');
19
20 /* SquirrelMail required files. */
21 require(SM_PATH . 'functions/imap_general.php');
22 require(SM_PATH . 'functions/mailbox_display.php');
23 require(SM_PATH . 'functions/mime.php');
24
25 header('Pragma: ');
26 header('Cache-Control: cache');
27
28 /* globals */
29 sqgetGlobalVar('key', $key, SQ_COOKIE);
30 sqgetGlobalVar('username', $username, SQ_SESSION);
31 sqgetGlobalVar('onetimepad', $onetimepad, SQ_SESSION);
32 sqgetGlobalVar('mailbox_cache',$mailbox_cache,SQ_SESSION);
33 sqgetGlobalVar('messages', $messages, SQ_SESSION);
34 sqgetGlobalVar('mailbox', $mailbox, SQ_GET);
35 sqgetGlobalVar('ent_id', $ent_id, SQ_GET);
36 sqgetGlobalVar('absolute_dl',$absolute_dl, SQ_GET);
37 if ( sqgetGlobalVar('passed_id', $temp, SQ_GET) ) {
38 $passed_id = (int) $temp;
39 }
40 if (!sqgetGlobalVar('account', $account, SQ_GET) ) {
41 $account = 0;
42 }
43
44 global $default_charset;
45 set_my_charset();
46
47 /* end globals */
48
49 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
50 $aMailbox = sqm_api_mailbox_select($imapConnection, $account, $mailbox,array(),array());
51
52 if (isset($aMailbox['MSG_HEADERS'][$passed_id]['MESSAGE_OBJECT']) &&
53 is_object($aMailbox['MSG_HEADERS'][$passed_id]['MESSAGE_OBJECT']) ) {
54 $message = $aMailbox['MSG_HEADERS'][$passed_id]['MESSAGE_OBJECT'];
55 } else {
56 $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
57 $aMailbox['MSG_HEADERS'][$passed_id]['MESSAGE_OBJECT'] = $message;
58 }
59
60 //$mbx_response = sqimap_mailbox_select($imapConnection, $mailbox);
61
62 //$message = &$messages[$mbx_response['UIDVALIDITY']]["$passed_id"];
63 //if (!is_object($message)) {
64 // $message = sqimap_get_message($imapConnection,$passed_id, $mailbox);
65 //}
66 $subject = $message->rfc822_header->subject;
67 if ($ent_id) {
68 // replace message with message part, if message part is requested.
69 $message = $message->getEntity($ent_id);
70 $header = $message->header;
71
72 if ($message->rfc822_header) {
73 $subject = $message->rfc822_header->subject;
74 } else {
75 $header = $message->header;
76 }
77 $type0 = $header->type0;
78 $type1 = $header->type1;
79 $encoding = strtolower($header->encoding);
80 } else {
81 /* raw message */
82 $type0 = 'message';
83 $type1 = 'rfc822';
84 $encoding = 'US-ASCII';
85 $header = $message->header;
86 }
87
88 /*
89 * lets redefine message as this particular entity that we wish to display.
90 * it should hold only the header for this entity. We need to fetch the body
91 * yet before we can display anything.
92 */
93
94 if (isset($override_type0)) {
95 $type0 = $override_type0;
96 }
97 if (isset($override_type1)) {
98 $type1 = $override_type1;
99 }
100 $filename = '';
101 if (is_object($message->header->disposition)) {
102 $filename = $header->disposition->getProperty('filename');
103 if (!$filename) {
104 $filename = $header->disposition->getProperty('name');
105 }
106 if (!$filename) {
107 $filename = $header->getParameter('name');
108 }
109 } else {
110 $filename = $header->getParameter('name');
111 }
112
113 $filename = decodeHeader($filename,true,false);
114 $filename = charset_encode($filename,$default_charset,false);
115
116 // If name is not set, use subject of email
117 if (strlen($filename) < 1) {
118 $filename = decodeHeader($subject, true, true);
119 $filename = charset_encode($filename,$default_charset,false);
120 if ($type1 == 'plain' && $type0 == 'text')
121 $suffix = 'txt';
122 else if ($type1 == 'richtext' && $type0 == 'text')
123 $suffix = 'rtf';
124 else if ($type1 == 'postscript' && $type0 == 'application')
125 $suffix = 'ps';
126 else if ($type1 == 'rfc822' && $type0 == 'message')
127 $suffix = 'msg';
128 else
129 $suffix = $type1;
130
131 if ($filename == '')
132 $filename = 'untitled' . strip_tags($ent_id);
133 $filename = $filename . '.' . $suffix;
134 }
135
136 /*
137 * Note:
138 * The following sections display the attachment in different
139 * ways depending on how they choose. The first way will download
140 * under any circumstance. This sets the Content-type to be
141 * applicatin/octet-stream, which should be interpreted by the
142 * browser as "download me".
143 * The second method (view) is used for images or other formats
144 * that should be able to be handled by the browser. It will
145 * most likely display the attachment inline inside the browser.
146 * And finally, the third one will be used by default. If it
147 * is displayable (text or html), it will load them up in a text
148 * viewer (built in to SquirrelMail). Otherwise, it sets the
149 * content-type as application/octet-stream
150 */
151 if (isset($absolute_dl) && $absolute_dl) {
152 SendDownloadHeaders($type0, $type1, $filename, 1);
153 } else {
154 SendDownloadHeaders($type0, $type1, $filename, 0);
155 }
156 /* be aware that any warning caused by download.php will corrupt the
157 * attachment in case of ERROR reporting = E_ALL and the output is the screen */
158 mime_print_body_lines ($imapConnection, $passed_id, $ent_id, $encoding);
159 $mailbox_cache[$aMailbox['NAME']] = $aMailbox;
160 sqsession_register($mailbox_cache,'mailbox_cache');
161
162 ?>