redirect.php 3.7 KB

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