url.php 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. <?php namespace Laravel; use Laravel\Routing\Router, Laravel\Routing\Route;
  2. class URL {
  3. /**
  4. * The cached base URL.
  5. *
  6. * @var string
  7. */
  8. public static $base;
  9. /**
  10. * Get the full URI including the query string.
  11. *
  12. * @return string
  13. */
  14. public static function full()
  15. {
  16. return static::to(URI::full());
  17. }
  18. /**
  19. * Get the full URL for the current request.
  20. *
  21. * @return string
  22. */
  23. public static function current()
  24. {
  25. return static::to(URI::current());
  26. }
  27. /**
  28. * Get the URL for the application root.
  29. *
  30. * @param bool $https
  31. * @return string
  32. */
  33. public static function home($https = false)
  34. {
  35. $route = Router::find('home');
  36. // If a route named "home" exists, we'll route to that instead of using
  37. // the single slash root URI. THis allows the HTTPS attribute to be
  38. // respected instead of being hard-coded in the redirect.
  39. if ( ! is_null($route))
  40. {
  41. return static::to_route('home');
  42. }
  43. return static::to('/', $https);
  44. }
  45. /**
  46. * Get the base URL of the application.
  47. *
  48. * @return string
  49. */
  50. public static function base()
  51. {
  52. if (isset(static::$base)) return static::$base;
  53. $base = 'http://localhost';
  54. // If the application's URL configuration is set, we will just use that
  55. // instead of trying to guess the URL from the $_SERVER array's host
  56. // and script variables as this is a more reliable method.
  57. if (($url = Config::get('application.url')) !== '')
  58. {
  59. $base = $url;
  60. }
  61. else
  62. {
  63. $f = Request::foundation();
  64. $base = $f->getScheme().'://'.$f->getHttpHost().$f->getBasePath();
  65. }
  66. return static::$base = $base;
  67. }
  68. /**
  69. * Generate an application URL.
  70. *
  71. * <code>
  72. * // Create a URL to a location within the application
  73. * $url = URL::to('user/profile');
  74. *
  75. * // Create a HTTPS URL to a location within the application
  76. * $url = URL::to('user/profile', true);
  77. * </code>
  78. *
  79. * @param string $url
  80. * @param bool $https
  81. * @return string
  82. */
  83. public static function to($url = '', $https = false)
  84. {
  85. // If the given URL is already valid or begins with a hash, we'll just return
  86. // the URL unchanged since it is already well formed. Otherwise we will add
  87. // the base URL of the application and return the full URL.
  88. if (static::valid($url) or starts_with($url, '#'))
  89. {
  90. return $url;
  91. }
  92. $root = static::base().'/'.Config::get('application.index');
  93. // Since SSL is not often used while developing the application, we allow the
  94. // developer to disable SSL on all framework generated links to make it more
  95. // convenient to work with the site while developing locally.
  96. if ($https and Config::get('application.ssl'))
  97. {
  98. $root = preg_replace('~http://~', 'https://', $root, 1);
  99. }
  100. else
  101. {
  102. $root = preg_replace('~https://~', 'http://', $root, 1);
  103. }
  104. return rtrim($root, '/').'/'.ltrim($url, '/');
  105. }
  106. /**
  107. * Generate an application URL with HTTPS.
  108. *
  109. * @param string $url
  110. * @return string
  111. */
  112. public static function to_secure($url = '')
  113. {
  114. return static::to($url, true);
  115. }
  116. /**
  117. * Generate a URL to a controller action.
  118. *
  119. * <code>
  120. * // Generate a URL to the "index" method of the "user" controller
  121. * $url = URL::to_action('user@index');
  122. *
  123. * // Generate a URL to http://example.com/user/profile/taylor
  124. * $url = URL::to_action('user@profile', array('taylor'));
  125. * </code>
  126. *
  127. * @param string $action
  128. * @param array $parameters
  129. * @return string
  130. */
  131. public static function to_action($action, $parameters = array())
  132. {
  133. // This allows us to use true reverse routing to controllers, since
  134. // URIs may be setup to handle the action that do not follow the
  135. // typical Laravel controller URI conventions.
  136. $route = Router::uses($action);
  137. if ( ! is_null($route))
  138. {
  139. return static::explicit($route, $action, $parameters);
  140. }
  141. // If no route was found that handled the given action, we'll just
  142. // generate the URL using the typical controller routing setup
  143. // for URIs and turn SSL to false by default.
  144. else
  145. {
  146. return static::convention($action, $parameters);
  147. }
  148. }
  149. /**
  150. * Generate a action URL from a route definition
  151. *
  152. * @param array $route
  153. * @param string $action
  154. * @param array $parameters
  155. * @return string
  156. */
  157. protected static function explicit($route, $action, $parameters)
  158. {
  159. $https = array_get(current($route), 'https', false);
  160. return static::to(static::transpose(key($route), $parameters), $https);
  161. }
  162. /**
  163. * Generate an action URI by convention.
  164. *
  165. * @param string $action
  166. * @param array $parameters
  167. * @return string
  168. */
  169. protected static function convention($action, $parameters)
  170. {
  171. list($bundle, $action) = Bundle::parse($action);
  172. $bundle = Bundle::get($bundle);
  173. // If a bundle exists for the action, we will attempt to use it's "handles"
  174. // clause as the root of the generated URL, as the bundle can only handle
  175. // URIs that begin with that string and no others.
  176. $root = $bundle['handles'] ?: '';
  177. $https = false;
  178. $parameters = implode('/', $parameters);
  179. // We'll replace both dots and @ signs in the URI since both are used
  180. // to specify the controller and action, and by convention should be
  181. // translated into URI slashes for the URL.
  182. $uri = $root.'/'.str_replace(array('.', '@'), '/', $action);
  183. $uri = static::to(str_finish($uri, '/').$parameters);
  184. return trim($uri, '/');
  185. }
  186. /**
  187. * Generate an application URL to an asset.
  188. *
  189. * @param string $url
  190. * @param bool $https
  191. * @return string
  192. */
  193. public static function to_asset($url, $https = null)
  194. {
  195. if (is_null($https)) $https = Request::secure();
  196. $url = static::to($url, $https);
  197. // Since assets are not served by Laravel, we do not need to come through
  198. // the front controller. So, we'll remove the application index specified
  199. // in the application config from the generated URL.
  200. if (($index = Config::get('application.index')) !== '')
  201. {
  202. $url = str_replace($index.'/', '', $url);
  203. }
  204. return $url;
  205. }
  206. /**
  207. * Generate a URL from a route name.
  208. *
  209. * <code>
  210. * // Create a URL to the "profile" named route
  211. * $url = URL::to_route('profile');
  212. *
  213. * // Create a URL to the "profile" named route with wildcard parameters
  214. * $url = URL::to_route('profile', array($username));
  215. * </code>
  216. *
  217. * @param string $name
  218. * @param array $parameters
  219. * @param bool $https
  220. * @return string
  221. */
  222. public static function to_route($name, $parameters = array())
  223. {
  224. if (is_null($route = Routing\Router::find($name)))
  225. {
  226. throw new \Exception("Error creating URL for undefined route [$name].");
  227. }
  228. // To determine whether the URL should be HTTPS or not, we look for the "https"
  229. // value on the route action array. The route has control over whether the URL
  230. // should be generated with an HTTPS protocol string or just HTTP.
  231. $https = array_get(current($route), 'https', false);
  232. $uri = trim(static::transpose(key($route), $parameters), '/');
  233. return static::to($uri, $https);
  234. }
  235. /**
  236. * Substitute the parameters in a given URI.
  237. *
  238. * @param string $uri
  239. * @param array $parameters
  240. * @return string
  241. */
  242. public static function transpose($uri, $parameters)
  243. {
  244. // Spin through each route parameter and replace the route wildcard segment
  245. // with the corresponding parameter passed to the method. Afterwards, we'll
  246. // replace all of the remaining optional URI segments.
  247. foreach ((array) $parameters as $parameter)
  248. {
  249. if ( ! is_null($parameter))
  250. {
  251. $uri = preg_replace('/\(.+?\)/', $parameter, $uri, 1);
  252. }
  253. }
  254. // If there are any remaining optional place-holders, we'll just replace
  255. // them with empty strings since not every optional parameter has to be
  256. // in the array of parameters that were passed to us.
  257. $uri = preg_replace('/\(.+?\)/', '', $uri);
  258. return trim($uri, '/');
  259. }
  260. /**
  261. * Determine if the given URL is valid.
  262. *
  263. * @param string $url
  264. * @return bool
  265. */
  266. public static function valid($url)
  267. {
  268. return filter_var($url, FILTER_VALIDATE_URL) !== false;
  269. }
  270. }