redirect.php 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. <?php namespace System;
  2. class Redirect {
  3. /**
  4. * The redirect response.
  5. *
  6. * @var Response
  7. */
  8. public $response;
  9. /**
  10. * Create a new redirect instance.
  11. *
  12. * @param Response $response
  13. * @return void
  14. */
  15. public function __construct($response)
  16. {
  17. $this->response = $response;
  18. }
  19. /**
  20. * Create a redirect response.
  21. *
  22. * @param string $url
  23. * @param int $status
  24. * @param string $method
  25. * @param bool $https
  26. * @return Redirect
  27. */
  28. public static function to($url, $status = 302, $method = 'location', $https = false)
  29. {
  30. $url = URL::to($url, $https);
  31. return ($method == 'refresh')
  32. ? new static(Response::make('', $status)->header('Refresh', '0;url='.$url))
  33. : new static(Response::make('', $status)->header('Location', $url));
  34. }
  35. /**
  36. * Create a redirect response to a HTTPS URL.
  37. *
  38. * @param string $url
  39. * @param int $status
  40. * @param string $method
  41. * @return Response
  42. */
  43. public static function to_secure($url, $status = 302, $method = 'location')
  44. {
  45. return static::to($url, $status, $method, true);
  46. }
  47. /**
  48. * Add an item to the session flash data.
  49. *
  50. * @param string $key
  51. * @param mixed $value
  52. * @return Response
  53. */
  54. public function with($key, $value)
  55. {
  56. if (Config::get('session.driver') == '')
  57. {
  58. throw new \Exception("Attempting to flash data to the session, but no session driver has been specified.");
  59. }
  60. Session::flash($key, $value);
  61. return $this;
  62. }
  63. /**
  64. * Magic Method to handle redirecting to routes.
  65. */
  66. public static function __callStatic($method, $parameters)
  67. {
  68. $parameters = (isset($parameters[0])) ? $parameters[0] : array();
  69. if (strpos($method, 'to_secure_') === 0)
  70. {
  71. return static::to(URL::to_route(substr($method, 10), $parameters, true));
  72. }
  73. if (strpos($method, 'to_') === 0)
  74. {
  75. return static::to(URL::to_route(substr($method, 3), $parameters));
  76. }
  77. throw new \Exception("Method [$method] is not defined on the Redirect class.");
  78. }
  79. }