url.php 3.3 KB

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