response.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. <?php namespace System;
  2. class Response {
  3. /**
  4. * The content of the response.
  5. *
  6. * @var mixed
  7. */
  8. public $content;
  9. /**
  10. * The HTTP status code of the response.
  11. *
  12. * @var int
  13. */
  14. public $status;
  15. /**
  16. * The response headers.
  17. *
  18. * @var array
  19. */
  20. public $headers = array();
  21. /**
  22. * HTTP status codes.
  23. *
  24. * @var array
  25. */
  26. private $statuses = array(
  27. 100 => 'Continue',
  28. 101 => 'Switching Protocols',
  29. 200 => 'OK',
  30. 201 => 'Created',
  31. 202 => 'Accepted',
  32. 203 => 'Non-Authoritative Information',
  33. 204 => 'No Content',
  34. 205 => 'Reset Content',
  35. 206 => 'Partial Content',
  36. 207 => 'Multi-Status',
  37. 300 => 'Multiple Choices',
  38. 301 => 'Moved Permanently',
  39. 302 => 'Found',
  40. 303 => 'See Other',
  41. 304 => 'Not Modified',
  42. 305 => 'Use Proxy',
  43. 307 => 'Temporary Redirect',
  44. 400 => 'Bad Request',
  45. 401 => 'Unauthorized',
  46. 402 => 'Payment Required',
  47. 403 => 'Forbidden',
  48. 404 => 'Not Found',
  49. 405 => 'Method Not Allowed',
  50. 406 => 'Not Acceptable',
  51. 407 => 'Proxy Authentication Required',
  52. 408 => 'Request Timeout',
  53. 409 => 'Conflict',
  54. 410 => 'Gone',
  55. 411 => 'Length Required',
  56. 412 => 'Precondition Failed',
  57. 413 => 'Request Entity Too Large',
  58. 414 => 'Request-URI Too Long',
  59. 415 => 'Unsupported Media Type',
  60. 416 => 'Requested Range Not Satisfiable',
  61. 417 => 'Expectation Failed',
  62. 422 => 'Unprocessable Entity',
  63. 423 => 'Locked',
  64. 424 => 'Failed Dependency',
  65. 500 => 'Internal Server Error',
  66. 501 => 'Not Implemented',
  67. 502 => 'Bad Gateway',
  68. 503 => 'Service Unavailable',
  69. 504 => 'Gateway Timeout',
  70. 505 => 'HTTP Version Not Supported',
  71. 507 => 'Insufficient Storage',
  72. 509 => 'Bandwidth Limit Exceeded'
  73. );
  74. /**
  75. * Create a new response instance.
  76. *
  77. * @param mixed $content
  78. * @param int $status
  79. */
  80. public function __construct($content, $status = 200)
  81. {
  82. $this->content = $content;
  83. $this->status = $status;
  84. }
  85. /**
  86. * Factory for creating new response instances.
  87. *
  88. * @param string $content
  89. * @param int $status
  90. * @return Response
  91. */
  92. public static function make($content, $status = 200)
  93. {
  94. return new static($content, $status);
  95. }
  96. /**
  97. * Factory for creating new error response instances.
  98. *
  99. * @param int $code
  100. * @param array $data
  101. * @return Response
  102. */
  103. public static function error($code, $data = array())
  104. {
  105. return static::make(View::make('error/'.$code, $data), $code);
  106. }
  107. /**
  108. * Take a value returned by a route and prepare a Response instance.
  109. *
  110. * @param mixed $response
  111. * @return Response
  112. */
  113. public static function prepare($response)
  114. {
  115. if ($response instanceof Redirect) $response = $response->response;
  116. return ( ! $response instanceof Response) ? new static($response) : $response;
  117. }
  118. /**
  119. * Send the response to the browser.
  120. *
  121. * @return void
  122. */
  123. public function send()
  124. {
  125. if ( ! array_key_exists('Content-Type', $this->headers))
  126. {
  127. $this->header('Content-Type', 'text/html; charset=utf-8');
  128. }
  129. if ( ! headers_sent()) $this->send_headers();
  130. echo (string) $this->content;
  131. }
  132. /**
  133. * Send the response headers to the browser.
  134. *
  135. * @return void
  136. */
  137. public function send_headers()
  138. {
  139. $protocol = (isset($_SERVER['SERVER_PROTOCOL'])) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.1';
  140. header($protocol.' '.$this->status.' '.$this->statuses[$this->status]);
  141. foreach ($this->headers as $name => $value)
  142. {
  143. header($name.': '.$value, true);
  144. }
  145. }
  146. /**
  147. * Add a header to the response.
  148. *
  149. * @param string $name
  150. * @param string $value
  151. * @return Response
  152. */
  153. public function header($name, $value)
  154. {
  155. $this->headers[$name] = $value;
  156. return $this;
  157. }
  158. /**
  159. * Determine if the response is a redirect.
  160. *
  161. * @return bool
  162. */
  163. public function is_redirect()
  164. {
  165. return $this->status == 301 or $this->status == 302;
  166. }
  167. /**
  168. * Get the parsed content of the Response.
  169. */
  170. public function __toString()
  171. {
  172. return (string) $this->content;
  173. }
  174. }