url.php 4.4 KB

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