url.php 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  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 the URL is being generated for a public asset such as an
  19. // image, we do not want to include "index.php" in the path.
  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. * For routes that have wildcard parameters, an array may be passed as the
  55. * second parameter to the method. The values of this array will be used
  56. * to fill the wildcard segments of the route URI.
  57. *
  58. * @param string $name
  59. * @param array $parameters
  60. * @param bool $https
  61. * @return string
  62. */
  63. public static function to_route($name, $parameters = array(), $https = false)
  64. {
  65. if ( ! is_null($route = Route\Finder::find($name)))
  66. {
  67. $uris = explode(', ', key($route));
  68. $uri = substr($uris[0], strpos($uris[0], '/'));
  69. foreach ($parameters as $parameter)
  70. {
  71. $uri = preg_replace('/\(.+?\)/', $parameter, $uri, 1);
  72. }
  73. return static::to($uri, $https);
  74. }
  75. throw new \Exception("Error generating named route for route [$name]. Route is not defined.");
  76. }
  77. /**
  78. * Generate a HTTPS URL from a route name.
  79. *
  80. * @param string $name
  81. * @param array $parameters
  82. * @return string
  83. */
  84. public static function to_secure_route($name, $parameters = array())
  85. {
  86. return static::to_route($name, $parameters, true);
  87. }
  88. /**
  89. * Generate a URL friendly "slug".
  90. *
  91. * @param string $title
  92. * @param string $separator
  93. * @return string
  94. */
  95. public static function slug($title, $separator = '-')
  96. {
  97. // Remove all characters that are not the separator, letters, numbers, or whitespace.
  98. $title = preg_replace('![^'.preg_quote($separator).'\pL\pN\s]+!u', '', Str::lower($title));
  99. // Replace all separator characters and whitespace by a single separator
  100. $title = preg_replace('!['.preg_quote($separator).'\s]+!u', $separator, $title);
  101. return trim($title, $separator);
  102. }
  103. /**
  104. * Magic Method for dynamically creating route URLs.
  105. */
  106. public static function __callStatic($method, $parameters)
  107. {
  108. $parameters = (isset($parameters[0])) ? $parameters[0] : array();
  109. // Dynamically create a secure route URL.
  110. if (strpos($method, 'to_secure_') === 0)
  111. {
  112. return static::to_route(substr($method, 10), $parameters, true);
  113. }
  114. // Dynamically create a route URL.
  115. if (strpos($method, 'to_') === 0)
  116. {
  117. return static::to_route(substr($method, 3), $parameters);
  118. }
  119. throw new \Exception("Method [$method] is not defined on the URL class.");
  120. }
  121. }