redirect.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php namespace System;
  2. class Redirect {
  3. /**
  4. * Create a redirect response.
  5. *
  6. * @param string $url
  7. * @param string $method
  8. * @param int $status
  9. * @param bool $https
  10. * @return Response
  11. */
  12. public static function to($url, $method = 'location', $status = 302, $https = false)
  13. {
  14. // -------------------------------------------------
  15. // Prepare the URL.
  16. // -------------------------------------------------
  17. $url = URL::to($url, $https);
  18. // -------------------------------------------------
  19. // Return the redirect response.
  20. // -------------------------------------------------
  21. return ($method == 'refresh')
  22. ? Response::make('', $status)->header('Refresh', '0;url='.$url)
  23. : Response::make('', $status)->header('Location', $url);
  24. }
  25. /**
  26. * Create a redirect response to a HTTPS URL.
  27. *
  28. * @param string $url
  29. * @param string $method
  30. * @param int $status
  31. * @return Response
  32. */
  33. public static function to_secure($url, $method = 'location', $status = 302)
  34. {
  35. return static::to($url, $method, $status, true);
  36. }
  37. /**
  38. * Magic Method to handle redirecting to routes.
  39. */
  40. public static function __callStatic($method, $parameters)
  41. {
  42. // ----------------------------------------------------
  43. // Dynamically redirect to a secure route URL.
  44. // ----------------------------------------------------
  45. if (strpos($method, 'to_secure_') === 0)
  46. {
  47. return static::to(URL::to_route(substr($method, 10), $parameters, true));
  48. }
  49. // ----------------------------------------------------
  50. // Dynamically redirect a route URL.
  51. // ----------------------------------------------------
  52. if (strpos($method, 'to_') === 0)
  53. {
  54. return static::to(URL::to_route(substr($method, 3), $parameters));
  55. }
  56. throw new \Exception("Method [$method] is not defined on the Redirect class.");
  57. }
  58. }