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 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
|
<?php
require_once dirname(__FILE__) . '/Message.php';
/**
* The name of the URL parameter that holds the MIME_Contents cache
* identifier.
*/
define('MIME_CONTENTS_CACHE', 'mimecache');
/**
* Display attachment information in list format.
*/
define('MIME_CONTENTS_DISPLAY_TYPE_LIST', 0);
/**
* Display attachment information inline with attachment.
*/
define('MIME_CONTENTS_DISPLAY_TYPE_INLINE', 1);
/**
* Display attachment information both in list format and inline with
* attachment.
*/
define('MIME_CONTENTS_DISPLAY_TYPE_BOTH', 2);
/**
* The MIME_Contents:: class contains functions related to handling the output
* of MIME content.
*
* $Horde: framework/MIME/MIME/Contents.php,v 1.129.4.35 2006/05/05 03:30:22 slusarz Exp $
*
* Copyright 2002-2006 Michael Slusarz <slusarz@bigworm.colorado.edu>
*
* See the enclosed file COPYING for license information (GPL). If you did not
* receive this file, see http://www.fsf.org/copyleft/gpl.html.
*
* @author Michael Slusarz <slusarz@bigworm.colorado.edu>
* @since Horde 3.0
* @package Horde_MIME
*/
class MIME_Contents {
/**
* The MIME_Message object for the message.
*
* @var MIME_Message
*/
var $_message;
/**
* The MIME_Message object we use when caching.
*
* @var MIME_Message
*/
var $_cachemessage;
/**
* The attachments list.
*
* @var array
*/
var $_atc = array();
/**
* The message parts list.
*
* @var array
*/
var $_parts = array();
/**
* The summary parts list.
*
* @var array
*/
var $_summary = array();
/**
* The summary type.
*
* @var string
*/
var $_summaryType = null;
/**
* The Cache_session identifier.
*
* @var string
*/
var $_sessionCacheID = null;
/**
* The MIME_Viewer object cache.
*
* @var array
*/
var $_viewerCache = array();
/**
* The attachment display type to use.
*
* @var integer
*/
var $_displayType = MIME_CONTENTS_DISPLAY_TYPE_BOTH;
/**
* The MIME index key to use.
*
* @var string
*/
var $_mimekey = null;
/**
* The actionID value for various actions.
* 'download' -- Downloading a part/attachment.
* 'view' -- Viewing a part/attachment.
*
* @var array
*/
var $_viewID = array();
/**
* Show the links in the summaries?
*
* @var boolean
*/
var $_links = true;
/**
* The base MIME_Contents object.
*
* @var MIME_Contents
*/
var $_base = null;
/**
* The number of message/rfc822 levels labeled as 'attachments' of the
* current part.
*
* @var integer
*/
var $_attach822 = 0;
/**
* Constructor.
*
* @param MIME_Message $messageOb The object to work with.
* @param array $viewID The actionID values for viewing
* parts/attachments.
* @param array &$contents Array containing a single value:
* a reference to the base object.
* (This last parameter needs to be handled via an array because PHP <
* 5.0 doesn't handle optional pointer parameters otherwise.)
*/
function MIME_Contents($messageOb, $viewID = array(), $contents = array())
{
$this->_message = $messageOb;
$this->_cachemessage = Util::cloneObject($messageOb);
$this->_viewID = $viewID;
/* Create the pointer to the base object. */
if (!empty($contents)) {
$ptr = reset($contents);
$old_ptr = &$ptr->getBaseObjectPtr();
$this->_base = $old_ptr;
}
}
/**
* Returns the entire body of the message.
* You probably want to override this function in any subclass.
*
* @return string The text of the body of the message.
*/
function getBody()
{
return $this->_message->toString();
}
/**
* Returns the raw text for one section of the message.
* You probably want to override this function in any subclass.
*
* @param string $id The ID of the MIME_Part.
*
* @return string The text of the part.
*/
function getBodyPart($id)
{
if (($part = &$this->getMIMEPart($id))) {
return $part->getContents();
} else {
return '';
}
}
/**
* Returns the MIME_Message object for the mail message.
*
* @return MIME_Message A MIME_Message object.
*/
function getMIMEMessage()
{
return $this->_message;
}
/**
* Fetch a part of a MIME message.
*
* @param integer $id The MIME index of the part requested.
*
* @return MIME_Part The raw MIME part asked for.
*/
function &getMIMEPart($id)
{
$part = $this->_message->getPart($id);
return $part;
}
/**
* Rebuild the MIME_Part structure of a message.
* You probably want to override this function in any subclass.
*
* @return MIME_Message A MIME_Message object with all of the body text
* stored in the individual MIME_Parts.
*/
function rebuildMessage()
{
return $this->_message;
}
/**
* Fetch part of a MIME message.
*
* @param integer $id The MIME ID of the part requested.
* @param boolean $all If this is a header part, should we return all text
* in the body?
*
* @return MIME_Part The MIME_Part.
*/
function &getRawMIMEPart($id, $all = false)
{
$mime_part = &$this->getMIMEPart($id);
if (!is_a($mime_part, 'MIME_Part')) {
$mime_part = null;
return $mime_part;
}
/* If all text is requested, change the ID now. */
if ($all && $mime_part->getInformation('header')) {
$id = substr($id, 0, strrpos($id, '.'));
}
/* Only set contents if there is currently none in the MIME Part. */
if (!$mime_part->getContents()) {
$mime_part->setContents($this->getBodyPart($id));
}
return $mime_part;
}
/**
* Fetch part of a MIME message and decode it, if it is base_64 or
* qprint encoded.
*
* @param integer $id The MIME ID of the part requested.
* @param boolean $all If this is a header part, should we return all text
* in the body?
*
* @return MIME_Part The MIME_Part with its contents decoded.
*/
function &getDecodedMIMEPart($id, $all = false)
{
if (($mime_part = &$this->getRawMIMEPart($id, $all))) {
$mime_part->transferDecodeContents();
// Noop.
} else {
$mime_part = null;
}
return $mime_part;
}
/**
* Return the attachment list (HTML table format).
*
* @return string The list of attachments formatted into HTML.
*/
function getAttachments()
{
$msg = '';
$akeys = array_keys($this->_atc);
natsort($akeys);
foreach ($akeys as $key) {
$msg .= $this->_arrayToTableRow($this->_atc[$key]);
}
return $msg;
}
/**
* Return the message list (HTML table format).
*
* @param boolean $oneframe Should the output be designed for display in a
* single frame?
*
* @return string The message formatted into HTML.
*/
function getMessage($oneframe = false)
{
$msg = '';
$msgCount = count($this->_parts);
$partDisplayed = false;
if ($oneframe) {
$msg .= '<style type="text/css">.onefr {padding:1px; margin-bottom:1px; border:1px dashed #00c; background:#eef; color:#006}</style>' . "\n";
}
// TODO: Temporary hack to display header info for a message with one
// MIME part that cannot be displayed inline.
if (!$msgCount || ($msgCount == 1 && !reset($this->_parts))) {
$this->setSummary($this->_message, 'part');
$msgCount = 1;
}
foreach ($this->_parts as $key => $value) {
if (isset($this->_summary[$key]) &&
((($msgCount == 1) && empty($value)) || ($msgCount > 1))) {
$msg .= '<tr><td>';
if ($oneframe) {
$msg .= '<table class="onefr">';
$summary = $this->_summary[$key];
$summary = array_merge(array_splice($summary, 0, 1), array_splice($summary, 1));
$msg .= $this->_arrayToTableRow($summary);
} else {
$msg .= '<table>';
$msg .= $this->_arrayToTableRow($this->_summary[$key]);
}
$msg .= '</table></td></tr>';
}
if (!empty($value)) {
$msg .= '<tr><td class="text">' . $value . '</td></tr>';
$partDisplayed = true;
}
}
if (!$partDisplayed) {
$msg .= '<tr><td class="text" align="left"><em>' . _("There are no parts that can be displayed inline.") . '</em></td></tr>';
}
return $msg;
}
/**
* Expands an array into a table row.
*
* @access private
*
* @param array $array The array to expand.
*
* @return string The array expanded to a HTML table row.
*/
function _arrayToTableRow($array)
{
$text = '<tr valign="middle">';
foreach ($array as $elem) {
if (!empty($elem)) {
$text .= "<td>$elem </td>\n";
}
}
return $text . "</tr>\n";
}
/**
* Returns the data for a specific MIME index.
*
* @param string $id The MIME index.
* @param string $field The field to return (message, atc, summary)
*
* @return string The text currently set for that index.
*/
function getIndex($id, $field)
{
$field = '_' . $field;
if (is_array($this->$field) && array_key_exists($id, $this->$field)) {
$entry = $this->$field;
return $entry[$id];
} else {
return null;
}
}
/**
* Removes the message text and summary for a specific MIME index.
*
* @param string $id The MIME index.
*/
function removeIndex($id)
{
unset($this->_parts[$id]);
unset($this->_summary[$id]);
unset($this->_atc[$id]);
}
/**
* Determine if we can (and know how to) inline a MIME Part.
*
* @param MIME_Part &$mime_part A MIME_Part object.
*
* @return boolean True if part can be inlined.
* False if it cannot.
*/
function canDisplayInline(&$mime_part)
{
$viewer = &$this->getMIMEViewer($mime_part);
/* First check: The MIME headers allow the part to be inlined.
* However, if we are already in view mode, then we can skip this
* check. */
if (!$this->viewAsAttachment() &&
($mime_part->getDisposition() != 'inline') &&
!$viewer->forceInlineView()) {
return false;
}
/* Second check (save the most expensive for last):
* Check to see if the driver is set to inline. */
return (is_a($viewer, 'MIME_Viewer') && $viewer->canDisplayInline());
}
/**
* Get MIME_Viewer object.
*
* @param MIME_Part &$mime_part A MIME_Part object.
*
* @return MIME_Viewer The MIME_Viewer object, or false on error.
*/
function &getMIMEViewer(&$mime_part)
{
/* Make sure we have a MIME_Part to process. */
if (empty($mime_part)) {
return false;
}
require_once dirname(__FILE__) . '/Viewer.php';
$key = $mime_part->getUniqueID() . '|' . $mime_part->getType();
if (!isset($this->_viewerCache[$key])) {
$this->_viewerCache[$key] = &MIME_Viewer::factory($mime_part);
}
return $this->_viewerCache[$key];
}
/**
* Get the MIME Content-Type output by a MIME_Viewer for a particular
* MIME_Part.
*
* @param MIME_Part &$mime_part A MIME_Part object.
*
* @return string The MIME type output by the MIME_Viewer, or false on
* error.
*/
function getMIMEViewerType(&$mime_part)
{
if (($viewer = &$this->getMIMEViewer($mime_part))) {
return $viewer->getType();
} else {
return false;
}
}
/**
* Returns the key to use for a particular MIME_Part.
*
* @access private
*
* @param MIME_Part &$mime_part A MIME_Part object.
* @param boolean $override Respect the MIME key override value?
*
* @return string The unique identifier of the MIME_Part.
* Returns false if no key found.
*/
function _getMIMEKey(&$mime_part, $override = true)
{
$id = $this->getMIMEKeyOverride();
if ($override && !is_null($id)) {
return $id;
} else {
$id = $mime_part->getMIMEId();
if (is_null($id)) {
return false;
} else {
return $id;
}
}
}
/**
* Gets the MIME key override.
*
* @return string The MIME key override - null if no override.
*/
function getMIMEKeyOverride()
{
return $this->_mimekey;
}
/**
* Sets an override for the MIME key.
*
* @param string $mimekey
*/
function setMIMEKeyOverride($mimekey = null)
{
$this->_mimekey = $mimekey;
}
/**
* Should we display links for the summaries?
*
* @param boolean $show Show the summary links?
*/
function showSummaryLinks($show = null)
{
if (!is_null($show)) {
$this->_links = $show;
}
return $this->_links;
}
/**
* Render a MIME Part.
*
* @param MIME_Part &$mime_part A MIME_Part object.
*
* @return string The rendered data.
*/
function renderMIMEPart(&$mime_part)
{
return $this->_renderMIMEPart($mime_part, false);
}
/**
* Render MIME Part attachment info.
*
* @param MIME_Part &$mime_part A MIME_Part object.
*
* @return string The rendered data.
*/
function renderMIMEAttachmentInfo(&$mime_part)
{
return $this->_renderMIMEPart($mime_part, true);
}
/**
* Render MIME Part data.
*
* @access private
*
* @param MIME_Part &$mime_part A MIME_Part object.
* @param boolean $attachment Render MIME Part attachment info?
*
* @return string The rendered data.
*/
function _renderMIMEPart(&$mime_part, $attachment = false)
{
/* Get the MIME_Viewer object for this MIME part */
$viewer = &$this->getMIMEViewer($mime_part);
if (!is_a($viewer, 'MIME_Viewer')) {
return '';
}
$msg = '';
$mime_part->transferDecodeContents();
/* If this is a text/* part, AND the text is in a different character
* set than the browser, convert to the current character set.
* Additionally, if the browser does not support UTF-8, give the
* user a link to open the part in a new window with the correct
* character set. */
$charset = $mime_part->getCharset();
if ($charset) {
$charset_upper = String::upper($charset);
if (($charset_upper != 'US-ASCII') &&
!$this->viewAsAttachment()) {
$default_charset = String::upper(NLS::getCharset());
if ($charset_upper != $default_charset) {
$mime_part->setContents(String::convertCharset($mime_part->getContents(), $charset, $default_charset));
$mime_part->setCharset($default_charset);
if ($default_charset != 'UTF-8') {
$status = array(
sprintf(_("This message was written in a character set (%s) other than your own."), htmlspecialchars($charset)),
sprintf(_("If it is not displayed correctly, %s to open it in a new window."), $this->linkViewJS($mime_part, 'view_attach', _("click here")))
);
$msg = $this->formatStatusMsg($status, null, false) . $msg;
}
}
}
}
$viewer->setMIMEPart($mime_part);
$params = array(&$this);
if ($attachment) {
$msg .= $viewer->renderAttachmentInfo($params);
} else {
$msg .= $viewer->render($params);
}
return $msg;
}
/**
* Build the message deciding what MIME Parts to show.
*
* @return boolean False on error.
*/
function buildMessage()
{
$this->_atc = array();
$this->_parts = array();
$this->_summary = array();
if (!is_a($this->_message, 'MIME_Message')) {
return false;
}
/* Now display the parts. */
$mime_part = $this->_message->getBasePart();
$this->buildMessagePart($mime_part);
return true;
}
/**
* Processes a MIME_Part and stores the display information in the internal
* class variables.
*
* @param MIME_Part &$mime_part The MIME_Part object to process.
*
* @return string The rendered text.
*/
function buildMessagePart(&$mime_part)
{
$msg = '';
/* If we can't display the part inline, add it to the attachment
list. If the MIME ID of the current part is '0', then force a
render of the part (since it is the base part and, without
attempting to render, the message will ALWAYS appear empty. */
if (!$this->canDisplayInline($mime_part) &&
($mime_part->getMIMEId() != 0)) {
/* Not displaying inline; add to the attachments list. */
if (($this->_displayType == MIME_CONTENTS_DISPLAY_TYPE_LIST) ||
($this->_displayType == MIME_CONTENTS_DISPLAY_TYPE_BOTH)) {
$this->setSummary($mime_part, 'attachment');
}
if (($this->_displayType == MIME_CONTENTS_DISPLAY_TYPE_INLINE) ||
($this->_displayType == MIME_CONTENTS_DISPLAY_TYPE_BOTH)) {
$this->setSummary($mime_part, 'part');
}
/* Check to see if any attachment information can be rendered by
the MIME_Viewer. */
$msg = $this->renderMIMEAttachmentInfo($mime_part);
if (!empty($msg)) {
$key = $this->_getMIMEKey($mime_part);
$this->_parts[$key] = $msg;
}
} else {
$msg = $this->renderMIMEPart($mime_part);
$key = $this->_getMIMEKey($mime_part);
if (!$this->_attach822) {
$this->_parts[$key] = $msg;
}
/* Some MIME_Viewers set the summary by themelves, so only
* add to attachment/inline lists if nothing has been set
* as of yet. */
if ((($mime_part->getType() != 'multipart/mixed') ||
!empty($msg)) &&
!empty($key) &&
!$this->getIndex($key, 'summary')) {
$this->setSummary($mime_part, 'part');
if ($this->_attach822 &&
(($this->_displayType == MIME_CONTENTS_DISPLAY_TYPE_LIST) ||
($this->_displayType == MIME_CONTENTS_DISPLAY_TYPE_BOTH))) {
$this->setSummary($mime_part, 'attachment');
}
}
}
if ($mime_part->getInformation('header')) {
/* If this is message/rfc822 part, and it is marked as an
* attachment, we need to let future calls to buildMessagePart()
* know that it should mark embedded parts as not viewable
* inline. */
$increment_822 = false;
if (($mime_part->getType() == 'message/rfc822') &&
($mime_part->getDisposition() == 'attachment')) {
$this->_attach822++;
$increment_822 = true;
}
foreach ($mime_part->getParts() as $part) {
$msg .= $this->buildMessagePart($part);
}
if ($increment_822) {
$this->_attach822--;
}
}
return $msg;
}
/**
* Are we viewing this page as an attachment through view.php?
* This method can also be called via MIME_Contents::viewAsAttachment().
*
* @param boolean $popup If true, also check if we are viewing attachment
* in popup view window.
*
* @return boolean True if we are viewing this part as an attachment
* through view.php.
*/
function viewAsAttachment($popup = false)
{
return ((strpos($_SERVER['PHP_SELF'], 'view.php') !== false) &&
(!$popup || Util::getFormData('popup_view')));
}
/**
* Sets a summary entry.
*
* @param MIME_Part &$mime_part The MIME_Part object.
* @param string $type The summary cache to use.
*/
function setSummary(&$mime_part, $type)
{
if ($type == 'attachment') {
$cache = &$this->_atc;
} elseif ($type == 'part') {
$cache = &$this->_summary;
} else {
return;
}
$key = $this->_getMIMEKey($mime_part);
$this->_summaryType = $type;
$summary = $this->partSummary($mime_part, null);
$this->_summaryType = null;
if (!empty($summary)) {
if (!isset($this->_parts[$key])) {
$this->_parts[$key] = null;
}
$cache[$key] = $summary;
}
}
/**
* Returns an array summarizing a part of a MIME message.
*
* @param MIME_Part &$mime_part The MIME_Part to summarize.
* @param boolean $guess Is this a temporary guessed-type part?
*
* @return array The summary of the part.
* [0] = Icon
* [1] = IMAP ID
* [2] = Description
* [3] = MIME Type
* [4] = Size
* [5] = Download link/icon
*/
function partSummary(&$mime_part, $guess = false)
{
$attachment = ($mime_part->getDisposition() == 'attachment');
$bytes = $mime_part->getBytes();
$description = htmlspecialchars($mime_part->getDescription(true, true));
$summary = array();
$type = htmlspecialchars($mime_part->getType());
$viewer = &$this->getMIMEViewer($mime_part);
if (!$viewer) {
return $summary;
}
/* Return if we still didn't find a native mime viewer
* for a guessed mime type. */
if ($guess && is_a($viewer, 'MIME_Viewer_default')) {
return $summary;
}
/* Get the MIME id index. */
$id = $this->_getMIMEKey($mime_part);
/* Icon column. */
$summary[] = Horde::img($viewer->getIcon($type), null, null, '');
/* Number column. */
if (($this->_displayType == MIME_CONTENTS_DISPLAY_TYPE_BOTH) &&
!is_null($this->_summaryType)) {
$summary[] = '<a id="mime_contents_' . $this->_summaryType . '_' . $id . '" href="#mime_contents_' . (($this->_summaryType == 'attachment') ?'part' : 'attachment') . '_' . $id . '">' . $id . '</a>';
} else {
$summary[] = $id;
}
/* Name/text part column. */
if (!$this->_links ||
(!$attachment && empty($bytes)) ||
!isset($this->_viewID['view']) ||
is_a($viewer, 'MIME_Viewer_default')) {
$summary[] = $description;
} else {
$param_array = array();
if ($guess === true) {
$param_array['ctype'] = $type;
}
$summary[] = $this->linkViewJS($mime_part, $this->_viewID['view'], $description, null, null, $param_array);
}
/* MIME type column. */
if ($guess) {
$summary[] = '<em>' . sprintf(_("View as %s"), $type) . '</em>';
} else {
$summary[] = '[' . $type . ']';
}
/* Size Column. */
$size = $mime_part->getSize(true);
if (!empty($bytes) &&
($mime_part->getCurrentEncoding() == 'base64')) {
/* From RFC 2045 [6.8]: "...the encoded data are consistently
only about 33 percent larger than the unencoded data." */
$size = number_format(max((($bytes * 0.75) / 1024), 1));
$summary[] = '<acronym title="' . _("Approximate Size") . '">' . sprintf(_("%s KB"), $size) . '</acronym>';
} else {
$summary[] = sprintf(_("%s KB"), $size);
}
/* Download column. */
if (!$this->_links ||
is_null($size) ||
!isset($this->_viewID['download'])) {
$summary[] = null;
} else {
$summary[] = $this->linkView($mime_part, $this->_viewID['download'], Horde::img('download.png', _("Download"), null, $GLOBALS['registry']->getImageDir('horde')), array('jstext' => sprintf(_("Download %s"), $mime_part->getDescription(true, true))), true);
}
/* If the MIME Type is application/octet-stream, try to use
the file extension to determine the actual MIME type. */
if ($this->_links &&
!$guess &&
!is_null($size) &&
($type == 'application/octet-stream') ||
($type == 'application/base64')) {
require_once dirname(__FILE__) . '/Magic.php';
$new_type = MIME_Magic::filenameToMIME(MIME::decode($mime_part->getName()));
if ($new_type != 'application/octet-stream') {
$temp_part = $mime_part;
$temp_part->setType($new_type);
$summary = array_map(
create_function('$a, $b', 'return empty($b) ? $a : $a . \'<br />\' . $b;'),
$summary,
$this->partSummary($temp_part, true));
}
}
return $summary;
}
/**
* Return the URL to the view.php page.
*
* @param MIME_Part &$mime_part The MIME_Part object to view.
* @param integer $actionID The ActionID to perform.
* @param array $params A list of any additional parameters that
* need to be passed to view.php. (key =
* name)
* @param boolean $dload Should we generate a download link?
*
* @return string The URL to view.php.
*/
function urlView(&$mime_part, $actionID, $params = array(), $dload = false)
{
/* Get the MIME ID for this part. */
$id = (isset($params['id'])) ? $params['id'] : $mime_part->getMIMEId();
/* Add the necessary local parameters. */
$params['actionID'] = $actionID;
$params['id'] = $id;
$params = array_merge($params, $this->cacheIDURLParam());
if ($dload) {
$url = Horde::downloadUrl($mime_part->getName(true, true), $params);
} else {
$url = Util::addParameter(Horde::applicationUrl('view.php'), $params);
}
return $url;
}
/**
* Generate a link to the view.php page.
*
* @param MIME_Part &$mime_part The MIME_Part object to view.
* @param integer $actionID The actionID value.
* @param string $text The link text.
* @param array $params A list of additional parameters.
* 'class' - The CSS class to use.
* 'jstext' - The JS text to use.
* 'viewparams' - A list of any additional parameters that need to be
* passed to view.php.
* @param boolean $dload Should we generate a download link?
*
* @return string A HTML href link to view.php.
*/
function linkView(&$mime_part, $actionID, $text, $params = array(),
$dload = false)
{
if (!isset($params['class'])) {
$params['class'] = null;
}
if (!isset($params['jstext'])) {
$params['jstext'] = $text;
}
if (!isset($params['viewparams'])) {
$params['viewparams'] = array();
}
if ($dload) {
$window = null;
} else {
$window = 'view_' . abs(crc32(microtime()));
}
return Horde::link($this->urlView($mime_part, $actionID, $params['viewparams'], $dload), $params['jstext'], $params['class'], $window) . $text . '</a>';
}
/**
* Generate a javascript link to the view.php page.
*
* @param MIME_Part &$mime_part The MIME_Part object to view.
* @param integer $actionID The ActionID to perform.
* @param string $text The link text.
* @param string $jstext The Javascript link text.
* @param string $css The CSS class to use.
* @param array $params A list of any additional parameters that
* need to be passed to view.php. (key =
* name)
* @param boolean $widget If true use Horde::widget() to generate,
* Horde::link() otherwise.
*
* @return string A HTML href link to view.php.
*/
function linkViewJS(&$mime_part, $actionID, $text, $jstext = null,
$css = null, $params = array(), $widget = false)
{
/* If viewing via view.php, we don't want a JS link. */
if ($this->viewAsAttachment()) {
return $this->linkView($mime_part, $actionID, $text, $params);
}
if (empty($jstext)) {
$jstext = sprintf(_("View %s"), $mime_part->getDescription(true, true));
}
$params['popup_view'] = 1;
$url = $this->urlView($mime_part, $actionID, $params);
if (!($id = $mime_part->getMIMEId())) {
$id = abs(crc32(serialize($mime_part)));
}
if ($widget) {
return Horde::widget('#', $jstext, $css, null, "view('" . $url . "', '" . $id . "'); return false;", $text);
} else {
return Horde::link('#', $jstext, $css, null, "view('" . $url . "', '" . $id . "'); return false;") . $text . '</a>';
}
}
/**
* Prints out the status message for a given MIME Part.
*
* @param string $msg The message to output.
* @param string $img An image link to add to the beginning of the
* message.
* @param boolean $print Output this message when in a print view?
* @param string $class An optional style for the status box.
*
* @return string The formatted status message string.
*/
function formatStatusMsg($msg, $img = null, $printable = true,
$class = null)
{
if (!is_array($msg)) {
$msg = array($msg);
}
/* If we are viewing as an attachment, don't print HTML code. */
if ($this->viewAsAttachment()) {
return implode("\n", $msg);
}
if (is_null($class)) {
$class = 'mimeStatusMessage';
}
$text = '<table class="' . $class . '">';
/* If no image, simply print out the message. */
if (is_null($img)) {
foreach ($msg as $val) {
$text .= '<tr><td>' . $val . '</td></tr>' . "\n";
}
} else {
$text .= '<tr><td valign="middle">' . $img . ' </td>';
$text .= '<td>';
if (count($msg) == 1) {
$text .= $msg[0];
} else {
$text .= '<table>';
foreach ($msg as $val) {
$text .= '<tr><td>' . $val . '</td></tr>' . "\n";
}
$text .= '</table>';
}
$text .= '</td></tr>' . "\n";
}
return $text . '</table>';
}
/**
* Return a pointer to the base object.
*
* @return mixed Returns a pointer to the base object.
* Returns false if there is no base object.
*/
function &getBaseObjectPtr()
{
if (is_null($this->_base)) {
return $this;
} else {
return $this->_base;
}
}
/**
* Set the MIME_Contents:: object to be cached.
*
* @access private
*
* @param string The cache OID.
*/
function _addCache()
{
if (is_null($this->_sessionCacheID)) {
$this->_sessionCacheID = $this->_createCacheID();
register_shutdown_function(array(&$this, '_addCacheShutdown'));
}
return $this->_sessionCacheID;
}
/**
* Creates a unique cache ID for this object.
*
* @access private
*
* @return string A unique cache ID.
*/
function _createCacheID()
{
return md5(microtime());
}
/**
* Saves a copy of the MIME_Contents object at the end of a request.
*
* @access private
*/
function _addCacheShutdown()
{
require_once 'Horde/SessionObjects.php';
$cache = &Horde_SessionObjects::singleton();
/* Don't save the MIME_Viewer cached objects since there is no easy
way to regenerate them on cache reload. */
$this->_viewerCache = array();
/* Copy the MIME_Message cache object to the _message variable. */
$this->_message = $this->_cachemessage;
$cache->store($this->_sessionCacheID, $this);
}
/**
* Returns the cached MIME_Contents:: object.
* This function should be called statically e.g.:
* $ptr = &MIME_Contents::getCache().
*
* @param string $cacheid The cache ID to use. If empty, will use the
* cache ID located in the URL parameter named
* MIME_CONTENTS_CACHE.
*
* @return MIME_Contents The MIME_Contents object, or null if it does not
* exist.
*/
function &getCache($cacheid = null)
{
if (is_null($cacheid)) {
$cacheid = Util::getFormData(MIME_CONTENTS_CACHE);
}
require_once 'Horde/SessionObjects.php';
$cache = &Horde_SessionObjects::singleton();
$contents = &$cache->query($cacheid);
return $contents;
}
/**
* Add the current object to the cache, and return the cache identifier
* to be used in URLs.
*
* @return array The parameter key/value set to use in URLs.
*/
function cacheIDURLParam()
{
return array(MIME_CONTENTS_CACHE => $this->_addCache());
}
}
|