url.php 3.2 KB

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