redirect.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. * Add an item to the session flash data.
  37. *
  38. * @param string $key
  39. * @param mixed $value
  40. * @return Response
  41. */
  42. public function with($key, $value)
  43. {
  44. // ----------------------------------------------------
  45. // Since this method uses sessions, make sure a driver
  46. // has been specified in the configuration file.
  47. // ----------------------------------------------------
  48. if (Config::get('session.driver') != '')
  49. {
  50. Session::flash($key, $value);
  51. }
  52. return $this;
  53. }
  54. /**
  55. * Create a redirect response to a HTTPS URL.
  56. *
  57. * @param string $url
  58. * @param string $method
  59. * @param int $status
  60. * @return Response
  61. */
  62. public static function to_secure($url, $method = 'location', $status = 302)
  63. {
  64. return static::to($url, $method, $status, true);
  65. }
  66. /**
  67. * Magic Method to handle redirecting to routes.
  68. */
  69. public static function __callStatic($method, $parameters)
  70. {
  71. // ----------------------------------------------------
  72. // Dynamically redirect to a secure route URL.
  73. // ----------------------------------------------------
  74. if (strpos($method, 'to_secure_') === 0)
  75. {
  76. return static::to(URL::to_route(substr($method, 10), $parameters, true));
  77. }
  78. // ----------------------------------------------------
  79. // Dynamically redirect a route URL.
  80. // ----------------------------------------------------
  81. if (strpos($method, 'to_') === 0)
  82. {
  83. return static::to(URL::to_route(substr($method, 3), $parameters));
  84. }
  85. throw new \Exception("Method [$method] is not defined on the Redirect class.");
  86. }
  87. }