url.php 3.5 KB

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