url.php 4.4 KB

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