1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
|
<?php
/**
* attachment_common.php
*
* This file provides the handling of often-used attachment types.
*
* @copyright 1999-2012 The SquirrelMail Project Team
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
* @version $Id: attachment_common.php 14248 2012-01-02 00:18:17Z pdontthink $
* @package squirrelmail
*/
/**
* FIXME Needs phpDocumentator style documentation
*/
require_once(SM_PATH . 'functions/global.php');
global $attachment_common_show_images_list;
$attachment_common_show_images_list = array();
global $FileExtensionToMimeType, $attachment_common_types;
$FileExtensionToMimeType = array('bmp' => 'image/x-bitmap',
'gif' => 'image/gif',
'htm' => 'text/html',
'html' => 'text/html',
'jpg' => 'image/jpeg',
'jpeg' => 'image/jpeg',
'php' => 'text/plain',
'png' => 'image/png',
'rtf' => 'text/richtext',
'txt' => 'text/plain',
'patch'=> 'text/plain',
'vcf' => 'text/x-vcard');
/* Register browser-supported image types */
sqgetGlobalVar('attachment_common_types', $attachment_common_types);
if (isset($attachment_common_types)) {
// var is used to detect activation of jpeg image types
unset($jpeg_done);
/* Don't run this before being logged in. That may happen
when plugins include mime.php */
foreach ($attachment_common_types as $val => $v) {
if ($val == 'image/gif')
register_attachment_common('image/gif', 'link_image');
elseif (($val == 'image/jpeg' || $val == 'image/pjpeg') and
(!isset($jpeg_done))) {
$jpeg_done = 1;
register_attachment_common('image/jpeg', 'link_image');
register_attachment_common('image/pjpeg', 'link_image');
}
elseif ($val == 'image/png')
register_attachment_common('image/png', 'link_image');
elseif ($val == 'image/x-xbitmap')
register_attachment_common('image/x-xbitmap', 'link_image');
elseif ($val == '*/*' || $val == 'image/*') {
/**
* browser (Firefox) declared that anything is acceptable.
* Lets register some common image types.
*/
if (! isset($jpeg_done)) {
$jpeg_done = 1;
register_attachment_common('image/jpeg', 'link_image');
register_attachment_common('image/pjpeg', 'link_image');
}
register_attachment_common('image/gif', 'link_image');
register_attachment_common('image/png', 'link_image');
register_attachment_common('image/x-xbitmap', 'link_image');
}
}
unset($jpeg_done);
}
/* Register text-type attachments */
register_attachment_common('message/rfc822', 'link_message');
register_attachment_common('text/plain', 'link_text');
register_attachment_common('text/richtext', 'link_text');
/* Register HTML */
register_attachment_common('text/html', 'link_html');
/* Register vcards */
register_attachment_common('text/x-vcard', 'link_vcard');
register_attachment_common('text/directory', 'link_vcard');
/* Register rules for general types.
* These will be used if there isn't a more specific rule available. */
register_attachment_common('text/*', 'link_text');
register_attachment_common('message/*', 'link_text');
/* Register "unknown" attachments */
register_attachment_common('application/octet-stream', 'octet_stream');
/* Function which optimizes readability of the above code */
function register_attachment_common($type, $func) {
global $squirrelmail_plugin_hooks;
$squirrelmail_plugin_hooks['attachment ' . $type]['attachment_common'] =
'attachment_common_' . $func;
}
function attachment_common_link_text(&$Args) {
global $squirrelmail_attachments_finished_handling;
if (!empty($squirrelmail_attachments_finished_handling[$Args[7]])) return;
$squirrelmail_attachments_finished_handling[$Args[7]] = TRUE;
/* If there is a text attachment, we would like to create a "View" button
that links to the text attachment viewer.
$Args[1] = the array of actions
Use the name of this file for adding an action
$Args[1]['attachment_common'] = Array for href and text
$Args[1]['attachment_common']['text'] = What is displayed
$Args[1]['attachment_common']['href'] = Where it links to */
sqgetGlobalVar('QUERY_STRING', $QUERY_STRING, SQ_SERVER);
$Args[1]['attachment_common']['href'] = SM_PATH . 'src/view_text.php?'. $QUERY_STRING;
$Args[1]['attachment_common']['href'] =
set_url_var($Args[1]['attachment_common']['href'],
'ent_id',$Args[5]);
/* The link that we created needs a name. */
$Args[1]['attachment_common']['text'] = _("View");
/* Each attachment has a filename on the left, which is a link.
Where that link points to can be changed. Just in case the link above
for viewing text attachments is not the same as the default link for
this file, we'll change it.
This is a lot better in the image links, since the defaultLink will just
download the image, but the one that we set it to will format the page
to have an image tag in the center (looking a lot like this text viewer) */
$Args[6] = $Args[1]['attachment_common']['href'];
}
function attachment_common_link_message(&$Args) {
global $squirrelmail_attachments_finished_handling;
if (!empty($squirrelmail_attachments_finished_handling[$Args[7]])) return;
$squirrelmail_attachments_finished_handling[$Args[7]] = TRUE;
$Args[1]['attachment_common']['href'] = SM_PATH . 'src/read_body.php?startMessage=' .
$Args[2] . '&passed_id=' . $Args[3] . '&mailbox=' . $Args[4] .
'&passed_ent_id=' . $Args[5] . '&override_type0=message&override_type1=rfc822';
$Args[1]['attachment_common']['text'] = _("View");
$Args[6] = $Args[1]['attachment_common']['href'];
}
function attachment_common_link_html(&$Args) {
global $squirrelmail_attachments_finished_handling;
if (!empty($squirrelmail_attachments_finished_handling[$Args[7]])) return;
$squirrelmail_attachments_finished_handling[$Args[7]] = TRUE;
sqgetGlobalVar('QUERY_STRING', $QUERY_STRING, SQ_SERVER);
$Args[1]['attachment_common']['href'] = SM_PATH . 'src/view_text.php?'. $QUERY_STRING.
/* why use the overridetype? can this be removed */
'&override_type0=text&override_type1=html';
$Args[1]['attachment_common']['href'] =
set_url_var($Args[1]['attachment_common']['href'],
'ent_id',$Args[5]);
$Args[1]['attachment_common']['text'] = _("View");
$Args[6] = $Args[1]['attachment_common']['href'];
}
function attachment_common_link_image(&$Args) {
global $squirrelmail_attachments_finished_handling;
if (!empty($squirrelmail_attachments_finished_handling[$Args[7]])) return;
$squirrelmail_attachments_finished_handling[$Args[7]] = TRUE;
global $attachment_common_show_images, $attachment_common_show_images_list;
sqgetGlobalVar('QUERY_STRING', $QUERY_STRING, SQ_SERVER);
$info['passed_id'] = $Args[3];
$info['mailbox'] = $Args[4];
$info['ent_id'] = $Args[5];
$attachment_common_show_images_list[] = $info;
$Args[1]['attachment_common']['href'] = SM_PATH . 'src/image.php?'. $QUERY_STRING;
$Args[1]['attachment_common']['href'] =
set_url_var($Args[1]['attachment_common']['href'],
'ent_id',$Args[5]);
$Args[1]['attachment_common']['text'] = _("View");
$Args[6] = $Args[1]['attachment_common']['href'];
}
function attachment_common_link_vcard(&$Args) {
global $squirrelmail_attachments_finished_handling;
if (!empty($squirrelmail_attachments_finished_handling[$Args[7]])) return;
$squirrelmail_attachments_finished_handling[$Args[7]] = TRUE;
sqgetGlobalVar('QUERY_STRING', $QUERY_STRING, SQ_SERVER);
$Args[1]['attachment_common']['href'] = SM_PATH . 'src/vcard.php?'. $QUERY_STRING;
$Args[1]['attachment_common']['href'] =
set_url_var($Args[1]['attachment_common']['href'],
'ent_id',$Args[5]);
$Args[1]['attachment_common']['text'] = _("View Business Card");
$Args[6] = $Args[1]['attachment_common']['href'];
}
function attachment_common_octet_stream(&$Args) {
global $FileExtensionToMimeType;
do_hook('attachment_common-load_mime_types');
preg_match('/\.([^.]+)$/', $Args[7], $Regs);
$Ext = '';
if (is_array($Regs) && isset($Regs[1])) {
$Ext = $Regs[1];
$Ext = strtolower($Regs[1]);
}
if ($Ext == '' || ! isset($FileExtensionToMimeType[$Ext]))
return;
$Ret = do_hook('attachment ' . $FileExtensionToMimeType[$Ext],
$Args[1], $Args[2], $Args[3], $Args[4], $Args[5], $Args[6],
$Args[7], $Args[8], $Args[9]);
foreach ($Ret as $a => $b) {
$Args[$a] = $b;
}
}
|