Preparation to begin using phpdocumentor.
[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;
da2415c1 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;
da2415c1 53
6914aa18 54 if ($message->rfc822_header) {
55 $subject = $message->rfc822_header->subject;
6914aa18 56 } else {
57 $header = $message->header;
6914aa18 58 }
59 $type0 = $header->type0;
60 $type1 = $header->type1;
61 $encoding = strtolower($header->encoding);
ff9d4297 62} else {
6914aa18 63 /* raw message */
64 $type0 = 'message';
65 $type1 = 'rfc822';
bc5ff7c9 66 $encoding = 'US-ASCII';
5d39ca4d 67 $header = $message->header;
ff9d4297 68}
97d7da3b 69
65c3ec94 70/*
71 * lets redefine message as this particular entity that we wish to display.
72 * it should hold only the header for this entity. We need to fetch the body
73 * yet before we can display anything.
74 */
65c3ec94 75
65c3ec94 76if (isset($override_type0)) {
77 $type0 = $override_type0;
78}
79if (isset($override_type1)) {
80 $type1 = $override_type1;
81}
ff9d4297 82$filename = '';
83if (is_object($message->header->disposition)) {
a91189d6 84 $filename = $header->disposition->getProperty('filename');
ff9d4297 85 if (!$filename) {
708ea172 86 $filename = $header->disposition->getProperty('name');
ff9d4297 87 }
6914aa18 88 if (!$filename) {
a91189d6 89 $filename = $header->getParameter('name');
da2415c1 90 }
cf22004d 91} else {
5d39ca4d 92 $filename = $header->getParameter('name');
65c3ec94 93}
bc5ff7c9 94
da2415c1 95$filename = decodeHeader($filename, true, false); //Don't want html output
65c3ec94 96if (strlen($filename) < 1) {
97 if ($type1 == 'plain' && $type0 == 'text') {
98 $suffix = 'txt';
708ea172 99 $filename = $subject . '.txt';
65c3ec94 100 } else if ($type1 == 'richtext' && $type0 == 'text') {
101 $suffix = 'rtf';
708ea172 102 $filename = $subject . '.rtf';
65c3ec94 103 } else if ($type1 == 'postscript' && $type0 == 'application') {
104 $suffix = 'ps';
708ea172 105 $filename = $subject . '.ps';
97d7da3b 106 } else if ($type1 == 'rfc822' && $type0 == 'message') {
107 $suffix = 'eml';
708ea172 108 $filename = $subject . '.msg';
65c3ec94 109 } else {
110 $suffix = $type1;
111 }
112
631db37e 113 if (strlen($filename) < 1) {
5d39ca4d 114 $filename = 'untitled'.strip_tags($ent_id).'.'.$suffix;
631db37e 115 } else {
ff9d4297 116 $filename = "$filename.$suffix";
631db37e 117 }
65c3ec94 118}
119
120/*
121 * Note:
122 * The following sections display the attachment in different
123 * ways depending on how they choose. The first way will download
124 * under any circumstance. This sets the Content-type to be
125 * applicatin/octet-stream, which should be interpreted by the
126 * browser as "download me".
127 * The second method (view) is used for images or other formats
128 * that should be able to be handled by the browser. It will
129 * most likely display the attachment inline inside the browser.
130 * And finally, the third one will be used by default. If it
131 * is displayable (text or html), it will load them up in a text
132 * viewer (built in to squirrelmail). Otherwise, it sets the
133 * content-type as application/octet-stream
134 */
88d916ee 135if (isset($absolute_dl) && $absolute_dl) {
da2415c1 136 SendDownloadHeaders($type0, $type1, $filename, 1);
65c3ec94 137} else {
da2415c1 138 SendDownloadHeaders($type0, $type1, $filename, 0);
65c3ec94 139}
38bca81c 140/* be aware that any warning caused by download.php will corrupt the
141 * attachment in case of ERROR reporting = E_ALL and the output is the screen */
ff9d4297 142mime_print_body_lines ($imapConnection, $passed_id, $ent_id, $encoding);
65c3ec94 143
da2415c1 144?>