123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191 |
- <?php namespace Laravel;
- class URL {
- /**
- * Get the base URL of the application.
- *
- * @return string
- */
- public static function base()
- {
- if (($base = Config::get('application.url')) !== '') return $base;
- if (isset($_SERVER['HTTP_HOST']))
- {
- $protocol = (Request::secure()) ? 'https://' : 'http://';
- // Basically, by removing the basename, we are removing everything after the
- // and including the front controller from the request URI. Leaving us with
- // the path in which the framework is installed. From that path, we can
- // construct the base URL to the application.
- $path = str_replace(basename($_SERVER['SCRIPT_NAME']), '', $_SERVER['SCRIPT_NAME']);
- return rtrim($protocol.$_SERVER['HTTP_HOST'].$path, '/');
- }
- return 'http://localhost';
- }
- /**
- * Generate an application URL.
- *
- * <code>
- * // Create a URL to a location within the application
- * $url = URL::to('user/profile');
- *
- * // Create a HTTPS URL to a location within the application
- * $url = URL::to('user/profile', true);
- * </code>
- *
- * @param string $url
- * @param bool $https
- * @return string
- */
- public static function to($url = '', $https = false)
- {
- if (filter_var($url, FILTER_VALIDATE_URL) !== false) return $url;
- $root = static::base().'/'.Config::get('application.index');
- // Since SSL is not often used while developing the application, we allow the
- // developer to disable SSL on all framework generated links to make it more
- // convenient to work with the site while developing locally.
- if ($https and Config::get('application.ssl'))
- {
- $root = preg_replace('~http://~', 'https://', $root, 1);
- }
- return rtrim($root, '/').'/'.ltrim($url, '/');
- }
- /**
- * Generate an application URL with HTTPS.
- *
- * @param string $url
- * @return string
- */
- public static function to_secure($url = '')
- {
- return static::to($url, true);
- }
- /**
- * Generate a URL to a controller action.
- *
- * <code>
- * // Generate a URL to the "index" method of the "user" controller
- * $url = URL::to_action('user@index');
- *
- * // Generate a URL to http://example.com/user/profile/taylor
- * $url = URL::to_action('user@profile', array('taylor'));
- * </code>
- *
- * @param string $action
- * @param array $parameters
- * @param bool $https
- * @return string
- */
- public static function to_action($action, $parameters = array(), $https = false)
- {
- $action = str_replace(array('.', '@'), '/', $action);
- return static::to($action.'/'.implode('/', $parameters), $https);
- }
- /**
- * Generate a HTTPS URL to a controller action.
- *
- * @param string $action
- * @param array $parameters
- * @return string
- */
- public static function to_secure_action($action, $parameters = array())
- {
- return static::to_action($action, $parameters, true);
- }
- /**
- * Generate an application URL to an asset.
- *
- * @param string $url
- * @param bool $https
- * @return string
- */
- public static function to_asset($url, $https = null)
- {
- if (is_null($https)) $https = Request::secure();
- $url = static::to($url, $https);
- // Since assets are not served by Laravel, we do not need to come through
- // the front controller. So, we'll remove the application index specified
- // in the application configuration from the generated URL.
- if (($index = Config::get('application.index')) !== '')
- {
- $url = str_replace($index.'/', '', $url);
- }
- return $url;
- }
- /**
- * Generate a URL from a route name.
- *
- * <code>
- * // Create a URL to the "profile" named route
- * $url = URL::to_route('profile');
- *
- * // Create a URL to the "profile" named route with wildcard parameters
- * $url = URL::to_route('profile', array($username));
- * </code>
- *
- * @param string $name
- * @param array $parameters
- * @param bool $https
- * @return string
- */
- public static function to_route($name, $parameters = array(), $https = false)
- {
- if (is_null($route = Routing\Router::find($name)))
- {
- throw new \Exception("Error creating URL for undefined route [$name].");
- }
- $uris = explode(', ', key($route));
- // Routes can handle more than one URI, but we will just take the first URI
- // and use it for the URL. Since all of the URLs should point to the same
- // route, it doesn't make a difference.
- $uri = substr($uris[0], strpos($uris[0], '/'));
- // Spin through each route parameter and replace the route wildcard segment
- // with the corresponding parameter passed to the method. Afterwards, we'll
- // replace all of the remaining optional URI segments with spaces since
- // they may not have been specified in the array of parameters.
- foreach ((array) $parameters as $parameter)
- {
- $uri = preg_replace('/\(.+?\)/', $parameter, $uri, 1);
- }
- // If there are any remaining optional place-holders, we'll just replace
- // them with empty strings since not every optional parameter has to be
- // in the array of parameters that were passed into the method.
- $uri = str_replace(array('/(:any?)', '/(:num?)'), '', $uri);
- return static::to($uri, $https);
- }
- /**
- * Generate a HTTPS URL from a route name.
- *
- * @param string $name
- * @param array $parameters
- * @return string
- */
- public static function to_secure_route($name, $parameters = array())
- {
- return static::to_route($name, $parameters, true);
- }
- }
|