redirect.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. <?php namespace Laravel; use Laravel\Routing\Router;
  2. class Redirect extends Response {
  3. /**
  4. * Create a redirect response to application root.
  5. *
  6. * @param int $status
  7. * @param bool $secure
  8. * @return Redirect
  9. */
  10. public static function home($status = 302, $https = false)
  11. {
  12. return static::to(URL::home($https), $status);
  13. }
  14. /**
  15. * Create a redirect response.
  16. *
  17. * <code>
  18. * // Create a redirect response to a location within the application
  19. * return Redirect::to('user/profile');
  20. *
  21. * // Create a redirect response with a 301 status code
  22. * return Redirect::to('user/profile', 301);
  23. * </code>
  24. *
  25. * @param string $url
  26. * @param int $status
  27. * @param bool $https
  28. * @return Redirect
  29. */
  30. public static function to($url, $status = 302, $https = false)
  31. {
  32. return static::make('', $status)->header('Location', URL::to($url, $https));
  33. }
  34. /**
  35. * Create a redirect response to a HTTPS URL.
  36. *
  37. * @param string $url
  38. * @param int $status
  39. * @return Redirect
  40. */
  41. public static function to_secure($url, $status = 302)
  42. {
  43. return static::to($url, $status, true);
  44. }
  45. /**
  46. * Create a redirect response to a controller action.
  47. *
  48. * @param string $action
  49. * @param array $parameters
  50. * @param int $status
  51. * @return Redirect
  52. */
  53. public static function to_action($action, $parameters = array(), $status = 302)
  54. {
  55. return static::to(URL::to_action($action, $parameters), $status);
  56. }
  57. /**
  58. * Create a redirect response to a named route.
  59. *
  60. * <code>
  61. * // Create a redirect response to the "login" named route
  62. * return Redirect::to_route('login');
  63. *
  64. * // Create a redirect response to the "profile" named route with parameters
  65. * return Redirect::to_route('profile', array($username));
  66. * </code>
  67. *
  68. * @param string $route
  69. * @param array $parameters
  70. * @param int $status
  71. * @return Redirect
  72. */
  73. public static function to_route($route, $parameters = array(), $status = 302)
  74. {
  75. return static::to(URL::to_route($route, $parameters), $status);
  76. }
  77. /**
  78. * Add an item to the session flash data.
  79. *
  80. * This is useful for "passing" status messages or other data to the next request.
  81. *
  82. * <code>
  83. * // Create a redirect response and flash to the session
  84. * return Redirect::to('profile')->with('message', 'Welcome Back!');
  85. * </code>
  86. *
  87. * @param string $key
  88. * @param mixed $value
  89. * @return Redirect
  90. */
  91. public function with($key, $value)
  92. {
  93. if (Config::get('session.driver') == '')
  94. {
  95. throw new \Exception('A session driver must be set before setting flash data.');
  96. }
  97. Session::flash($key, $value);
  98. return $this;
  99. }
  100. /**
  101. * Flash the old input to the session and return the Redirect instance.
  102. *
  103. * Once the input has been flashed, it can be retrieved via the Input::old method.
  104. *
  105. * <code>
  106. * // Redirect and flash all of the input data to the session
  107. * return Redirect::to('login')->with_input();
  108. *
  109. * // Redirect and flash only a few of the input items
  110. * return Redirect::to('login')->with_input('only', array('email', 'username'));
  111. *
  112. * // Redirect and flash all but a few of the input items
  113. * return Redirect::to('login')->with_input('except', array('password', 'ssn'));
  114. * </code>
  115. *
  116. * @param string $filter
  117. * @param array $items
  118. * @return Redirect
  119. */
  120. public function with_input($filter = null, $items = array())
  121. {
  122. Input::flash($filter, $items);
  123. return $this;
  124. }
  125. /**
  126. * Flash a Validator's errors to the session data.
  127. *
  128. * This method allows you to conveniently pass validation errors back to views.
  129. *
  130. * <code>
  131. * // Redirect and flash validator errors the session
  132. * return Redirect::to('register')->with_errors($validator);
  133. * </code>
  134. *
  135. * @param Validator|Messages $container
  136. * @return Redirect
  137. */
  138. public function with_errors($container)
  139. {
  140. $errors = ($container instanceof Validator) ? $container->errors : $container;
  141. return $this->with('errors', $errors);
  142. }
  143. }