123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459 |
- <?php
- /**
- * Slim - a micro PHP 5 framework
- *
- * @author Josh Lockhart <[email protected]>
- * @copyright 2011 Josh Lockhart
- * @link http://www.slimframework.com
- * @license http://www.slimframework.com/license
- * @version 2.2.0
- * @package Slim
- *
- * MIT LICENSE
- *
- * Permission is hereby granted, free of charge, to any person obtaining
- * a copy of this software and associated documentation files (the
- * "Software"), to deal in the Software without restriction, including
- * without limitation the rights to use, copy, modify, merge, publish,
- * distribute, sublicense, and/or sell copies of the Software, and to
- * permit persons to whom the Software is furnished to do so, subject to
- * the following conditions:
- *
- * The above copyright notice and this permission notice shall be
- * included in all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- */
- namespace Slim\Http;
- /**
- * Response
- *
- * This is a simple abstraction over top an HTTP response. This
- * provides methods to set the HTTP status, the HTTP headers,
- * and the HTTP body.
- *
- * @package Slim
- * @author Josh Lockhart
- * @since 1.0.0
- */
- class Response implements \ArrayAccess, \Countable, \IteratorAggregate
- {
- /**
- * @var int HTTP status code
- */
- protected $status;
- /**
- * @var \Slim\Http\Headers List of HTTP response headers
- */
- protected $header;
- /**
- * @var string HTTP response body
- */
- protected $body;
- /**
- * @var int Length of HTTP response body
- */
- protected $length;
- /**
- * @var array HTTP response codes and messages
- */
- protected static $messages = array(
- //Informational 1xx
- 100 => '100 Continue',
- 101 => '101 Switching Protocols',
- //Successful 2xx
- 200 => '200 OK',
- 201 => '201 Created',
- 202 => '202 Accepted',
- 203 => '203 Non-Authoritative Information',
- 204 => '204 No Content',
- 205 => '205 Reset Content',
- 206 => '206 Partial Content',
- //Redirection 3xx
- 300 => '300 Multiple Choices',
- 301 => '301 Moved Permanently',
- 302 => '302 Found',
- 303 => '303 See Other',
- 304 => '304 Not Modified',
- 305 => '305 Use Proxy',
- 306 => '306 (Unused)',
- 307 => '307 Temporary Redirect',
- //Client Error 4xx
- 400 => '400 Bad Request',
- 401 => '401 Unauthorized',
- 402 => '402 Payment Required',
- 403 => '403 Forbidden',
- 404 => '404 Not Found',
- 405 => '405 Method Not Allowed',
- 406 => '406 Not Acceptable',
- 407 => '407 Proxy Authentication Required',
- 408 => '408 Request Timeout',
- 409 => '409 Conflict',
- 410 => '410 Gone',
- 411 => '411 Length Required',
- 412 => '412 Precondition Failed',
- 413 => '413 Request Entity Too Large',
- 414 => '414 Request-URI Too Long',
- 415 => '415 Unsupported Media Type',
- 416 => '416 Requested Range Not Satisfiable',
- 417 => '417 Expectation Failed',
- 422 => '422 Unprocessable Entity',
- 423 => '423 Locked',
- //Server Error 5xx
- 500 => '500 Internal Server Error',
- 501 => '501 Not Implemented',
- 502 => '502 Bad Gateway',
- 503 => '503 Service Unavailable',
- 504 => '504 Gateway Timeout',
- 505 => '505 HTTP Version Not Supported'
- );
- /**
- * Constructor
- * @param string $body The HTTP response body
- * @param int $status The HTTP response status
- * @param \Slim\Http\Headers|array $header The HTTP response headers
- */
- public function __construct($body = '', $status = 200, $header = array())
- {
- $this->status = (int) $status;
- $headers = array();
- foreach ($header as $key => $value) {
- $headers[$key] = $value;
- }
- $this->header = new Headers(array_merge(array('Content-Type' => 'text/html'), $headers));
- $this->body = '';
- $this->write($body);
- }
- /**
- * Get and set status
- * @param int|null $status
- * @return int
- */
- public function status($status = null)
- {
- if (!is_null($status)) {
- $this->status = (int) $status;
- }
- return $this->status;
- }
- /**
- * Get and set header
- * @param string $name Header name
- * @param string|null $value Header value
- * @return string Header value
- */
- public function header($name, $value = null)
- {
- if (!is_null($value)) {
- $this[$name] = $value;
- }
- return $this[$name];
- }
- /**
- * Get headers
- * @return \Slim\Http\Headers
- */
- public function headers()
- {
- return $this->header;
- }
- /**
- * Get and set body
- * @param string|null $body Content of HTTP response body
- * @return string
- */
- public function body($body = null)
- {
- if (!is_null($body)) {
- $this->write($body, true);
- }
- return $this->body;
- }
- /**
- * Get and set length
- * @param int|null $length
- * @return int
- */
- public function length($length = null)
- {
- if (!is_null($length)) {
- $this->length = (int) $length;
- }
- return $this->length;
- }
- /**
- * Append HTTP response body
- * @param string $body Content to append to the current HTTP response body
- * @param bool $replace Overwrite existing response body?
- * @return string The updated HTTP response body
- */
- public function write($body, $replace = false)
- {
- if ($replace) {
- $this->body = $body;
- } else {
- $this->body .= (string) $body;
- }
- $this->length = strlen($this->body);
- return $this->body;
- }
- /**
- * Finalize
- *
- * This prepares this response and returns an array
- * of [status, headers, body]. This array is passed to outer middleware
- * if available or directly to the Slim run method.
- *
- * @return array[int status, array headers, string body]
- */
- public function finalize()
- {
- if (in_array($this->status, array(204, 304))) {
- unset($this['Content-Type'], $this['Content-Length']);
- return array($this->status, $this->header, '');
- } else {
- return array($this->status, $this->header, $this->body);
- }
- }
- /**
- * Set cookie
- *
- * Instead of using PHP's `setcookie()` function, Slim manually constructs the HTTP `Set-Cookie`
- * header on its own and delegates this responsibility to the `Slim_Http_Util` class. This
- * response's header is passed by reference to the utility class and is directly modified. By not
- * relying on PHP's native implementation, Slim allows middleware the opportunity to massage or
- * analyze the raw header before the response is ultimately delivered to the HTTP client.
- *
- * @param string $name The name of the cookie
- * @param string|array $value If string, the value of cookie; if array, properties for
- * cookie including: value, expire, path, domain, secure, httponly
- */
- public function setCookie($name, $value)
- {
- Util::setCookieHeader($this->header, $name, $value);
- }
- /**
- * Delete cookie
- *
- * Instead of using PHP's `setcookie()` function, Slim manually constructs the HTTP `Set-Cookie`
- * header on its own and delegates this responsibility to the `Slim_Http_Util` class. This
- * response's header is passed by reference to the utility class and is directly modified. By not
- * relying on PHP's native implementation, Slim allows middleware the opportunity to massage or
- * analyze the raw header before the response is ultimately delivered to the HTTP client.
- *
- * This method will set a cookie with the given name that has an expiration time in the past; this will
- * prompt the HTTP client to invalidate and remove the client-side cookie. Optionally, you may
- * also pass a key/value array as the second argument. If the "domain" key is present in this
- * array, only the Cookie with the given name AND domain will be removed. The invalidating cookie
- * sent with this response will adopt all properties of the second argument.
- *
- * @param string $name The name of the cookie
- * @param array $value Properties for cookie including: value, expire, path, domain, secure, httponly
- */
- public function deleteCookie($name, $value = array())
- {
- Util::deleteCookieHeader($this->header, $name, $value);
- }
- /**
- * Redirect
- *
- * This method prepares this response to return an HTTP Redirect response
- * to the HTTP client.
- *
- * @param string $url The redirect destination
- * @param int $status The redirect HTTP status code
- */
- public function redirect ($url, $status = 302)
- {
- $this->status = $status;
- $this['Location'] = $url;
- }
- /**
- * Helpers: Empty?
- * @return bool
- */
- public function isEmpty()
- {
- return in_array($this->status, array(201, 204, 304));
- }
- /**
- * Helpers: Informational?
- * @return bool
- */
- public function isInformational()
- {
- return $this->status >= 100 && $this->status < 200;
- }
- /**
- * Helpers: OK?
- * @return bool
- */
- public function isOk()
- {
- return $this->status === 200;
- }
- /**
- * Helpers: Successful?
- * @return bool
- */
- public function isSuccessful()
- {
- return $this->status >= 200 && $this->status < 300;
- }
- /**
- * Helpers: Redirect?
- * @return bool
- */
- public function isRedirect()
- {
- return in_array($this->status, array(301, 302, 303, 307));
- }
- /**
- * Helpers: Redirection?
- * @return bool
- */
- public function isRedirection()
- {
- return $this->status >= 300 && $this->status < 400;
- }
- /**
- * Helpers: Forbidden?
- * @return bool
- */
- public function isForbidden()
- {
- return $this->status === 403;
- }
- /**
- * Helpers: Not Found?
- * @return bool
- */
- public function isNotFound()
- {
- return $this->status === 404;
- }
- /**
- * Helpers: Client error?
- * @return bool
- */
- public function isClientError()
- {
- return $this->status >= 400 && $this->status < 500;
- }
- /**
- * Helpers: Server Error?
- * @return bool
- */
- public function isServerError()
- {
- return $this->status >= 500 && $this->status < 600;
- }
- /**
- * Array Access: Offset Exists
- */
- public function offsetExists( $offset )
- {
- return isset($this->header[$offset]);
- }
- /**
- * Array Access: Offset Get
- */
- public function offsetGet( $offset )
- {
- if (isset($this->header[$offset])) {
- return $this->header[$offset];
- } else {
- return null;
- }
- }
- /**
- * Array Access: Offset Set
- */
- public function offsetSet($offset, $value)
- {
- $this->header[$offset] = $value;
- }
- /**
- * Array Access: Offset Unset
- */
- public function offsetUnset($offset)
- {
- unset($this->header[$offset]);
- }
- /**
- * Countable: Count
- */
- public function count()
- {
- return count($this->header);
- }
- /**
- * Get Iterator
- *
- * This returns the contained `\Slim\Http\Headers` instance which
- * is itself iterable.
- *
- * @return \Slim\Http\Headers
- */
- public function getIterator()
- {
- return $this->header;
- }
- /**
- * Get message for HTTP status code
- * @return string|null
- */
- public static function getMessageForCode($status)
- {
- if (isset(self::$messages[$status])) {
- return self::$messages[$status];
- } else {
- return null;
- }
- }
- }
|