url.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. <?php namespace System;
  2. class URL {
  3. /**
  4. * Generate an application URL.
  5. *
  6. * @param string $url
  7. * @return string
  8. */
  9. public static function to($url = '', $https = false)
  10. {
  11. // ----------------------------------------------------
  12. // Return the URL unchanged if it is already formed.
  13. // ----------------------------------------------------
  14. if (strpos($url, '://') !== false)
  15. {
  16. return $url;
  17. }
  18. // ----------------------------------------------------
  19. // Get the base URL and index page.
  20. // ----------------------------------------------------
  21. $base = Config::get('application.url').'/'.Config::get('application.index').'/';
  22. // ----------------------------------------------------
  23. // Does the URL need an HTTPS protocol?
  24. // ----------------------------------------------------
  25. if (strpos($base, 'http://') === 0 and $https)
  26. {
  27. $base = 'https://'.substr($base, 7);
  28. }
  29. return $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 a URL from a route name.
  43. *
  44. * @param string $name
  45. * @param array $parameters
  46. * @param bool $https
  47. * @return string
  48. */
  49. public static function to_route($name, $parameters = array(), $https = false)
  50. {
  51. if ( ! is_null($route = Route\Finder::find($name)))
  52. {
  53. // ----------------------------------------------------
  54. // Get the first URI assigned to the route.
  55. // ----------------------------------------------------
  56. $uris = explode(', ', key($route));
  57. $uri = substr($uris[0], strpos($uris[0], '/'));
  58. // ----------------------------------------------------
  59. // Replace any parameters in the URI.
  60. // ----------------------------------------------------
  61. foreach ($parameters as $parameter)
  62. {
  63. $uri = preg_replace('/\(\:any\)|\(\:num\)|\(.+\)/', $parameter, $uri, 1);
  64. }
  65. return static::to($uri, $https);
  66. }
  67. throw new \Exception("Error generating named route for route [$name]. Route is not defined.");
  68. }
  69. /**
  70. * Generate a HTTPS URL from a route name.
  71. *
  72. * @param string $name
  73. * @param array $parameters
  74. * @return string
  75. */
  76. public static function to_secure_route($name, $parameters = array())
  77. {
  78. return static::to_route($name, $parameters, true);
  79. }
  80. /**
  81. * Generate a URL friendly "slug".
  82. *
  83. * @param string $title
  84. * @param string $separator
  85. * @return string
  86. */
  87. public static function slug($title, $separator = '-')
  88. {
  89. // ----------------------------------------------------
  90. // Remove all characters that are not the separator,
  91. // letters, numbers, or whitespace.
  92. // ----------------------------------------------------
  93. $title = preg_replace('![^'.preg_quote($separator).'\pL\pN\s]+!u', '', Str::lower($title));
  94. // ----------------------------------------------------
  95. // Replace all separator characters and whitespace by
  96. // a single separator
  97. // ----------------------------------------------------
  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. // ----------------------------------------------------
  107. // Dynamically create a secure route URL.
  108. // ----------------------------------------------------
  109. if (strpos($method, 'to_secure_') === 0)
  110. {
  111. return static::to_route(substr($method, 10), $parameters, true);
  112. }
  113. // ----------------------------------------------------
  114. // Dynamically create a route URL.
  115. // ----------------------------------------------------
  116. if (strpos($method, 'to_') === 0)
  117. {
  118. return static::to_route(substr($method, 3), $parameters);
  119. }
  120. throw new \Exception("Method [$method] is not defined on the URL class.");
  121. }
  122. }