url.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. <?php namespace Laravel;
  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. * <code>
  9. * // Create a URL to a location within the application
  10. * $url = URL::to('user/profile');
  11. * </code>
  12. *
  13. * @param string $url
  14. * @param bool $https
  15. * @return string
  16. */
  17. public static function to($url = '', $https = false)
  18. {
  19. if (filter_var($url, FILTER_VALIDATE_URL) !== false) return $url;
  20. // First, we need to build the base URL for the application, as well as handle
  21. // the generation of links using SSL. It is possible for the developer to disable
  22. // the generation of SSL links throughout the application, making it more
  23. // convenient to create applications without SSL on the development box.
  24. $base = Config::get('application.url').'/'.Config::get('application.index');
  25. if ($https and Config::get('application.ssl'))
  26. {
  27. $base = preg_replace('~http://~', 'https://', $base, 1);
  28. }
  29. return rtrim($base, '/').'/'.ltrim($url, '/');
  30. }
  31. /**
  32. * Generate an application URL with HTTPS.
  33. *
  34. * @param string $url
  35. * @return string
  36. */
  37. public static function to_secure($url = '')
  38. {
  39. return static::to($url, true);
  40. }
  41. /**
  42. * Generate an application URL to an asset.
  43. *
  44. * The index file will not be added to asset URLs. If the HTTPS option is not
  45. * specified, HTTPS will be used when the active request is also using HTTPS.
  46. *
  47. * @param string $url
  48. * @param bool $https
  49. * @return string
  50. */
  51. public static function to_asset($url, $https = null)
  52. {
  53. if (is_null($https)) $https = Request::secure();
  54. return str_replace('index.php/', '', static::to($url, $https));
  55. }
  56. /**
  57. * Generate a URL from a route name.
  58. *
  59. * For routes that have wildcard parameters, an array may be passed as the second
  60. * parameter to the method. The values of this array will be used to fill the
  61. * wildcard segments of the route URI.
  62. *
  63. * <code>
  64. * // Create a URL to the "profile" named route
  65. * $url = URL::to_route('profile');
  66. *
  67. * // Create a URL to the "profile" named route with wildcard parameters
  68. * $url = URL::to_route('profile', array($username));
  69. * </code>
  70. *
  71. * @param string $name
  72. * @param array $parameters
  73. * @param bool $https
  74. * @return string
  75. */
  76. public static function to_route($name, $parameters = array(), $https = false)
  77. {
  78. if ( ! is_null($route = IoC::container()->core('routing.router')->find($name)))
  79. {
  80. $uris = explode(', ', key($route));
  81. $uri = substr($uris[0], strpos($uris[0], '/'));
  82. // Spin through each route parameter and replace the route wildcard
  83. // segment with the corresponding parameter passed to the method.
  84. foreach ((array) $parameters as $parameter)
  85. {
  86. $uri = preg_replace('/\(.+?\)/', $parameter, $uri, 1);
  87. }
  88. // Before generating the route URL, we will replace all remaining optional
  89. // wildcard segments that were not replaced by parameters with spaces.
  90. return static::to(str_replace(array('/(:any?)', '/(:num?)'), '', $uri), $https);
  91. }
  92. throw new \Exception("Error generating named route for route [$name]. Route is not defined.");
  93. }
  94. /**
  95. * Generate a HTTPS URL from a route name.
  96. *
  97. * @param string $name
  98. * @param array $parameters
  99. * @return string
  100. */
  101. public static function to_secure_route($name, $parameters = array())
  102. {
  103. return static::to_route($name, $parameters, true);
  104. }
  105. /**
  106. * Generate a URL friendly "slug".
  107. *
  108. * <code>
  109. * // Returns "this-is-my-blog-post"
  110. * $slug = URL::slug('This is my blog post!');
  111. *
  112. * // Returns "this_is_my_blog_post"
  113. * $slug = URL::slug('This is my blog post!', '_');
  114. * </code>
  115. *
  116. * @param string $title
  117. * @param string $separator
  118. * @return string
  119. */
  120. public static function slug($title, $separator = '-')
  121. {
  122. $title = Str::ascii($title);
  123. // Remove all characters that are not the separator, letters, numbers, or whitespace.
  124. $title = preg_replace('![^'.preg_quote($separator).'\pL\pN\s]+!u', '', Str::lower($title));
  125. // Replace all separator characters and whitespace by a single separator
  126. $title = preg_replace('!['.preg_quote($separator).'\s]+!u', $separator, $title);
  127. return trim($title, $separator);
  128. }
  129. /**
  130. * Magic Method for dynamically creating URLs to named routes.
  131. *
  132. * <code>
  133. * // Create a URL to the "profile" named route
  134. * $url = URL::to_profile();
  135. *
  136. * // Create a URL to the "profile" named route with wildcard segments
  137. * $url = URL::to_profile(array($username));
  138. *
  139. * // Create a URL to the "profile" named route using HTTPS
  140. * $url = URL::to_secure_profile();
  141. * </code>
  142. */
  143. public static function __callStatic($method, $parameters)
  144. {
  145. $parameters = (isset($parameters[0])) ? $parameters[0] : array();
  146. if (strpos($method, 'to_secure_') === 0)
  147. {
  148. return static::to_route(substr($method, 10), $parameters, true);
  149. }
  150. if (strpos($method, 'to_') === 0)
  151. {
  152. return static::to_route(substr($method, 3), $parameters);
  153. }
  154. throw new \Exception("Method [$method] is not defined on the URL class.");
  155. }
  156. }