GRAYBYTE WORDPRESS FILE MANAGER8037

Server IP : 162.213.255.40 / Your IP : 216.73.216.114
System : Linux server146.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
PHP Version : 8.0.30
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF

HOME

/home/hellrfbn/public_html/wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /home/hellrfbn/public_html/wp-content/plugins/updraftplus/vendor/guzzlehttp/psr7/src//Stream.php
<?php

namespace GuzzleHttp\Psr7;

use Psr\Http\Message\StreamInterface;

/**
 * PHP stream implementation.
 *
 * @var $stream
 */
class Stream implements StreamInterface
{
    /**
     * Resource modes.
     *
     * @var string
     *
     * @see http://php.net/manual/function.fopen.php
     * @see http://php.net/manual/en/function.gzopen.php
     */
    const READABLE_MODES = '/r|a\+|ab\+|w\+|wb\+|x\+|xb\+|c\+|cb\+/';
    const WRITABLE_MODES = '/a|w|r\+|rb\+|rw|x|c/';

    private $stream;
    private $size;
    private $seekable;
    private $readable;
    private $writable;
    private $uri;
    private $customMetadata;

    /**
     * This constructor accepts an associative array of options.
     *
     * - size: (int) If a read stream would otherwise have an indeterminate
     *   size, but the size is known due to foreknowledge, then you can
     *   provide that size, in bytes.
     * - metadata: (array) Any additional metadata to return when the metadata
     *   of the stream is accessed.
     *
     * @param resource $stream  Stream resource to wrap.
     * @param array    $options Associative array of options.
     *
     * @throws \InvalidArgumentException if the stream is not a stream resource
     */
    public function __construct($stream, $options = [])
    {
        if (!is_resource($stream)) {
            throw new \InvalidArgumentException('Stream must be a resource');
        }

        if (isset($options['size'])) {
            $this->size = $options['size'];
        }

        $this->customMetadata = isset($options['metadata'])
            ? $options['metadata']
            : [];

        $this->stream = $stream;
        $meta = stream_get_meta_data($this->stream);
        $this->seekable = $meta['seekable'];
        $this->readable = (bool)preg_match(self::READABLE_MODES, $meta['mode']);
        $this->writable = (bool)preg_match(self::WRITABLE_MODES, $meta['mode']);
        $this->uri = $this->getMetadata('uri');
    }

    /**
     * Closes the stream when the destructed
     */
    public function __destruct()
    {
        $this->close();
    }

    public function __toString()
    {
        try {
            if ($this->isSeekable()) {
                $this->seek(0);
            }
            return $this->getContents();
        } catch (\Exception $e) {
            return '';
        }
    }

    public function getContents()
    {
        if (!isset($this->stream)) {
            throw new \RuntimeException('Stream is detached');
        }

        $contents = stream_get_contents($this->stream);

        if ($contents === false) {
            throw new \RuntimeException('Unable to read stream contents');
        }

        return $contents;
    }

    public function close()
    {
        if (isset($this->stream)) {
            if (is_resource($this->stream)) {
                fclose($this->stream);
            }
            $this->detach();
        }
    }

    public function detach()
    {
        if (!isset($this->stream)) {
            return null;
        }

        $result = $this->stream;
        unset($this->stream);
        $this->size = $this->uri = null;
        $this->readable = $this->writable = $this->seekable = false;

        return $result;
    }

    public function getSize()
    {
        if ($this->size !== null) {
            return $this->size;
        }

        if (!isset($this->stream)) {
            return null;
        }

        // Clear the stat cache if the stream has a URI
        if ($this->uri) {
            clearstatcache(true, $this->uri);
        }

        $stats = fstat($this->stream);
        if (isset($stats['size'])) {
            $this->size = $stats['size'];
            return $this->size;
        }

        return null;
    }

    public function isReadable()
    {
        return $this->readable;
    }

    public function isWritable()
    {
        return $this->writable;
    }

    public function isSeekable()
    {
        return $this->seekable;
    }

    public function eof()
    {
        if (!isset($this->stream)) {
            throw new \RuntimeException('Stream is detached');
        }

        return feof($this->stream);
    }

    public function tell()
    {
        if (!isset($this->stream)) {
            throw new \RuntimeException('Stream is detached');
        }

        $result = ftell($this->stream);

        if ($result === false) {
            throw new \RuntimeException('Unable to determine stream position');
        }

        return $result;
    }

    public function rewind()
    {
        $this->seek(0);
    }

    public function seek($offset, $whence = SEEK_SET)
    {
        $whence = (int) $whence;

        if (!isset($this->stream)) {
            throw new \RuntimeException('Stream is detached');
        }
        if (!$this->seekable) {
            throw new \RuntimeException('Stream is not seekable');
        }
        if (fseek($this->stream, $offset, $whence) === -1) {
            throw new \RuntimeException('Unable to seek to stream position '
                . $offset . ' with whence ' . var_export($whence, true));
        }
    }

    public function read($length)
    {
        if (!isset($this->stream)) {
            throw new \RuntimeException('Stream is detached');
        }
        if (!$this->readable) {
            throw new \RuntimeException('Cannot read from non-readable stream');
        }
        if ($length < 0) {
            throw new \RuntimeException('Length parameter cannot be negative');
        }

        if (0 === $length) {
            return '';
        }

        $string = fread($this->stream, $length);
        if (false === $string) {
            throw new \RuntimeException('Unable to read from stream');
        }

        return $string;
    }

    public function write($string)
    {
        if (!isset($this->stream)) {
            throw new \RuntimeException('Stream is detached');
        }
        if (!$this->writable) {
            throw new \RuntimeException('Cannot write to a non-writable stream');
        }

        // We can't know the size after writing anything
        $this->size = null;
        $result = fwrite($this->stream, $string);

        if ($result === false) {
            throw new \RuntimeException('Unable to write to stream');
        }

        return $result;
    }

    public function getMetadata($key = null)
    {
        if (!isset($this->stream)) {
            return $key ? null : [];
        } elseif (!$key) {
            return $this->customMetadata + stream_get_meta_data($this->stream);
        } elseif (isset($this->customMetadata[$key])) {
            return $this->customMetadata[$key];
        }

        $meta = stream_get_meta_data($this->stream);

        return isset($meta[$key]) ? $meta[$key] : null;
    }
}

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
.htaccess
0.41 KB
July 23 2025 07:38:28
hellrfbn / hellrfbn
0644
AppendStream.php
5.633 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
BufferStream.php
3.007 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
CachingStream.php
4.346 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
DroppingStream.php
1.068 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
FnStream.php
3.865 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
Header.php
2.127 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
InflateStream.php
1.802 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
LazyOpenStream.php
0.879 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
LimitStream.php
4.126 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
Message.php
8.082 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
MessageTrait.php
7.672 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
MimeType.php
4.989 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
MultipartStream.php
4.657 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
NoSeekStream.php
0.429 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
PumpStream.php
3.988 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
Query.php
3.408 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
Request.php
3.632 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
Response.php
4.696 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
Rfc7230.php
0.675 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
ServerRequest.php
9.621 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
Stream.php
6.65 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
StreamDecoratorTrait.php
3.214 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
StreamWrapper.php
3.69 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
UploadedFile.php
7.589 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
Uri.php
22.361 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
UriComparator.php
1.147 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
UriNormalizer.php
8.136 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
UriResolver.php
8.583 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
Utils.php
14.329 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
functions.php
13.095 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
functions_include.php
0.152 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF