url.php 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  1. <?php namespace Laravel;
  2. class URL {
  3. /**
  4. * Get the base URL of the application.
  5. *
  6. * If the application URL is set in the application configuration file, that
  7. * URL will be returned. Otherwise, the URL will be guessed based on the
  8. * server variables available to the script in the $_SERVER array.
  9. *
  10. * @return string
  11. */
  12. public static function base()
  13. {
  14. if (($base = Config::$items['application']['url']) !== '') return $base;
  15. if (isset($_SERVER['HTTP_HOST']))
  16. {
  17. $protocol = (Request::secure()) ? 'https://' : 'http://';
  18. // By removing the basename of the script, we should be left with the path
  19. // in which the framework is installed. For example, if the framework is
  20. // installed to http://localhost/laravel/public, the path we'll get from
  21. // from this statement will be "/laravel/public".
  22. $path = str_replace(basename($_SERVER['SCRIPT_NAME']), '', $_SERVER['SCRIPT_NAME']);
  23. return rtrim($protocol.$_SERVER['HTTP_HOST'].$path, '/');
  24. }
  25. return 'http://localhost';
  26. }
  27. /**
  28. * Generate an application URL.
  29. *
  30. * If the given URL is already well-formed, it will be returned unchanged.
  31. *
  32. * <code>
  33. * // Create a URL to a location within the application
  34. * $url = URL::to('user/profile');
  35. *
  36. * // Create a HTTPS URL to a location within the application
  37. * $url = URL::to('user/profile', true);
  38. * </code>
  39. *
  40. * @param string $url
  41. * @param bool $https
  42. * @return string
  43. */
  44. public static function to($url = '', $https = false)
  45. {
  46. if (filter_var($url, FILTER_VALIDATE_URL) !== false) return $url;
  47. $root = Config::$items['application']['url'].'/'.Config::$items['application']['index'];
  48. // Since SSL is often not used while developing the application, we allow the
  49. // developer to disable SSL on all framework generated links to make it more
  50. // convenient to work with the site while developing.
  51. if ($https and Config::$items['application']['ssl'])
  52. {
  53. $root = preg_replace('~http://~', 'https://', $root, 1);
  54. }
  55. return rtrim($root, '/').'/'.ltrim($url, '/');
  56. }
  57. /**
  58. * Generate an application URL with HTTPS.
  59. *
  60. * @param string $url
  61. * @return string
  62. */
  63. public static function to_secure($url = '')
  64. {
  65. return static::to($url, true);
  66. }
  67. /**
  68. * Generate an application URL to an asset.
  69. *
  70. * The index file will not be added to asset URLs. If the HTTPS option is not
  71. * specified, HTTPS will be used when the active request is also using HTTPS.
  72. *
  73. * @param string $url
  74. * @param bool $https
  75. * @return string
  76. */
  77. public static function to_asset($url, $https = null)
  78. {
  79. if (is_null($https)) $https = Request::secure();
  80. $url = static::to($url, $https);
  81. // Since assets are not served by Laravel, we do not need to come through
  82. // the front controller. We'll remove the application index specified in
  83. // the application configuration from the generated URL.
  84. if (($index = Config::$items['application']['index']) !== '')
  85. {
  86. $url = str_replace($index.'/', '', $url);
  87. }
  88. return $url;
  89. }
  90. /**
  91. * Generate a URL from a route name.
  92. *
  93. * For routes that have wildcard parameters, an array may be passed as the second
  94. * parameter to the method. The values of this array will be used to fill the
  95. * wildcard segments of the route URI.
  96. *
  97. * <code>
  98. * // Create a URL to the "profile" named route
  99. * $url = URL::to_route('profile');
  100. *
  101. * // Create a URL to the "profile" named route with wildcard parameters
  102. * $url = URL::to_route('profile', array($username));
  103. * </code>
  104. *
  105. * @param string $name
  106. * @param array $parameters
  107. * @param bool $https
  108. * @return string
  109. */
  110. public static function to_route($name, $parameters = array(), $https = false)
  111. {
  112. if ( ! is_null($route = IoC::core('routing.router')->find($name)))
  113. {
  114. $uris = explode(', ', key($route));
  115. // Grab the first URI assigned to the route and remove the URI and
  116. // leading slash from the destination that's defined on the route.
  117. $uri = substr($uris[0], strpos($uris[0], '/'));
  118. // Spin through each route parameter and replace the route wildcard
  119. // segment with the corresponding parameter passed to the method.
  120. foreach ((array) $parameters as $parameter)
  121. {
  122. $uri = preg_replace('/\(.+?\)/', $parameter, $uri, 1);
  123. }
  124. // Replace all remaining optional segments with spaces. Since the
  125. // segments are optional, some of them may not have been assigned
  126. // values from the parameter array.
  127. return static::to(str_replace(array('/(:any?)', '/(:num?)'), '', $uri), $https);
  128. }
  129. throw new \OutOfBoundsException("Error getting URL for route [$name]. Route is not defined.");
  130. }
  131. /**
  132. * Generate a HTTPS URL from a route name.
  133. *
  134. * @param string $name
  135. * @param array $parameters
  136. * @return string
  137. */
  138. public static function to_secure_route($name, $parameters = array())
  139. {
  140. return static::to_route($name, $parameters, true);
  141. }
  142. /**
  143. * Generate a URL friendly "slug".
  144. *
  145. * <code>
  146. * // Returns "this-is-my-blog-post"
  147. * $slug = URL::slug('This is my blog post!');
  148. *
  149. * // Returns "this_is_my_blog_post"
  150. * $slug = URL::slug('This is my blog post!', '_');
  151. * </code>
  152. *
  153. * @param string $title
  154. * @param string $separator
  155. * @return string
  156. */
  157. public static function slug($title, $separator = '-')
  158. {
  159. $title = Str::ascii($title);
  160. // Remove all characters that are not the separator, letters, numbers, or whitespace.
  161. $title = preg_replace('![^'.preg_quote($separator).'\pL\pN\s]+!u', '', Str::lower($title));
  162. // Replace all separator characters and whitespace by a single separator
  163. $title = preg_replace('!['.preg_quote($separator).'\s]+!u', $separator, $title);
  164. return trim($title, $separator);
  165. }
  166. /**
  167. * Magic Method for dynamically creating URLs to named routes.
  168. *
  169. * <code>
  170. * // Create a URL to the "profile" named route
  171. * $url = URL::to_profile();
  172. *
  173. * // Create a URL to the "profile" named route with wildcard segments
  174. * $url = URL::to_profile(array($username));
  175. *
  176. * // Create a URL to the "profile" named route using HTTPS
  177. * $url = URL::to_secure_profile();
  178. * </code>
  179. */
  180. public static function __callStatic($method, $parameters)
  181. {
  182. $parameters = (isset($parameters[0])) ? $parameters[0] : array();
  183. if (strpos($method, 'to_secure_') === 0)
  184. {
  185. return static::to_route(substr($method, 10), $parameters, true);
  186. }
  187. if (strpos($method, 'to_') === 0)
  188. {
  189. return static::to_route(substr($method, 3), $parameters);
  190. }
  191. throw new \BadMethodCallException("Method [$method] is not defined on the URL class.");
  192. }
  193. }