InflateStream.php in Auth0 Single Sign On 8.2
File
vendor/guzzlehttp/psr7/src/InflateStream.php
View source
<?php
namespace GuzzleHttp\Psr7;
use Psr\Http\Message\StreamInterface;
class InflateStream implements StreamInterface {
use StreamDecoratorTrait;
public function __construct(StreamInterface $stream) {
$header = $stream
->read(10);
$filenameHeaderLength = $this
->getLengthOfPossibleFilenameHeader($stream, $header);
$stream = new LimitStream($stream, -1, 10 + $filenameHeaderLength);
$resource = StreamWrapper::getResource($stream);
stream_filter_append($resource, 'zlib.inflate', STREAM_FILTER_READ);
$this->stream = $stream
->isSeekable() ? new Stream($resource) : new NoSeekStream(new Stream($resource));
}
private function getLengthOfPossibleFilenameHeader(StreamInterface $stream, $header) {
$filename_header_length = 0;
if (substr(bin2hex($header), 6, 2) === '08') {
$filename_header_length = 1;
while ($stream
->read(1) !== chr(0)) {
$filename_header_length++;
}
}
return $filename_header_length;
}
}
Classes
Name |
Description |
InflateStream |
Uses PHP's zlib.inflate filter to inflate deflate or gzipped content. |