response.php 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252
  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. private $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 view response instances.
  98. *
  99. * @param string $view
  100. * @param int $status
  101. * @return Response
  102. */
  103. public static function view($view, $status = 200)
  104. {
  105. return static::make(View::make($view), $status);
  106. }
  107. /**
  108. * Send the response to the browser.
  109. *
  110. * @return void
  111. */
  112. public function send()
  113. {
  114. // -------------------------------------------------
  115. // Set the content type if it has not been set.
  116. // -------------------------------------------------
  117. if ( ! array_key_exists('Content-Type', $this->headers))
  118. {
  119. $this->header('Content-Type', 'text/html; charset=utf-8');
  120. }
  121. // -------------------------------------------------
  122. // Send the headers to the browser.
  123. // -------------------------------------------------
  124. if ( ! headers_sent())
  125. {
  126. // -------------------------------------------------
  127. // Send the HTTP protocol and status code.
  128. // -------------------------------------------------
  129. $protocol = (isset($_SERVER['SERVER_PROTOCOL'])) ? $_SERVER['SERVER_PROTOCOL'] : 'HTTP/1.1';
  130. header($protocol.' '.$this->status.' '.$this->statuses[$this->status]);
  131. // -------------------------------------------------
  132. // Send the rest of the headers.
  133. // -------------------------------------------------
  134. foreach ($this->headers as $name => $value)
  135. {
  136. header($name.': '.$value, true);
  137. }
  138. }
  139. // -------------------------------------------------
  140. // Send the content of the response to the browser.
  141. // -------------------------------------------------
  142. echo (string) $this->content;
  143. }
  144. /**
  145. * Add a header to the response.
  146. *
  147. * @param string $name
  148. * @param string $value
  149. * @return Response
  150. */
  151. public function header($name, $value)
  152. {
  153. $this->headers[$name] = $value;
  154. return $this;
  155. }
  156. /**
  157. * Add an item to the session flash data.
  158. *
  159. * @param string $key
  160. * @param mixed $value
  161. * @return Response
  162. */
  163. public function with($key, $value)
  164. {
  165. if (Config::get('session.driver') != '')
  166. {
  167. Session::flash($key, $value);
  168. }
  169. return $this;
  170. }
  171. /**
  172. * Determine if the response is a redirect.
  173. *
  174. * @return bool
  175. */
  176. public function is_redirect()
  177. {
  178. return $this->status == 301 or $this->status == 302;
  179. }
  180. /**
  181. * Magic Method for getting response View data.
  182. */
  183. public function __get($key)
  184. {
  185. // ------------------------------------------------------
  186. // Attempt to get the data from the View.
  187. // ------------------------------------------------------
  188. if ($this->content instanceof View)
  189. {
  190. return $this->content->$key;
  191. }
  192. }
  193. /**
  194. * Magic Method for setting response View data.
  195. */
  196. public function __set($key, $value)
  197. {
  198. // ------------------------------------------------------
  199. // Attempt to set the data on the View.
  200. // ------------------------------------------------------
  201. if ($this->content instanceof View)
  202. {
  203. $this->content->bind($key, $value);
  204. }
  205. }
  206. /**
  207. * Magic Method for handling dynamic method calls.
  208. */
  209. public function __call($method, $parameters)
  210. {
  211. // ------------------------------------------------------
  212. // Attempt to the pass the method to the View instance.
  213. // ------------------------------------------------------
  214. if ($this->content instanceof View and method_exists($this->content, $method))
  215. {
  216. call_user_func_array(array($this->content, $method), $parameters);
  217. return $this;
  218. }
  219. throw new \Exception("Method [$method] does not exist on the Response class.");
  220. }
  221. /**
  222. * Get the content of the response.
  223. */
  224. public function __toString()
  225. {
  226. return (string) $this->content;
  227. }
  228. }