response.php 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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.
  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. * Take a value returned by a route and prepare a Response instance.
  98. *
  99. * @param mixed $response
  100. * @return Response
  101. */
  102. public static function prepare($response)
  103. {
  104. // --------------------------------------------------------------
  105. // If the response is a Redirect instance, grab the Response.
  106. // --------------------------------------------------------------
  107. if ($response instanceof Redirect)
  108. {
  109. $response = $response->response;
  110. }
  111. // --------------------------------------------------------------
  112. // Make sure the response is an instance of the Response class.
  113. // --------------------------------------------------------------
  114. return ( ! $response instanceof Response) ? new static($response) : $response;
  115. }
  116. /**
  117. * Send the response to the browser.
  118. *
  119. * @return void
  120. */
  121. public function send()
  122. {
  123. // -------------------------------------------------
  124. // If a Content-Type header has not been set, do it.
  125. // -------------------------------------------------
  126. if ( ! array_key_exists('Content-Type', $this->headers))
  127. {
  128. $this->header('Content-Type', 'text/html; charset=utf-8');
  129. }
  130. // -------------------------------------------------
  131. // Send the headers to the browser.
  132. // -------------------------------------------------
  133. if ( ! headers_sent())
  134. {
  135. $this->send_headers();
  136. }
  137. // -------------------------------------------------
  138. // Send the content of the response to the browser.
  139. // -------------------------------------------------
  140. echo (string) $this->content;
  141. }
  142. /**
  143. * Send the response headers to the browser.
  144. *
  145. * @return void
  146. */
  147. public function send_headers()
  148. {
  149. // -------------------------------------------------
  150. // Get the proper protocol.
  151. // -------------------------------------------------
  152. $protocol = (isset($_SERVER['SERVER_PROTOCOL'])) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.1';
  153. // -------------------------------------------------
  154. // Send the protocol and status header.
  155. // -------------------------------------------------
  156. header($protocol.' '.$this->status.' '.$this->statuses[$this->status]);
  157. // -------------------------------------------------
  158. // Send the rest of the response headers.
  159. // -------------------------------------------------
  160. foreach ($this->headers as $name => $value)
  161. {
  162. header($name.': '.$value, true);
  163. }
  164. }
  165. /**
  166. * Add a header to the response.
  167. *
  168. * @param string $name
  169. * @param string $value
  170. * @return Response
  171. */
  172. public function header($name, $value)
  173. {
  174. $this->headers[$name] = $value;
  175. return $this;
  176. }
  177. /**
  178. * Determine if the response is a redirect.
  179. *
  180. * @return bool
  181. */
  182. public function is_redirect()
  183. {
  184. return $this->status == 301 or $this->status == 302;
  185. }
  186. }