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