url.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  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. if (strpos($url, '://') !== false)
  14. {
  15. return $url;
  16. }
  17. $base = Config::get('application.url');
  18. // Assets live in the public directory, so we only want to append
  19. // the index file if the URL is to an asset.
  20. if ( ! $asset)
  21. {
  22. $base .= '/'.Config::get('application.index');
  23. }
  24. if (strpos($base, 'http://') === 0 and $https)
  25. {
  26. $base = 'https://'.substr($base, 7);
  27. }
  28. return rtrim($base, '/').'/'.trim($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, false, true);
  50. }
  51. /**
  52. * Generate a URL from a route name.
  53. *
  54. * @param string $name
  55. * @param array $parameters
  56. * @param bool $https
  57. * @return string
  58. */
  59. public static function to_route($name, $parameters = array(), $https = false)
  60. {
  61. if ( ! is_null($route = Route\Finder::find($name)))
  62. {
  63. // Get the first URI assigned to the route.
  64. $uris = explode(', ', key($route));
  65. $uri = substr($uris[0], strpos($uris[0], '/'));
  66. // Replace any parameters in the URI. This allows the dynamic creation of URLs
  67. // that contain parameter wildcards.
  68. foreach ($parameters as $parameter)
  69. {
  70. $uri = preg_replace('/\(.+?\)/', $parameter, $uri, 1);
  71. }
  72. return static::to($uri, $https);
  73. }
  74. throw new \Exception("Error generating named route for route [$name]. Route is not defined.");
  75. }
  76. /**
  77. * Generate a HTTPS URL from a route name.
  78. *
  79. * @param string $name
  80. * @param array $parameters
  81. * @return string
  82. */
  83. public static function to_secure_route($name, $parameters = array())
  84. {
  85. return static::to_route($name, $parameters, true);
  86. }
  87. /**
  88. * Generate a URL friendly "slug".
  89. *
  90. * @param string $title
  91. * @param string $separator
  92. * @return string
  93. */
  94. public static function slug($title, $separator = '-')
  95. {
  96. // Remove all characters that are not the separator, letters, numbers, or whitespace.
  97. $title = preg_replace('![^'.preg_quote($separator).'\pL\pN\s]+!u', '', Str::lower($title));
  98. // Replace all separator characters and whitespace by a single separator
  99. $title = preg_replace('!['.preg_quote($separator).'\s]+!u', $separator, $title);
  100. return trim($title, $separator);
  101. }
  102. /**
  103. * Magic Method for dynamically creating route URLs.
  104. */
  105. public static function __callStatic($method, $parameters)
  106. {
  107. $parameters = (isset($parameters[0])) ? $parameters[0] : array();
  108. // Dynamically create a secure route URL.
  109. if (strpos($method, 'to_secure_') === 0)
  110. {
  111. return static::to_route(substr($method, 10), $parameters, true);
  112. }
  113. // Dynamically create a route URL.
  114. if (strpos($method, 'to_') === 0)
  115. {
  116. return static::to_route(substr($method, 3), $parameters);
  117. }
  118. throw new \Exception("Method [$method] is not defined on the URL class.");
  119. }
  120. }