X-Git-Url: https://vcs.fsf.org/?p=squirrelmail.git;a=blobdiff_plain;f=src%2Fview_text.php;h=517138115be24b0b5fe15fbd37be2d7b02183659;hp=d8bf19f8c8f345db61943ce1057b37c324d44fb1;hb=d9f83cf8cd23f773fde77e3233a10a07aa64b37b;hpb=f5563549df6f554b393d358ad6e1c771c2befacb diff --git a/src/view_text.php b/src/view_text.php index d8bf19f8..51713811 100644 --- a/src/view_text.php +++ b/src/view_text.php @@ -1,56 +1,88 @@ getEntity($ent_id); - - $header = $message->header; - $charset = $header->getParameter('charset'); - $type0 = $header->type0; - $type1 = $header->type1; - $encoding = strtolower($header->encoding); - - $msg_url = 'read_body.php?' . $QUERY_STRING; - $msg_url = set_url_var($msg_url, 'ent_id', 0); - - $body = mime_fetch_body($imapConnection, $passed_id, $passed_ent_id); - $body = decodeBody($body, $encoding); - - displayPageHeader($color, 'None'); - - echo "
". - "
". - _("Viewing a text attachment") . " - "; - echo ''. _("View message") . ''; - - $dwnld_url = '../src/download.php?'. $QUERY_STRING.'&absolute_dl=1'; - echo '
'. - _("Download this as a file"). - "

". - "". - "
". - "
". - "
"; - - if ($type1 == 'html') { - $msg = sqimap_get_message($imapConnection, $passed_id, $mailbox); - $msg = $msg->getEntity($passed_ent_id); - $body = MagicHTML( $body, $passed_id, $msg ); - } else { - translateText($body, $wrap_at, $charset); +/** + * view_text.php -- View a text attachment + * + * Used by attachment_common code. + * + * @copyright 1999-2011 The SquirrelMail Project Team + * @license http://opensource.org/licenses/gpl-license.php GNU Public License + * @version $Id$ + * @package squirrelmail + */ + +/** This is the view_text page */ +define('PAGE_NAME', 'view_text'); + +/** SquirrelMail required files. */ +include('../include/init.php'); +include(SM_PATH . 'functions/imap_general.php'); +include(SM_PATH . 'functions/imap_messages.php'); +include(SM_PATH . 'functions/mime.php'); +include(SM_PATH . 'functions/date.php'); +include(SM_PATH . 'functions/url_parser.php'); + +sqgetGlobalVar('messages', $messages, SQ_SESSION); +sqgetGlobalVar('mailbox', $mailbox, SQ_GET); +sqgetGlobalVar('ent_id', $ent_id, SQ_GET); +sqgetGlobalVar('passed_ent_id', $passed_ent_id, SQ_GET); +sqgetGlobalVar('QUERY_STRING', $QUERY_STRING, SQ_SERVER); +sqgetGlobalVar('passed_id', $passed_id, SQ_GET, NULL, SQ_TYPE_BIGINT); + +$imapConnection = sqimap_login($username, false, $imapServerAddress, $imapPort, 0); +$mbx_response = sqimap_mailbox_select($imapConnection, $mailbox); + +$message = &$messages[$mbx_response['UIDVALIDITY']][$passed_id]; +if (!is_object($message)) { + $message = sqimap_get_message($imapConnection, $passed_id, $mailbox); +} +$message_ent = $message->getEntity($ent_id); +if ($passed_ent_id) { + $message = &$message->getEntity($passed_ent_id); +} +$header = $message_ent->header; +$type0 = $header->type0; +$type1 = $header->type1; +$charset = $header->getParameter('charset'); +$encoding = strtolower($header->encoding); + +$msg_url = 'read_body.php?' . $QUERY_STRING; +$msg_url = set_url_var($msg_url, 'ent_id', 0); +$dwnld_url = '../src/download.php?' . $QUERY_STRING . '&absolute_dl=true'; +$unsafe_url = 'view_text.php?' . $QUERY_STRING; +$unsafe_url = set_url_var($unsafe_url, 'view_unsafe_images', 1); + + +$body = mime_fetch_body($imapConnection, $passed_id, $ent_id); +$body = decodeBody($body, $encoding); +do_hook('message_body', $body); + +if (isset($languages[$squirrelmail_language]['XTRA_CODE']) && + function_exists($languages[$squirrelmail_language]['XTRA_CODE'].'_decode')) { + if (mb_detect_encoding($body) != 'ASCII') { + $body = call_user_func($languages[$squirrelmail_language]['XTRA_CODE'] . '_decode', $body); + } +} + +if ($type1 == 'html' || (isset($override_type1) && $override_type1 == 'html')) { + $ishtml = TRUE; + // html attachment with character set information + if (! empty($charset)) { + $body = charset_decode($charset,$body,false,true); } - echo $body . - "
"; -?> + $body = MagicHTML( $body, $passed_id, $message, $mailbox); +} else { + $ishtml = FALSE; + translateText($body, $wrap_at, $charset); +} + +displayPageHeader($color); + +$oTemplate->assign('view_message_href', $msg_url); +$oTemplate->assign('download_href', $dwnld_url); +$oTemplate->assign('view_unsafe_image_href', $ishtml ? $unsafe_url : ''); +$oTemplate->assign('body', $body); + +$oTemplate->display('view_text.tpl'); + +$oTemplate->display('footer.tpl');