response.php 4.7 KB

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