url.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. <?php namespace System;
  2. class URL {
  3. /**
  4. * Generate an application URL.
  5. *
  6. * @param string $url
  7. * @return string
  8. */
  9. public static function to($url = '', $https = false)
  10. {
  11. // ----------------------------------------------------
  12. // Return the URL unchanged if it is already formed.
  13. // ----------------------------------------------------
  14. if (strpos($url, '://') !== false)
  15. {
  16. return $url;
  17. }
  18. // ----------------------------------------------------
  19. // Get the base URL of the application.
  20. // ----------------------------------------------------
  21. $base = Config::get('application.url');
  22. // ----------------------------------------------------
  23. // Does the URL need an HTTPS protocol?
  24. // ----------------------------------------------------
  25. if (strpos($base, 'http://') === 0 and $https)
  26. {
  27. $base = 'https://'.substr($base, 7);
  28. }
  29. return rtrim($base, '/').'/'.ltrim($url, '/');
  30. }
  31. /**
  32. * Generate an application URL with HTTPS.
  33. *
  34. * @param string $url
  35. * @return string
  36. */
  37. public static function to_secure($url = '')
  38. {
  39. return static::to($url, true);
  40. }
  41. /**
  42. * Generate a URL from a route name.
  43. *
  44. * @param string $name
  45. * @param array $parameters
  46. * @param bool $https
  47. * @return string
  48. */
  49. public static function to_route($name, $parameters = array(), $https = false)
  50. {
  51. // ----------------------------------------------------
  52. // Does the named route exist?
  53. // ----------------------------------------------------
  54. if ( ! is_null($route = Router::find($name)))
  55. {
  56. $uris = explode(', ', key($route));
  57. // ----------------------------------------------------
  58. // Get the first URI assigned to the route.
  59. // ----------------------------------------------------
  60. $uri = substr($uris[0], strpos($uris[0], '/'));
  61. // ----------------------------------------------------
  62. // Replace any parameters in the URI.
  63. // ----------------------------------------------------
  64. foreach ($parameters as $parameter)
  65. {
  66. $uri = preg_replace('/\(\:any\)|\(\:num\)|\(.+\)/', $parameter, $uri, 1);
  67. }
  68. return static::to($uri, $https);
  69. }
  70. throw new \Exception("Error generating named route for route [$name]. Route is not defined.");
  71. }
  72. /**
  73. * Generate a URL friendly "slug".
  74. *
  75. * @param string $title
  76. * @param string $separator
  77. * @return string
  78. */
  79. public static function slug($title, $separator = '-')
  80. {
  81. // ----------------------------------------------------
  82. // Remove all characters that are not the separator,
  83. // letters, numbers, or whitespace.
  84. // ----------------------------------------------------
  85. $title = preg_replace('![^'.preg_quote($separator).'\pL\pN\s]+!u', '', Str::lower($title));
  86. // ----------------------------------------------------
  87. // Replace all separator characters and whitespace by
  88. // a single separator
  89. // ----------------------------------------------------
  90. $title = preg_replace('!['.preg_quote($separator).'\s]+!u', $separator, $title);
  91. return trim($title, $separator);
  92. }
  93. /**
  94. * Magic Method for dynamically creating route URLs.
  95. */
  96. public static function __callStatic($method, $parameters)
  97. {
  98. // ----------------------------------------------------
  99. // Dynamically create a secure route URL.
  100. // ----------------------------------------------------
  101. if (strpos($method, 'to_secure_') === 0)
  102. {
  103. return static::to_route(substr($method, 10), $parameters, true);
  104. }
  105. // ----------------------------------------------------
  106. // Dynamically create a route URL.
  107. // ----------------------------------------------------
  108. if (strpos($method, 'to_') === 0)
  109. {
  110. return static::to_route(substr($method, 3), $parameters);
  111. }
  112. throw new \Exception("Method [$method] is not defined on the URL class.");
  113. }
  114. }