url.php 3.4 KB

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