response.php 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. <?php namespace Laravel;
  2. use Symfony\Component\HttpFoundation\Response as FoundationResponse;
  3. class Response {
  4. /**
  5. * The content of the response.
  6. *
  7. * @var mixed
  8. */
  9. public $content;
  10. /**
  11. * The Symfony HttpFoundation Response instance.
  12. *
  13. * @var HttpFoundation\Response
  14. */
  15. public $foundation;
  16. /**
  17. * Create a new response instance.
  18. *
  19. * @param mixed $content
  20. * @param int $status
  21. * @param array $headers
  22. * @return void
  23. */
  24. public function __construct($content, $status = 200, $headers = array())
  25. {
  26. $this->content = $content;
  27. $this->foundation = new FoundationResponse('', $status, $headers);
  28. }
  29. /**
  30. * Create a new response instance.
  31. *
  32. * <code>
  33. * // Create a response instance with string content
  34. * return Response::make(json_encode($user));
  35. *
  36. * // Create a response instance with a given status
  37. * return Response::make('Not Found', 404);
  38. *
  39. * // Create a response with some custom headers
  40. * return Response::make(json_encode($user), 200, array('header' => 'value'));
  41. * </code>
  42. *
  43. * @param mixed $content
  44. * @param int $status
  45. * @param array $headers
  46. * @return Response
  47. */
  48. public static function make($content, $status = 200, $headers = array())
  49. {
  50. return new static($content, $status, $headers);
  51. }
  52. /**
  53. * Create a new response instance containing a view.
  54. *
  55. * <code>
  56. * // Create a response instance with a view
  57. * return Response::view('home.index');
  58. *
  59. * // Create a response instance with a view and data
  60. * return Response::view('home.index', array('name' => 'Taylor'));
  61. * </code>
  62. *
  63. * @param string $view
  64. * @param array $data
  65. * @return Response
  66. */
  67. public static function view($view, $data = array())
  68. {
  69. return new static(View::make($view, $data));
  70. }
  71. /**
  72. * Create a new error response instance.
  73. *
  74. * The response status code will be set using the specified code.
  75. *
  76. * The specified error should match a view in your views/error directory.
  77. *
  78. * <code>
  79. * // Create a 404 response
  80. * return Response::error('404');
  81. *
  82. * // Create a 404 response with data
  83. * return Response::error('404', array('message' => 'Not Found'));
  84. * </code>
  85. *
  86. * @param int $code
  87. * @param array $data
  88. * @return Response
  89. */
  90. public static function error($code, $data = array())
  91. {
  92. return new static(View::make('error.'.$code, $data), $code);
  93. }
  94. /**
  95. * Create a new download response instance.
  96. *
  97. * <code>
  98. * // Create a download response to a given file
  99. * return Response::download('path/to/file.jpg');
  100. *
  101. * // Create a download response with a given file name
  102. * return Response::download('path/to/file.jpg', 'your_file.jpg');
  103. * </code>
  104. *
  105. * @param string $path
  106. * @param string $name
  107. * @param array $headers
  108. * @return Response
  109. */
  110. public static function download($path, $name = null, $headers = array())
  111. {
  112. if (is_null($name)) $name = basename($path);
  113. $headers = array_merge(array(
  114. 'Content-Description' => 'File Transfer',
  115. 'Content-Type' => File::mime(File::extension($path)),
  116. 'Content-Disposition' => 'attachment; filename="'.$name.'"',
  117. 'Content-Transfer-Encoding' => 'binary',
  118. 'Expires' => 0,
  119. 'Cache-Control' => 'must-revalidate, post-check=0, pre-check=0',
  120. 'Pragma' => 'public',
  121. 'Content-Length' => File::size($path),
  122. ), $headers);
  123. return new static(File::get($path), 200, $headers);
  124. }
  125. /**
  126. * Prepare a response from the given value.
  127. *
  128. * @param mixed $response
  129. * @return Response
  130. */
  131. public static function prepare($response)
  132. {
  133. // We'll need to force the response to be a string before closing
  134. // the session, since the developer may be utilizing the session
  135. // within the view, and we can't age it until rendering.
  136. if ( ! $response instanceof Response)
  137. {
  138. $response = new static($response);
  139. }
  140. $response->render();
  141. return $response;
  142. }
  143. /**
  144. * Convert the content of the Response to a string and return it.
  145. *
  146. * @return string
  147. */
  148. public function render()
  149. {
  150. // If the content is a stringable object, we'll go ahead and call
  151. // to toString method so that we can get the string content of
  152. // the content object. Otherwise we'll just cast to string.
  153. if (str_object($this->content))
  154. {
  155. $this->content = $this->content->__toString();
  156. }
  157. else
  158. {
  159. $this->content = (string) $this->content;
  160. }
  161. // Once we obtain the string content, we can set the content on
  162. // the HttpFoundation's Response instance in preparation for
  163. // sending it back to client browser when all is finished.
  164. $this->foundation->setContent($this->content);
  165. return $this->content;
  166. }
  167. /**
  168. * Send the headers and content of the response to the browser.
  169. *
  170. * @return void
  171. */
  172. public function send()
  173. {
  174. $this->cookies();
  175. $this->foundation->prepare(Request::foundation());
  176. $this->foundation->send();
  177. }
  178. /**
  179. * Send all of the response headers to the browser.
  180. *
  181. * @return void
  182. */
  183. public function send_headers()
  184. {
  185. $this->foundation->prepare(Request::foundation());
  186. $this->foundation->sendHeaders();
  187. }
  188. /**
  189. * Set the cookies on the HttpFoundation Response.
  190. *
  191. * @return void
  192. */
  193. protected function cookies()
  194. {
  195. $ref = new \ReflectionClass('Symfony\Component\HttpFoundation\Cookie');
  196. // All of the cookies for the response are actually stored on the
  197. // Cookie class until we're ready to send the response back to
  198. // the browser. This allows a cookies to be set easily.
  199. foreach (Cookie::$jar as $name => $cookie)
  200. {
  201. $config = array_values($cookie);
  202. $this->headers()->setCookie($ref->newInstanceArgs($config));
  203. }
  204. }
  205. /**
  206. * Add a header to the array of response headers.
  207. *
  208. * @param string $name
  209. * @param string $value
  210. * @return Response
  211. */
  212. public function header($name, $value)
  213. {
  214. $this->foundation->headers->set($name, $value);
  215. return $this;
  216. }
  217. /**
  218. * Get the HttpFoundation Response headers.
  219. *
  220. * @return ResponseParameterBag
  221. */
  222. public function headers()
  223. {
  224. return $this->foundation->headers;
  225. }
  226. /**
  227. * Set the response status code.
  228. *
  229. * @param int $status
  230. * @return Response
  231. */
  232. public function status($status)
  233. {
  234. $this->foundation->setStatusCode($status);
  235. return $this;
  236. }
  237. }