123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333 |
- <?php
- /**
- * Zend Framework
- *
- * LICENSE
- *
- * This source file is subject to the new BSD license that is bundled
- * with this package in the file LICENSE.txt.
- * It is also available through the world-wide-web at this URL:
- * http://framework.zend.com/license/new-bsd
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to license@zend.com so we can send you a copy immediately.
- *
- * @category Zend
- * @package Zend_Mime
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- * @version $Id$
- */
- /**
- * Zend_Mime
- */
- #require_once 'Zend/Mime.php';
- /**
- * Class representing a MIME part.
- *
- * @category Zend
- * @package Zend_Mime
- * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
- * @license http://framework.zend.com/license/new-bsd New BSD License
- */
- class Zend_Mime_Part
- {
- /**
- * Type
- *
- * @var string
- */
- public $type = Zend_Mime::TYPE_OCTETSTREAM;
- /**
- * Encoding
- *
- * @var string
- */
- public $encoding = Zend_Mime::ENCODING_8BIT;
- /**
- * ID
- *
- * @var string
- */
- public $id;
- /**
- * Disposition
- *
- * @var string
- */
- public $disposition;
- /**
- * Filename
- *
- * @var string
- */
- public $filename;
- /**
- * Description
- *
- * @var string
- */
- public $description;
- /**
- * Character set
- *
- * @var string
- */
- public $charset;
- /**
- * Boundary
- *
- * @var string
- */
- public $boundary;
- /**
- * Location
- *
- * @var string
- */
- public $location;
- /**
- * Language
- *
- * @var string
- */
- public $language;
- /**
- * Content
- *
- * @var mixed
- */
- protected $_content;
- /**
- * @var bool
- */
- protected $_isStream = false;
- /**
- * create a new Mime Part.
- * The (unencoded) content of the Part as passed
- * as a string or stream
- *
- * @param mixed $content String or Stream containing the content
- */
- public function __construct($content)
- {
- $this->_content = $content;
- if (is_resource($content)) {
- $this->_isStream = true;
- }
- }
- /**
- * @todo setters/getters
- * @todo error checking for setting $type
- * @todo error checking for setting $encoding
- */
- /**
- * check if this part can be read as a stream.
- * if true, getEncodedStream can be called, otherwise
- * only getContent can be used to fetch the encoded
- * content of the part
- *
- * @return bool
- */
- public function isStream()
- {
- return $this->_isStream;
- }
- /**
- * if this was created with a stream, return a filtered stream for
- * reading the content. very useful for large file attachments.
- *
- * @return mixed Stream
- * @throws Zend_Mime_Exception if not a stream or unable to append filter
- */
- public function getEncodedStream()
- {
- if (!$this->_isStream) {
- #require_once 'Zend/Mime/Exception.php';
- throw new Zend_Mime_Exception(
- 'Attempt to get a stream from a string part'
- );
- }
- //stream_filter_remove(); // ??? is that right?
- switch ($this->encoding) {
- case Zend_Mime::ENCODING_QUOTEDPRINTABLE:
- $filter = stream_filter_append(
- $this->_content,
- 'convert.quoted-printable-encode',
- STREAM_FILTER_READ,
- array(
- 'line-length' => 76,
- 'line-break-chars' => Zend_Mime::LINEEND
- )
- );
- if (!is_resource($filter)) {
- #require_once 'Zend/Mime/Exception.php';
- throw new Zend_Mime_Exception(
- 'Failed to append quoted-printable filter'
- );
- }
- break;
- case Zend_Mime::ENCODING_BASE64:
- $filter = stream_filter_append(
- $this->_content,
- 'convert.base64-encode',
- STREAM_FILTER_READ,
- array(
- 'line-length' => 76,
- 'line-break-chars' => Zend_Mime::LINEEND
- )
- );
- if (!is_resource($filter)) {
- #require_once 'Zend/Mime/Exception.php';
- throw new Zend_Mime_Exception(
- 'Failed to append base64 filter'
- );
- }
- break;
- default:
- }
- return $this->_content;
- }
- /**
- * Get the Content of the current Mime Part in the given encoding.
- *
- * @param string $EOL Line end; defaults to {@link Zend_Mime::LINEEND}
- * @throws Zend_Mime_Exception
- * @return string
- */
- public function getContent($EOL = Zend_Mime::LINEEND)
- {
- if ($this->_isStream) {
- return stream_get_contents($this->getEncodedStream());
- } else {
- return Zend_Mime::encode($this->_content, $this->encoding, $EOL);
- }
- }
- /**
- * Get the RAW unencoded content from this part
- *
- * @return string
- */
- public function getRawContent()
- {
- if ($this->_isStream) {
- return stream_get_contents($this->_content);
- } else {
- return $this->_content;
- }
- }
- /**
- * Create and return the array of headers for this MIME part
- *
- * @param string $EOL Line end; defaults to {@link Zend_Mime::LINEEND}
- * @return array
- */
- public function getHeadersArray($EOL = Zend_Mime::LINEEND)
- {
- $headers = array();
- $contentType = $this->type;
- if ($this->charset) {
- $contentType .= '; charset=' . $this->charset;
- }
- if ($this->boundary) {
- $contentType .= ';' . $EOL
- . " boundary=\"" . $this->boundary . '"';
- }
- $headers[] = array(
- 'Content-Type',
- $contentType
- );
- if ($this->encoding) {
- $headers[] = array(
- 'Content-Transfer-Encoding',
- $this->encoding
- );
- }
- if ($this->id) {
- $headers[] = array(
- 'Content-ID',
- '<' . $this->id . '>'
- );
- }
- if ($this->disposition) {
- $disposition = $this->disposition;
- if ($this->filename) {
- $disposition .= '; filename="' . $this->filename . '"';
- }
- $headers[] = array(
- 'Content-Disposition',
- $disposition
- );
- }
- if ($this->description) {
- $headers[] = array(
- 'Content-Description',
- $this->description
- );
- }
- if ($this->location) {
- $headers[] = array(
- 'Content-Location',
- $this->location
- );
- }
- if ($this->language) {
- $headers[] = array(
- 'Content-Language',
- $this->language
- );
- }
- return $headers;
- }
- /**
- * Return the headers for this part as a string
- *
- * @param string $EOL Line end; defaults to {@link Zend_Mime::LINEEND}
- * @return string
- */
- public function getHeaders($EOL = Zend_Mime::LINEEND)
- {
- $res = '';
- foreach ($this->getHeadersArray($EOL) as $header) {
- $res .= $header[0] . ': ' . $header[1] . $EOL;
- }
- return $res;
- }
- }
|