redirect.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  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 string $method
  24. * @param int $status
  25. * @param bool $https
  26. * @return Response
  27. */
  28. public static function to($url, $method = 'location', $status = 302, $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 string $method
  40. * @param int $status
  41. * @return Response
  42. */
  43. public static function to_secure($url, $method = 'location', $status = 302)
  44. {
  45. return static::to($url, $method, $status, 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. // Dynamically redirect to a secure route URL.
  70. if (strpos($method, 'to_secure_') === 0)
  71. {
  72. return static::to(URL::to_route(substr($method, 10), $parameters, true));
  73. }
  74. // Dynamically redirect a route URL.
  75. if (strpos($method, 'to_') === 0)
  76. {
  77. return static::to(URL::to_route(substr($method, 3), $parameters));
  78. }
  79. throw new \Exception("Method [$method] is not defined on the Redirect class.");
  80. }
  81. }