fixed some more warning messages
[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
d068c0ec 14 if (!isset($config_php))
15 include("../config/config.php");
16 if (!isset($strings_php))
17 include("../functions/strings.php");
d068c0ec 18 if (!isset($imap_php))
19 include("../functions/imap.php");
20 if (!isset($mime_php))
21 include("../functions/mime.php");
22 if (!isset($date_php))
23 include("../functions/date.php");
441f2d33 24 if (!isset($i18n_php))
25 include("../functions/i18n.php");
6b96544a 26
bc104ef3 27 session_start();
28 header("Pragma: ");
29 header("Cache-Control: cache");
30
7bff2bfc 31 include("../src/load_prefs.php");
d3cdb279 32
11307a4c 33 function viewText($color, $body, $id, $entid, $mailbox, $type1, $wrap_at) {
8442ac08 34 global $where, $what, $charset;
a037624d 35 global $startMessage;
fdcca8d3 36
7831268e 37 displayPageHeader($color, "None");
38
a037624d 39 echo "<BR><TABLE WIDTH=100% BORDER=0 CELLSPACING=0 CELLPADDING=2 ALIGN=CENTER><TR><TD BGCOLOR=\"$color[0]\">";
180c2c09 40 echo "<B><CENTER>";
aa8dcbd5 41 echo _("Viewing a text attachment") . " - ";
f4991a86 42 if ($where && $what) {
43 // from a search
44 echo "<a href=\"read_body.php?mailbox=".urlencode($mailbox)."&passed_id=$id&where=".urlencode($where)."&what=".urlencode($what)."\">". _("View message") . "</a>";
45 } else {
46 echo "<a href=\"read_body.php?mailbox=".urlencode($mailbox)."&passed_id=$id&startMessage=$startMessage&show_more=0\">". _("View message") . "</a>";
47 }
a037624d 48
7831268e 49 $urlmailbox = urlencode($mailbox);
a037624d 50 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 51 echo _("Download this as a file");
a037624d 52 echo "</A></CENTER><BR>";
53 echo "</CENTER></B>";
54 echo "</TD></TR></TABLE>";
55
56 echo "<TABLE WIDTH=98% BORDER=0 CELLSPACING=0 CELLPADDING=2 ALIGN=CENTER><TR><TD BGCOLOR=\"$color[0]\">";
57 echo "<TR><TD BGCOLOR=\"$color[4]\"><TT>";
58
9eea179c 59 if ($type1 != "html")
60 translateText($body, $wrap_at, $charset);
61
62 echo $body;
0a4cf77a 63
7831268e 64 echo "</TT></TD></TR></TABLE>";
65 }
66
e1469126 67 $imapConnection = sqimap_login($username, $key, $imapServerAddress, $imapPort, 0);
813eba2f 68 sqimap_mailbox_select($imapConnection, $mailbox);
6b96544a 69
70 // $message contains all information about the message
71 // including header and body
813eba2f 72 $message = sqimap_get_message($imapConnection, $passed_id, $mailbox);
ca1a555e 73 $top_header = $message->header;
6b96544a 74
8beafbbc 75 // lets redefine message as this particular entity that we wish to display.
76 // it should hold only the header for this entity. We need to fetch the body
77 // yet before we can display anything.
78 $message = getEntity($message, $passed_ent_id);
79
80 $header = $message->header;
8beafbbc 81
8442ac08 82 $charset = $header->charset;
8beafbbc 83 $type0 = $header->type0;
84 $type1 = $header->type1;
f9ab17bf 85 $filename = decodeHeader($header->filename);
6b96544a 86
7831268e 87 if (strlen($filename) < 1) {
e9f8ea4e 88 if ($type1 == "plain" && $type0 == "text") $suffix = "txt";
89 else if ($type1 == "richtext" && $type0 == "text") $suffix = "rtf";
90 else if ($type1 == "postscript" && $type0 == "application") $suffix = "ps";
91 else if ($type1 == "message" && $type0 == "rfc822") $suffix = "msg";
92 else $suffix = $type1;
93
94 $filename = "untitled$passed_ent_id.$suffix";
7831268e 95 }
6b96544a 96
c4809aca 97 // Note:
98 // The following sections display the attachment in different
99 // ways depending on how they choose. The first way will download
100 // under any circumstance. This sets the Content-type to be
101 // applicatin/octet-stream, which should be interpreted by the
102 // browser as "download me".
103 // The second method (view) is used for images or other formats
104 // that should be able to be handled by the browser. It will
105 // most likely display the attachment inline inside the browser.
106 // And finally, the third one will be used by default. If it
107 // is displayable (text or html), it will load them up in a text
108 // viewer (built in to squirrelmail). Otherwise, it sets the
109 // content-type as application/octet-stream
110
b67e316d 111 header("Pragma: ");
112 header("Content-Description: SquirrelMail Attachment");
7831268e 113 if ($absolute_dl == "true") {
114 switch($type0) {
115 case "text":
beb9e459 116 $body = mime_fetch_body($imapConnection, $passed_id, $passed_ent_id);
8beafbbc 117 $body = decodeBody($body, $header->encoding);
0ae64f08 118 header("Content-Disposition: attachment; filename=$filename");
119 header("Content-type: application/octet-stream; name=$filename");
441f2d33 120 set_up_language(getPref($data_dir, $username, "language"));
623332f3 121 if ($type1 == "plain") {
7aaa81fc 122 echo _("Subject") . ": " . decodeHeader(sqStripSlashes($top_header->subject)) . "\n";
123 echo " " . _("From") . ": " . decodeHeader(sqStripSlashes($top_header->from)) . "\n";
124 echo " " . _("To") . ": " . decodeHeader(sqStripSlashes(getLineOfAddrs($top_header->to))) . "\n";
ca1a555e 125 echo " " . _("Date") . ": " . getLongDateString($top_header->date) . "\n\n";
623332f3 126 }
d3cdb279 127 echo trim($body);
7831268e 128 break;
129 default:
0ae64f08 130 header("Content-Disposition: attachment; filename=$filename");
131 header("Content-type: application/octet-stream; name=$filename");
beb9e459 132 mime_print_body_lines ($imapConnection, $passed_id, $passed_ent_id, $header->encoding);
7831268e 133 break;
134 }
135 } else {
136 switch ($type0) {
137 case "text":
beb9e459 138 if ($type1 == "plain" || $type1 == "html") {
139 $body = mime_fetch_body($imapConnection, $passed_id, $passed_ent_id);
140 $body = decodeBody($body, $header->encoding);
141 include("../functions/page_header.php");
142 viewText($color, $body, $passed_id, $passed_ent_id, $mailbox, $type1, $wrap_at);
23a8095f 143 } else {
beb9e459 144 $body = mime_fetch_body($imapConnection, $passed_id, $passed_ent_id);
145 $body = decodeBody($body, $header->encoding);
0ae64f08 146 header("Content-type: $type0/$type1; name=$filename");
147 header("Content-Disposition: attachment; filename=$filename");
beb9e459 148 echo $body;
149 }
150 break;
7831268e 151 case "message":
beb9e459 152 $body = mime_fetch_body($imapConnection, $passed_id, $passed_ent_id);
8beafbbc 153 $body = decodeBody($body, $header->encoding);
fdcca8d3 154 include("../functions/page_header.php");
11307a4c 155 viewText($color, $body, $passed_id, $passed_ent_id, $mailbox, $type1, $wrap_at);
7831268e 156 break;
157 default:
a48fbf9b 158 header("Content-type: $type0/$type1; name=\"$filename\"");
0ae64f08 159 header("Content-Disposition: attachment; filename=\"$filename\"");
beb9e459 160 mime_print_body_lines ($imapConnection, $passed_id, $passed_ent_id, $header->encoding);
7831268e 161 break;
162 }
b67e316d 163 }
164
813eba2f 165 sqimap_logout($imapConnection);
7831268e 166?>