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
|
<?php
/**
* The MIME_Viewer_report class is a wrapper used to load the appropriate
* MIME_Viewer for multipart/report data (RFC 3462).
*
* $Horde: framework/MIME/MIME/Viewer/report.php,v 1.6.10.6 2006/01/01 21:28:25 jan Exp $
*
* Copyright 2003-2006 Michael Slusarz <slusarz@bigworm.colorado.edu>
*
* See the enclosed file COPYING for license information (LGPL). If you
* did not receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*
* @author Michael Slusarz <slusarz@bigworm.colorado.edu>
* @since Horde 3.0
* @package Horde_MIME_Viewer
*/
class MIME_Viewer_report extends MIME_Viewer {
/**
* Stores the MIME_Viewer of the specified protocol.
*
* @var MIME_Viewer
*/
var $_viewer;
/**
* Render the multipart/report data.
*
* @param array $params An array of parameters needed.
*
* @return string The rendered data.
*/
function render($params = array())
{
/* Get the appropriate MIME_Viewer for the protocol specified. */
if (!($this->_resolveViewer())) {
return;
}
/* Render using the loaded MIME_Viewer object. */
return $this->_viewer->render($params);
}
/**
* Returns the content-type of the Viewer used to view the part.
*
* @return string A content-type string.
*/
function getType()
{
/* Get the appropriate MIME_Viewer for the protocol specified. */
if (!($this->_resolveViewer())) {
return 'application/octet-stream';
} else {
return $this->_viewer->getType();
}
}
/**
* Load a MIME_Viewer according to the report-type parameter stored
* in the MIME_Part to render. If unsuccessful, try to load a generic
* multipart MIME_Viewer.
*
* @access private
*
* @return boolean True on success, false on failure.
*/
function _resolveViewer()
{
$viewer = null;
if (empty($this->_viewer)) {
if (!($type = $this->mime_part->getContentTypeParameter('report-type'))) {
return false;
}
$viewer = &MIME_Viewer::factory($this->mime_part, 'message/' . String::lower($type));
if (empty($viewer) ||
(String::lower(get_class($viewer)) == 'mime_viewer_default')) {
if (!($viewer = &MIME_Viewer::factory($this->mime_part, $this->mime_part->getPrimaryType() . '/*'))) {
return false;
}
}
$this->_viewer = $viewer;
}
return true;
}
}
|