rsaccani/stream-decorators

This package is abandoned and no longer maintained. No replacement package was suggested.

PHP psr7 stream decorators for mime message part streams

0.1.0 2018-08-09 08:47 UTC

This package is not auto-updated.

Last update: 2022-04-11 23:11:36 UTC


README

Psr7 stream decorators for character set conversion and common mail format content encodings.

Build Status Code Coverage Scrutinizer Code Quality Total Downloads Latest Stable Version

The goals of this project are to be:

  • Well written
  • Standards-compliant but forgiving
  • Includable via composer
  • Tested where possible

To include it for use in your project, please install via composer:

composer require zbateson/stream-decorators

Requirements

StreamDecorators requires PHP 5.4 or newer or HHVM. Tested on PHP 5.4, 5.5, 5.6, 7, 7.1 and 7.2 and HHVM 3.6, 3.12, 3.24 and 'current' on travis.

Usage

$stream = GuzzleHttp\Psr7\stream_for($handle);
$b64Stream = new ZBateson\StreamDecorators\Base64Stream($stream);
$charsetStream = new ZBateson\StreamDecorators\CharsetStream($b64Stream, 'UTF-32', 'UTF-8');

while (($line = GuzzleHttp\Psr7\readline()) !== false) {
    echo $line, "\r\n";
}

The library consists of the following Psr\Http\Message\StreamInterface implementations:

  • ZBateson\StreamDecorators\QuotedPrintableStream - decodes on read and encodes on write to quoted-printable
  • ZBateson\StreamDecorators\Base64Stream - decodes on read and encodes on write to base64
  • ZBateson\StreamDecorators\UUStream - decodes on read, encodes on write to uu-encoded
  • ZBateson\StreamDecorators\CharsetStream - encodes from $streamCharset to $stringCharset on read, and vice-versa on write
  • ZBateson\StreamDecorators\NonClosingStream - overrides close() and detach(), and simply unsets the attached stream without closing it
  • ZBateson\StreamDecorators\ChunkSplitStream - splits written characters into lines of $lineLength long (stream implementation of php's chunk_split)
  • ZBateson\StreamDecorators\PregReplaceFilterStream - calls preg_replace on with passed arguments on every read() call
  • ZBateson\StreamDecorators\SeekingLimitStream - similar to GuzzleHttp's LimitStream, but maintains an internal current read position, seeking to it when read() is called, and seeking back to the wrapped stream's position after reading

QuotedPrintableStream, Base64Stream and UUStream's constructors take a single argument of a StreamInterface. CharsetStreams's constructor also takes $streamCharset and $stringCharset as arguments respectively, ChunkSplitStream optionally takes a $lineLength argument (defaults to 76) and a $lineEnding argument (defaults to CRLF). PregReplaceFilterStream takes a $pattern argument and a $replacement argument. SeekingLimitStream takes optional $limit and $offset parameters, similar to GuzzleHttp's LimitStream.

In addition, the library exposes a ZBateson\StreamDecorators\Util\CharsetConverter class which provides the following:

  • a map of supported charsets with different names (aliases)
  • better charset lookup (by removing special chars during lookup, etc...) to catch more charsets that may be found in Content-Type headers
  • abstraction of the following mb_* and iconv functions, preferring mb_* for supported charsets:
  • mb_convert_encoding, iconv with CharsetConverter::convert
  • mb_substr, iconv_substr with CharsetConverter::getSubstr
  • mb_strlen, iconv_strlen with CharsetConverter::getLength

License

BSD licensed - please see license agreement.