www.gusucode.com > Flarum PHP论坛 中文版 v0.1 beta7源码程序 > FlarumChina-master/vendor/zendframework/zend-stratigility/src/Http/Response.php

    <?php
/**
 * Zend Framework (http://framework.zend.com/)
 *
 * @see       http://github.com/zendframework/zend-stratigility for the canonical source repository
 * @copyright Copyright (c) 2015-2016 Zend Technologies USA Inc. (http://www.zend.com)
 * @license   https://github.com/zendframework/zend-stratigility/blob/master/LICENSE.md New BSD License
 */

namespace Zend\Stratigility\Http;

use RuntimeException;
use Psr\Http\Message\ResponseInterface as PsrResponseInterface;
use Psr\Http\Message\StreamInterface;

/**
 * Response decorator
 *
 * Adds in write, end, and isComplete from RequestInterface in order
 * to provide a common interface for all PSR HTTP implementations.
 *
 * @deprecated since 1.3.0; to be removed with 2.0.0. Track the original
 *     response via a request attribute or via a service instead; you
 *     can use Zend\Stratigility\Middleware\OriginalMessages to do so. We
 *     recommend that you use only the methods defined in PSR-7.
 */
class Response implements
    PsrResponseInterface,
    ResponseInterface
{
    /**
     * @var bool
     */
    private $complete = false;

    /**
     * @var PsrResponseInterface
     */
    private $psrResponse;

    /**
     * @param PsrResponseInterface $response
     */
    public function __construct(PsrResponseInterface $response)
    {
        $this->psrResponse = $response;
    }

    /**
     * Return the original PSR response object
     *
     * @return PsrResponseInterface
     */
    public function getOriginalResponse()
    {
        trigger_error(sprintf(
            '%s is now deprecated. Please register %s as your outermost middleware, '
            . 'and pull the original response via the request "originalResponse" '
            . 'attribute. %s will no longer be available starting in Stratigility 2.0.0. '
            . 'Please see '
            . 'https://docs.zendframework.com/zend-stratigility/migration/to-v2/#original-request-response-and-uri '
            . 'for full details.',
            __CLASS__,
            \Zend\Stratigility\Middleware\OriginalMessages::class,
            __METHOD__
        ), E_USER_DEPRECATED);
        return $this->psrResponse;
    }

    /**
     * Write data to the response body
     *
     * Proxies to the underlying stream and writes the provided data to it.
     *
     * @param string $data
     * @return self
     * @throws RuntimeException if response is already completed
     */
    public function write($data)
    {
        trigger_error(sprintf(
            '%s is now deprecated; use $response->getBody()->write(). '
            . '%s will no longer be available starting in Stratigility 2.0.0. '
            . 'Please see '
            . 'https://docs.zendframework.com/zend-stratigility/migration/to-v2/#deprecated-functionality '
            . 'for full details.',
            __CLASS__,
            __METHOD__
        ), E_USER_DEPRECATED);

        if ($this->complete) {
            throw $this->responseIsAlreadyCompleted(__METHOD__);
        }

        $this->getBody()->write($data);
        return $this;
    }

    /**
     * Mark the response as complete
     *
     * A completed response should no longer allow manipulation of either
     * headers or the content body.
     *
     * If $data is passed, that data should be written to the response body
     * prior to marking the response as complete.
     *
     * @param string $data
     * @return self
     */
    public function end($data = null)
    {
        trigger_error(sprintf(
            '%s is now deprecated; use $response->getBody()->write(). '
            . '%s will no longer be available starting in Stratigility 2.0.0. '
            . 'Please see '
            . 'https://docs.zendframework.com/zend-stratigility/migration/to-v2/#deprecated-functionality '
            . 'for full details.',
            __CLASS__,
            __METHOD__
        ), E_USER_DEPRECATED);

        if ($this->complete) {
            return $this;
        }

        if ($data) {
            $this->write($data);
        }

        $new = clone $this;
        $new->complete = true;
        return $new;
    }

    /**
     * Indicate whether or not the response is complete.
     *
     * I.e., if end() has previously been called.
     *
     * @return bool
     */
    public function isComplete()
    {
        trigger_error(sprintf(
            '%s is now deprecated; use $response->getBody()->write(). '
            . '%s will no longer be available starting in Stratigility 2.0.0. '
            . 'Please see '
            . 'https://docs.zendframework.com/zend-stratigility/migration/to-v2/#deprecated-functionality '
            . 'for full details.',
            __CLASS__,
            __METHOD__
        ), E_USER_DEPRECATED);

        return $this->complete;
    }

    /**
     * Proxy to PsrResponseInterface::getProtocolVersion()
     *
     * {@inheritdoc}
     */
    public function getProtocolVersion()
    {
        return $this->psrResponse->getProtocolVersion();
    }

    /**
     * Proxy to PsrResponseInterface::withProtocolVersion()
     *
     * {@inheritdoc}
     */
    public function withProtocolVersion($version)
    {
        $new = $this->psrResponse->withProtocolVersion($version);
        return new self($new);
    }

    /**
     * Proxy to PsrResponseInterface::getBody()
     *
     * {@inheritdoc}
     */
    public function getBody()
    {
        return $this->psrResponse->getBody();
    }

    /**
     * Proxy to PsrResponseInterface::withBody()
     *
     * {@inheritdoc}
     * @throws RuntimeException if response is already completed
     */
    public function withBody(StreamInterface $body)
    {
        if ($this->complete) {
            throw $this->responseIsAlreadyCompleted(__METHOD__);
        }

        $new = $this->psrResponse->withBody($body);
        return new self($new);
    }

    /**
     * Proxy to PsrResponseInterface::getHeaders()
     *
     * {@inheritdoc}
     */
    public function getHeaders()
    {
        return $this->psrResponse->getHeaders();
    }

    /**
     * Proxy to PsrResponseInterface::hasHeader()
     *
     * {@inheritdoc}
     */
    public function hasHeader($header)
    {
        return $this->psrResponse->hasHeader($header);
    }

    /**
     * Proxy to PsrResponseInterface::getHeader()
     *
     * {@inheritdoc}
     */
    public function getHeader($header)
    {
        return $this->psrResponse->getHeader($header);
    }

    /**
     * Proxy to PsrResponseInterface::getHeaderLine()
     *
     * {@inheritdoc}
     */
    public function getHeaderLine($header)
    {
        return $this->psrResponse->getHeaderLine($header);
    }

    /**
     * Proxy to PsrResponseInterface::withHeader()
     *
     * {@inheritdoc}
     * @throws RuntimeException if response is already completed
     */
    public function withHeader($header, $value)
    {
        if ($this->complete) {
            throw $this->responseIsAlreadyCompleted(__METHOD__);
        }

        $new = $this->psrResponse->withHeader($header, $value);
        return new self($new);
    }

    /**
     * Proxy to PsrResponseInterface::withAddedHeader()
     *
     * {@inheritdoc}
     * @throws RuntimeException if response is already completed
     */
    public function withAddedHeader($header, $value)
    {
        if ($this->complete) {
            throw $this->responseIsAlreadyCompleted(__METHOD__);
        }

        $new = $this->psrResponse->withAddedHeader($header, $value);
        return new self($new);
    }

    /**
     * Proxy to PsrResponseInterface::withoutHeader()
     *
     * {@inheritdoc}
     * @throws RuntimeException if response is already completed
     */
    public function withoutHeader($header)
    {
        if ($this->complete) {
            throw $this->responseIsAlreadyCompleted(__METHOD__);
        }

        $new = $this->psrResponse->withoutHeader($header);
        return new self($new);
    }

    /**
     * Proxy to PsrResponseInterface::getStatusCode()
     *
     * {@inheritdoc}
     */
    public function getStatusCode()
    {
        return $this->psrResponse->getStatusCode();
    }

    /**
     * Proxy to PsrResponseInterface::withStatus()
     *
     * {@inheritdoc}
     * @throws RuntimeException if response is already completed
     */
    public function withStatus($code, $reasonPhrase = null)
    {
        if ($this->complete) {
            throw $this->responseIsAlreadyCompleted(__METHOD__);
        }

        $new = $this->psrResponse->withStatus($code, $reasonPhrase);
        return new self($new);
    }

    /**
     * Proxy to PsrResponseInterface::getReasonPhrase()
     *
     * {@inheritdoc}
     */
    public function getReasonPhrase()
    {
        return $this->psrResponse->getReasonPhrase();
    }

    /**
     * @param string $detectedInMethod
     * @return RuntimeException
     */
    private function responseIsAlreadyCompleted($detectedInMethod)
    {
        return new RuntimeException(sprintf(
            'Calling %s is not possible, as the response is already marked as completed.',
            $detectedInMethod
        ));
    }
}