<?php
namespace Illuminate\Routing;
use Closure;
use LogicException;
use ReflectionFunction;
use Illuminate\Support\Arr;
use Illuminate\Support\Str;
use Illuminate\Http\Request;
use UnexpectedValueException;
use Illuminate\Container\Container;
use Illuminate\Routing\Matching\UriValidator;
use Illuminate\Routing\Matching\HostValidator;
use Illuminate\Routing\Matching\MethodValidator;
use Illuminate\Routing\Matching\SchemeValidator;
use Illuminate\Http\Exception\HttpResponseException;
use Symfony\Component\Routing\Route as SymfonyRoute;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
class Route
{
use RouteDependencyResolverTrait;
* The URI pattern the route responds to.
*
* @var string
*/
protected $uri;
* The HTTP methods the route responds to.
*
* @var array
*/
protected $methods;
* The route action array.
*
* @var array
*/
protected $action;
* The default values for the route.
*
* @var array
*/
protected $defaults = [];
* The regular expression requirements.
*
* @var array
*/
protected $wheres = [];
* The array of matched parameters.
*
* @var array
*/
protected $parameters;
* The parameter names for the route.
*
* @var array|null
*/
protected $parameterNames;
* The compiled version of the route.
*
* @var \Symfony\Component\Routing\CompiledRoute
*/
protected $compiled;
* The container instance used by the route.
*
* @var \Illuminate\Container\Container
*/
protected $container;
* The validators used by the routes.
*
* @var array
*/
public static $validators;
* Create a new Route instance.
*
* @param array $methods
* @param string $uri
* @param \Closure|array $action
* @return void
*/
public function __construct($methods, $uri, $action)
{
$this->uri = $uri;
$this->methods = (array) $methods;
$this->action = $this->parseAction($action);
if (in_array('GET', $this->methods) && ! in_array('HEAD', $this->methods)) {
$this->methods[] = 'HEAD';
}
if (isset($this->action['prefix'])) {
$this->prefix($this->action['prefix']);
}
}
* Run the route action and return the response.
*
* @param \Illuminate\Http\Request $request
* @return mixed
*/
public function run(Request $request)
{
$this->container = $this->container ?: new Container;
try {
if (! is_string($this->action['uses'])) {
return $this->runCallable($request);
}
if ($this->customDispatcherIsBound()) {
return $this->runWithCustomDispatcher($request);
}
return $this->runController($request);
} catch (HttpResponseException $e) {
return $e->getResponse();
}
}
* Run the route action and return the response.
*
* @param \Illuminate\Http\Request $request
* @return mixed
*/
protected function runCallable(Request $request)
{
$parameters = $this->resolveMethodDependencies(
$this->parametersWithoutNulls(), new ReflectionFunction($this->action['uses'])
);
return call_user_func_array($this->action['uses'], $parameters);
}
* Run the route action and return the response.
*
* @param \Illuminate\Http\Request $request
* @return mixed
*
* @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
*/
protected function runController(Request $request)
{
list($class, $method) = explode('@', $this->action['uses']);
$parameters = $this->resolveClassMethodDependencies(
$this->parametersWithoutNulls(), $class, $method
);
if (! method_exists($instance = $this->container->make($class), $method)) {
throw new NotFoundHttpException;
}
return call_user_func_array([$instance, $method], $parameters);
}
* Determine if a custom route dispatcher is bound in the container.
*
* @return bool
*/
protected function customDispatcherIsBound()
{
return $this->container->bound('illuminate.route.dispatcher');
}
* Send the request and route to a custom dispatcher for handling.
*
* @param \Illuminate\Http\Request $request
* @return mixed
*/
protected function runWithCustomDispatcher(Request $request)
{
list($class, $method) = explode('@', $this->action['uses']);
$dispatcher = $this->container->make('illuminate.route.dispatcher');
return $dispatcher->dispatch($this, $request, $class, $method);
}
* Determine if the route matches given request.
*
* @param \Illuminate\Http\Request $request
* @param bool $includingMethod
* @return bool
*/
public function matches(Request $request, $includingMethod = true)
{
$this->compileRoute();
foreach ($this->getValidators() as $validator) {
if (! $includingMethod && $validator instanceof MethodValidator) {
continue;
}
if (! $validator->matches($this, $request)) {
return false;
}
}
return true;
}
* Compile the route into a Symfony CompiledRoute instance.
*
* @return void
*/
protected function compileRoute()
{
$optionals = $this->extractOptionalParameters();
$uri = preg_replace('/\{(\w+?)\?\}/', '{$1}', $this->uri);
$this->compiled = with(
new SymfonyRoute($uri, $optionals, $this->wheres, [], $this->domain() ?: '')
)->compile();
}
* Get the optional parameters for the route.
*
* @return array
*/
protected function extractOptionalParameters()
{
preg_match_all('/\{(\w+?)\?\}/', $this->uri, $matches);
return isset($matches[1]) ? array_fill_keys($matches[1], null) : [];
}
* Get or set the middlewares attached to the route.
*
* @param array|string|null $middleware
* @return $this|array
*/
public function middleware($middleware = null)
{
if (is_null($middleware)) {
return (array) Arr::get($this->action, 'middleware', []);
}
if (is_string($middleware)) {
$middleware = [$middleware];
}
$this->action['middleware'] = array_merge(
(array) Arr::get($this->action, 'middleware', []), $middleware
);
return $this;
}
* Get the "before" filters for the route.
*
* @return array
*
* @deprecated since version 5.1.
*/
public function beforeFilters()
{
if (! isset($this->action['before'])) {
return [];
}
return $this->parseFilters($this->action['before']);
}
* Get the "after" filters for the route.
*
* @return array
*
* @deprecated since version 5.1.
*/
public function afterFilters()
{
if (! isset($this->action['after'])) {
return [];
}
return $this->parseFilters($this->action['after']);
}
* Parse the given filter string.
*
* @param string $filters
* @return array
*
* @deprecated since version 5.1.
*/
public static function parseFilters($filters)
{
return Arr::build(static::explodeFilters($filters), function ($key, $value) {
return Route::parseFilter($value);
});
}
* Turn the filters into an array if they aren't already.
*
* @param array|string $filters
* @return array
*/
protected static function explodeFilters($filters)
{
if (is_array($filters)) {
return static::explodeArrayFilters($filters);
}
return array_map('trim', explode('|', $filters));
}
* Flatten out an array of filter declarations.
*
* @param array $filters
* @return array
*/
protected static function explodeArrayFilters(array $filters)
{
$results = [];
foreach ($filters as $filter) {
$results = array_merge($results, array_map('trim', explode('|', $filter)));
}
return $results;
}
* Parse the given filter into name and parameters.
*
* @param string $filter
* @return array
*
* @deprecated since version 5.1.
*/
public static function parseFilter($filter)
{
if (! Str::contains($filter, ':')) {
return [$filter, []];
}
return static::parseParameterFilter($filter);
}
* Parse a filter with parameters.
*
* @param string $filter
* @return array
*/
protected static function parseParameterFilter($filter)
{
list($name, $parameters) = explode(':', $filter, 2);
return [$name, explode(',', $parameters)];
}
* Determine a given parameter exists from the route.
*
* @param string $name
* @return bool
*/
public function hasParameter($name)
{
return array_key_exists($name, $this->parameters());
}
* Get a given parameter from the route.
*
* @param string $name
* @param mixed $default
* @return string|object
*/
public function getParameter($name, $default = null)
{
return $this->parameter($name, $default);
}
* Get a given parameter from the route.
*
* @param string $name
* @param mixed $default
* @return string|object
*/
public function parameter($name, $default = null)
{
return Arr::get($this->parameters(), $name, $default);
}
* Set a parameter to the given value.
*
* @param string $name
* @param mixed $value
* @return void
*/
public function setParameter($name, $value)
{
$this->parameters();
$this->parameters[$name] = $value;
}
* Unset a parameter on the route if it is set.
*
* @param string $name
* @return void
*/
public function forgetParameter($name)
{
$this->parameters();
unset($this->parameters[$name]);
}
* Get the key / value list of parameters for the route.
*
* @return array
*
* @throws \LogicException
*/
public function parameters()
{
if (isset($this->parameters)) {
return array_map(function ($value) {
return is_string($value) ? rawurldecode($value) : $value;
}, $this->parameters);
}
throw new LogicException('Route is not bound.');
}
* Get the key / value list of parameters without null values.
*
* @return array
*/
public function parametersWithoutNulls()
{
return array_filter($this->parameters(), function ($p) {
return ! is_null($p);
});
}
* Get all of the parameter names for the route.
*
* @return array
*/
public function parameterNames()
{
if (isset($this->parameterNames)) {
return $this->parameterNames;
}
return $this->parameterNames = $this->compileParameterNames();
}
* Get the parameter names for the route.
*
* @return array
*/
protected function compileParameterNames()
{
preg_match_all('/\{(.*?)\}/', $this->domain().$this->uri, $matches);
return array_map(function ($m) {
return trim($m, '?');
}, $matches[1]);
}
* Bind the route to a given request for execution.
*
* @param \Illuminate\Http\Request $request
* @return $this
*/
public function bind(Request $request)
{
$this->compileRoute();
$this->bindParameters($request);
return $this;
}
* Extract the parameter list from the request.
*
* @param \Illuminate\Http\Request $request
* @return array
*/
public function bindParameters(Request $request)
{
$params = $this->matchToKeys(
array_slice($this->bindPathParameters($request), 1)
);
if (! is_null($this->compiled->getHostRegex())) {
$params = $this->bindHostParameters(
$request, $params
);
}
return $this->parameters = $this->replaceDefaults($params);
}
* Get the parameter matches for the path portion of the URI.
*
* @param \Illuminate\Http\Request $request
* @return array
*/
protected function bindPathParameters(Request $request)
{
preg_match($this->compiled->getRegex(), '/'.$request->decodedPath(), $matches);
return $matches;
}
* Extract the parameter list from the host part of the request.
*
* @param \Illuminate\Http\Request $request
* @param array $parameters
* @return array
*/
protected function bindHostParameters(Request $request, $parameters)
{
preg_match($this->compiled->getHostRegex(), $request->getHost(), $matches);
return array_merge($this->matchToKeys(array_slice($matches, 1)), $parameters);
}
* Combine a set of parameter matches with the route's keys.
*
* @param array $matches
* @return array
*/
protected function matchToKeys(array $matches)
{
if (count($this->parameterNames()) == 0) {
return [];
}
$parameters = array_intersect_key($matches, array_flip($this->parameterNames()));
return array_filter($parameters, function ($value) {
return is_string($value) && strlen($value) > 0;
});
}
* Replace null parameters with their defaults.
*
* @param array $parameters
* @return array
*/
protected function replaceDefaults(array $parameters)
{
foreach ($parameters as $key => &$value) {
$value = isset($value) ? $value : Arr::get($this->defaults, $key);
}
foreach ($this->defaults as $key => $value) {
if (! isset($parameters[$key])) {
$parameters[$key] = $value;
}
}
return $parameters;
}
* Parse the route action into a standard array.
*
* @param callable|array $action
* @return array
*
* @throws \UnexpectedValueException
*/
protected function parseAction($action)
{
if (is_callable($action)) {
return ['uses' => $action];
}
elseif (! isset($action['uses'])) {
$action['uses'] = $this->findCallable($action);
}
if (is_string($action['uses']) && ! Str::contains($action['uses'], '@')) {
throw new UnexpectedValueException(sprintf(
'Invalid route action: [%s]', $action['uses']
));
}
return $action;
}
* Find the callable in an action array.
*
* @param array $action
* @return callable
*/
protected function findCallable(array $action)
{
return Arr::first($action, function ($key, $value) {
return is_callable($value) && is_numeric($key);
});
}
* Get the route validators for the instance.
*
* @return array
*/
public static function getValidators()
{
if (isset(static::$validators)) {
return static::$validators;
}
return static::$validators = [
new MethodValidator, new SchemeValidator,
new HostValidator, new UriValidator,
];
}
* Add before filters to the route.
*
* @param string $filters
* @return $this
*
* @deprecated since version 5.1.
*/
public function before($filters)
{
return $this->addFilters('before', $filters);
}
* Add after filters to the route.
*
* @param string $filters
* @return $this
*
* @deprecated since version 5.1.
*/
public function after($filters)
{
return $this->addFilters('after', $filters);
}
* Add the given filters to the route by type.
*
* @param string $type
* @param string $filters
* @return $this
*/
protected function addFilters($type, $filters)
{
$filters = static::explodeFilters($filters);
if (isset($this->action[$type])) {
$existing = static::explodeFilters($this->action[$type]);
$this->action[$type] = array_merge($existing, $filters);
} else {
$this->action[$type] = $filters;
}
return $this;
}
* Set a default value for the route.
*
* @param string $key
* @param mixed $value
* @return $this
*/
public function defaults($key, $value)
{
$this->defaults[$key] = $value;
return $this;
}
* Set a regular expression requirement on the route.
*
* @param array|string $name
* @param string $expression
* @return $this
*/
public function where($name, $expression = null)
{
foreach ($this->parseWhere($name, $expression) as $name => $expression) {
$this->wheres[$name] = $expression;
}
return $this;
}
* Parse arguments to the where method into an array.
*
* @param array|string $name
* @param string $expression
* @return array
*/
protected function parseWhere($name, $expression)
{
return is_array($name) ? $name : [$name => $expression];
}
* Set a list of regular expression requirements on the route.
*
* @param array $wheres
* @return $this
*/
protected function whereArray(array $wheres)
{
foreach ($wheres as $name => $expression) {
$this->where($name, $expression);
}
return $this;
}
* Add a prefix to the route URI.
*
* @param string $prefix
* @return $this
*/
public function prefix($prefix)
{
$uri = rtrim($prefix, '/').'/'.ltrim($this->uri, '/');
$this->uri = trim($uri, '/');
return $this;
}
* Get the URI associated with the route.
*
* @return string
*/
public function getPath()
{
return $this->uri();
}
* Get the URI associated with the route.
*
* @return string
*/
public function uri()
{
return $this->uri;
}
* Get the HTTP verbs the route responds to.
*
* @return array
*/
public function getMethods()
{
return $this->methods();
}
* Get the HTTP verbs the route responds to.
*
* @return array
*/
public function methods()
{
return $this->methods;
}
* Determine if the route only responds to HTTP requests.
*
* @return bool
*/
public function httpOnly()
{
return in_array('http', $this->action, true);
}
* Determine if the route only responds to HTTPS requests.
*
* @return bool
*/
public function httpsOnly()
{
return $this->secure();
}
* Determine if the route only responds to HTTPS requests.
*
* @return bool
*/
public function secure()
{
return in_array('https', $this->action, true);
}
* Get the domain defined for the route.
*
* @return string|null
*/
public function domain()
{
return isset($this->action['domain']) ? $this->action['domain'] : null;
}
* Get the URI that the route responds to.
*
* @return string
*/
public function getUri()
{
return $this->uri;
}
* Set the URI that the route responds to.
*
* @param string $uri
* @return \Illuminate\Routing\Route
*/
public function setUri($uri)
{
$this->uri = $uri;
return $this;
}
* Get the prefix of the route instance.
*
* @return string
*/
public function getPrefix()
{
return isset($this->action['prefix']) ? $this->action['prefix'] : null;
}
* Get the name of the route instance.
*
* @return string
*/
public function getName()
{
return isset($this->action['as']) ? $this->action['as'] : null;
}
* Add or change the route name.
*
* @param string $name
* @return $this
*/
public function name($name)
{
$this->action['as'] = isset($this->action['as']) ? $this->action['as'].$name : $name;
return $this;
}
* Get the action name for the route.
*
* @return string
*/
public function getActionName()
{
return isset($this->action['controller']) ? $this->action['controller'] : 'Closure';
}
* Get the action array for the route.
*
* @return array
*/
public function getAction()
{
return $this->action;
}
* Set the action array for the route.
*
* @param array $action
* @return $this
*/
public function setAction(array $action)
{
$this->action = $action;
return $this;
}
* Get the compiled version of the route.
*
* @return \Symfony\Component\Routing\CompiledRoute
*/
public function getCompiled()
{
return $this->compiled;
}
* Set the container instance on the route.
*
* @param \Illuminate\Container\Container $container
* @return $this
*/
public function setContainer(Container $container)
{
$this->container = $container;
return $this;
}
* Prepare the route instance for serialization.
*
* @return void
*
* @throws \LogicException
*/
public function prepareForSerialization()
{
if ($this->action['uses'] instanceof Closure) {
throw new LogicException("Unable to prepare route [{$this->uri}] for serialization. Uses Closure.");
}
unset($this->container, $this->compiled);
}
* Dynamically access route parameters.
*
* @param string $key
* @return mixed
*/
public function __get($key)
{
return $this->parameter($key);
}
}