url.php 3.4 KB

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