Ajout des vendor
This commit is contained in:
52
vendor/symfony/framework-bundle/Routing/AnnotatedRouteControllerLoader.php
vendored
Normal file
52
vendor/symfony/framework-bundle/Routing/AnnotatedRouteControllerLoader.php
vendored
Normal file
@ -0,0 +1,52 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Bundle\FrameworkBundle\Routing;
|
||||
|
||||
use Symfony\Component\Routing\Loader\AnnotationClassLoader;
|
||||
use Symfony\Component\Routing\Route;
|
||||
|
||||
/**
|
||||
* AnnotatedRouteControllerLoader is an implementation of AnnotationClassLoader
|
||||
* that sets the '_controller' default based on the class and method names.
|
||||
*
|
||||
* @author Fabien Potencier <fabien@symfony.com>
|
||||
*/
|
||||
class AnnotatedRouteControllerLoader extends AnnotationClassLoader
|
||||
{
|
||||
/**
|
||||
* Configures the _controller default parameter of a given Route instance.
|
||||
*/
|
||||
protected function configureRoute(Route $route, \ReflectionClass $class, \ReflectionMethod $method, object $annot)
|
||||
{
|
||||
if ('__invoke' === $method->getName()) {
|
||||
$route->setDefault('_controller', $class->getName());
|
||||
} else {
|
||||
$route->setDefault('_controller', $class->getName().'::'.$method->getName());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Makes the default route name more sane by removing common keywords.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function getDefaultRouteName(\ReflectionClass $class, \ReflectionMethod $method)
|
||||
{
|
||||
$name = preg_replace('/(bundle|controller)_/', '_', parent::getDefaultRouteName($class, $method));
|
||||
|
||||
if (str_ends_with($method->name, 'Action') || str_ends_with($method->name, '_action')) {
|
||||
$name = preg_replace('/action(_\d+)?$/', '\\1', $name);
|
||||
}
|
||||
|
||||
return str_replace('__', '_', $name);
|
||||
}
|
||||
}
|
95
vendor/symfony/framework-bundle/Routing/DelegatingLoader.php
vendored
Normal file
95
vendor/symfony/framework-bundle/Routing/DelegatingLoader.php
vendored
Normal file
@ -0,0 +1,95 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Bundle\FrameworkBundle\Routing;
|
||||
|
||||
use Symfony\Component\Config\Exception\LoaderLoadException;
|
||||
use Symfony\Component\Config\Loader\DelegatingLoader as BaseDelegatingLoader;
|
||||
use Symfony\Component\Config\Loader\LoaderResolverInterface;
|
||||
use Symfony\Component\Routing\RouteCollection;
|
||||
|
||||
/**
|
||||
* DelegatingLoader delegates route loading to other loaders using a loader resolver.
|
||||
*
|
||||
* This implementation resolves the _controller attribute from the short notation
|
||||
* to the fully-qualified form (from a:b:c to class::method).
|
||||
*
|
||||
* @author Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* @final
|
||||
*/
|
||||
class DelegatingLoader extends BaseDelegatingLoader
|
||||
{
|
||||
private $loading = false;
|
||||
private $defaultOptions;
|
||||
private $defaultRequirements;
|
||||
|
||||
public function __construct(LoaderResolverInterface $resolver, array $defaultOptions = [], array $defaultRequirements = [])
|
||||
{
|
||||
$this->defaultOptions = $defaultOptions;
|
||||
$this->defaultRequirements = $defaultRequirements;
|
||||
|
||||
parent::__construct($resolver);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function load($resource, string $type = null): RouteCollection
|
||||
{
|
||||
if ($this->loading) {
|
||||
// This can happen if a fatal error occurs in parent::load().
|
||||
// Here is the scenario:
|
||||
// - while routes are being loaded by parent::load() below, a fatal error
|
||||
// occurs (e.g. parse error in a controller while loading annotations);
|
||||
// - PHP abruptly empties the stack trace, bypassing all catch/finally blocks;
|
||||
// it then calls the registered shutdown functions;
|
||||
// - the ErrorHandler catches the fatal error and re-injects it for rendering
|
||||
// thanks to HttpKernel->terminateWithException() (that calls handleException());
|
||||
// - at this stage, if we try to load the routes again, we must prevent
|
||||
// the fatal error from occurring a second time,
|
||||
// otherwise the PHP process would be killed immediately;
|
||||
// - while rendering the exception page, the router can be required
|
||||
// (by e.g. the web profiler that needs to generate an URL);
|
||||
// - this handles the case and prevents the second fatal error
|
||||
// by triggering an exception beforehand.
|
||||
|
||||
throw new LoaderLoadException($resource, null, 0, null, $type);
|
||||
}
|
||||
$this->loading = true;
|
||||
|
||||
try {
|
||||
$collection = parent::load($resource, $type);
|
||||
} finally {
|
||||
$this->loading = false;
|
||||
}
|
||||
|
||||
foreach ($collection->all() as $route) {
|
||||
if ($this->defaultOptions) {
|
||||
$route->setOptions($route->getOptions() + $this->defaultOptions);
|
||||
}
|
||||
if ($this->defaultRequirements) {
|
||||
$route->setRequirements($route->getRequirements() + $this->defaultRequirements);
|
||||
}
|
||||
if (!\is_string($controller = $route->getDefault('_controller'))) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if (str_contains($controller, '::')) {
|
||||
continue;
|
||||
}
|
||||
|
||||
$route->setDefault('_controller', $controller);
|
||||
}
|
||||
|
||||
return $collection;
|
||||
}
|
||||
}
|
39
vendor/symfony/framework-bundle/Routing/RedirectableCompiledUrlMatcher.php
vendored
Normal file
39
vendor/symfony/framework-bundle/Routing/RedirectableCompiledUrlMatcher.php
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Bundle\FrameworkBundle\Routing;
|
||||
|
||||
use Symfony\Component\Routing\Matcher\CompiledUrlMatcher;
|
||||
use Symfony\Component\Routing\Matcher\RedirectableUrlMatcherInterface;
|
||||
|
||||
/**
|
||||
* @author Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* @internal
|
||||
*/
|
||||
class RedirectableCompiledUrlMatcher extends CompiledUrlMatcher implements RedirectableUrlMatcherInterface
|
||||
{
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function redirect(string $path, string $route, string $scheme = null): array
|
||||
{
|
||||
return [
|
||||
'_controller' => 'Symfony\\Bundle\\FrameworkBundle\\Controller\\RedirectController::urlRedirectAction',
|
||||
'path' => $path,
|
||||
'permanent' => true,
|
||||
'scheme' => $scheme,
|
||||
'httpPort' => $this->context->getHttpPort(),
|
||||
'httpsPort' => $this->context->getHttpsPort(),
|
||||
'_route' => $route,
|
||||
];
|
||||
}
|
||||
}
|
19
vendor/symfony/framework-bundle/Routing/RouteLoaderInterface.php
vendored
Normal file
19
vendor/symfony/framework-bundle/Routing/RouteLoaderInterface.php
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Bundle\FrameworkBundle\Routing;
|
||||
|
||||
/**
|
||||
* Marker interface for service route loaders.
|
||||
*/
|
||||
interface RouteLoaderInterface
|
||||
{
|
||||
}
|
210
vendor/symfony/framework-bundle/Routing/Router.php
vendored
Normal file
210
vendor/symfony/framework-bundle/Routing/Router.php
vendored
Normal file
@ -0,0 +1,210 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Bundle\FrameworkBundle\Routing;
|
||||
|
||||
use Psr\Container\ContainerInterface;
|
||||
use Psr\Log\LoggerInterface;
|
||||
use Symfony\Component\Config\Loader\LoaderInterface;
|
||||
use Symfony\Component\Config\Resource\FileExistenceResource;
|
||||
use Symfony\Component\Config\Resource\FileResource;
|
||||
use Symfony\Component\DependencyInjection\Config\ContainerParametersResource;
|
||||
use Symfony\Component\DependencyInjection\ContainerInterface as SymfonyContainerInterface;
|
||||
use Symfony\Component\DependencyInjection\Exception\ParameterNotFoundException;
|
||||
use Symfony\Component\DependencyInjection\Exception\RuntimeException;
|
||||
use Symfony\Component\HttpKernel\CacheWarmer\WarmableInterface;
|
||||
use Symfony\Component\Routing\RequestContext;
|
||||
use Symfony\Component\Routing\RouteCollection;
|
||||
use Symfony\Component\Routing\Router as BaseRouter;
|
||||
use Symfony\Contracts\Service\ServiceSubscriberInterface;
|
||||
|
||||
/**
|
||||
* This Router creates the Loader only when the cache is empty.
|
||||
*
|
||||
* @author Fabien Potencier <fabien@symfony.com>
|
||||
*/
|
||||
class Router extends BaseRouter implements WarmableInterface, ServiceSubscriberInterface
|
||||
{
|
||||
private $container;
|
||||
private $collectedParameters = [];
|
||||
private $paramFetcher;
|
||||
|
||||
/**
|
||||
* @param mixed $resource The main resource to load
|
||||
*/
|
||||
public function __construct(ContainerInterface $container, $resource, array $options = [], RequestContext $context = null, ContainerInterface $parameters = null, LoggerInterface $logger = null, string $defaultLocale = null)
|
||||
{
|
||||
$this->container = $container;
|
||||
$this->resource = $resource;
|
||||
$this->context = $context ?? new RequestContext();
|
||||
$this->logger = $logger;
|
||||
$this->setOptions($options);
|
||||
|
||||
if ($parameters) {
|
||||
$this->paramFetcher = \Closure::fromCallable([$parameters, 'get']);
|
||||
} elseif ($container instanceof SymfonyContainerInterface) {
|
||||
$this->paramFetcher = \Closure::fromCallable([$container, 'getParameter']);
|
||||
} else {
|
||||
throw new \LogicException(sprintf('You should either pass a "%s" instance or provide the $parameters argument of the "%s" method.', SymfonyContainerInterface::class, __METHOD__));
|
||||
}
|
||||
|
||||
$this->defaultLocale = $defaultLocale;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getRouteCollection()
|
||||
{
|
||||
if (null === $this->collection) {
|
||||
$this->collection = $this->container->get('routing.loader')->load($this->resource, $this->options['resource_type']);
|
||||
$this->resolveParameters($this->collection);
|
||||
$this->collection->addResource(new ContainerParametersResource($this->collectedParameters));
|
||||
|
||||
try {
|
||||
$containerFile = ($this->paramFetcher)('kernel.cache_dir').'/'.($this->paramFetcher)('kernel.container_class').'.php';
|
||||
if (file_exists($containerFile)) {
|
||||
$this->collection->addResource(new FileResource($containerFile));
|
||||
} else {
|
||||
$this->collection->addResource(new FileExistenceResource($containerFile));
|
||||
}
|
||||
} catch (ParameterNotFoundException $exception) {
|
||||
}
|
||||
}
|
||||
|
||||
return $this->collection;
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @return string[] A list of classes to preload on PHP 7.4+
|
||||
*/
|
||||
public function warmUp(string $cacheDir)
|
||||
{
|
||||
$currentDir = $this->getOption('cache_dir');
|
||||
|
||||
// force cache generation
|
||||
$this->setOption('cache_dir', $cacheDir);
|
||||
$this->getMatcher();
|
||||
$this->getGenerator();
|
||||
|
||||
$this->setOption('cache_dir', $currentDir);
|
||||
|
||||
return [
|
||||
$this->getOption('generator_class'),
|
||||
$this->getOption('matcher_class'),
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Replaces placeholders with service container parameter values in:
|
||||
* - the route defaults,
|
||||
* - the route requirements,
|
||||
* - the route path,
|
||||
* - the route host,
|
||||
* - the route schemes,
|
||||
* - the route methods.
|
||||
*/
|
||||
private function resolveParameters(RouteCollection $collection)
|
||||
{
|
||||
foreach ($collection as $route) {
|
||||
foreach ($route->getDefaults() as $name => $value) {
|
||||
$route->setDefault($name, $this->resolve($value));
|
||||
}
|
||||
|
||||
foreach ($route->getRequirements() as $name => $value) {
|
||||
$route->setRequirement($name, $this->resolve($value));
|
||||
}
|
||||
|
||||
$route->setPath($this->resolve($route->getPath()));
|
||||
$route->setHost($this->resolve($route->getHost()));
|
||||
|
||||
$schemes = [];
|
||||
foreach ($route->getSchemes() as $scheme) {
|
||||
$schemes[] = explode('|', $this->resolve($scheme));
|
||||
}
|
||||
$route->setSchemes(array_merge([], ...$schemes));
|
||||
|
||||
$methods = [];
|
||||
foreach ($route->getMethods() as $method) {
|
||||
$methods[] = explode('|', $this->resolve($method));
|
||||
}
|
||||
$route->setMethods(array_merge([], ...$methods));
|
||||
$route->setCondition($this->resolve($route->getCondition()));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Recursively replaces placeholders with the service container parameters.
|
||||
*
|
||||
* @param mixed $value The source which might contain "%placeholders%"
|
||||
*
|
||||
* @return mixed The source with the placeholders replaced by the container
|
||||
* parameters. Arrays are resolved recursively.
|
||||
*
|
||||
* @throws ParameterNotFoundException When a placeholder does not exist as a container parameter
|
||||
* @throws RuntimeException When a container value is not a string or a numeric value
|
||||
*/
|
||||
private function resolve($value)
|
||||
{
|
||||
if (\is_array($value)) {
|
||||
foreach ($value as $key => $val) {
|
||||
$value[$key] = $this->resolve($val);
|
||||
}
|
||||
|
||||
return $value;
|
||||
}
|
||||
|
||||
if (!\is_string($value)) {
|
||||
return $value;
|
||||
}
|
||||
|
||||
$escapedValue = preg_replace_callback('/%%|%([^%\s]++)%/', function ($match) use ($value) {
|
||||
// skip %%
|
||||
if (!isset($match[1])) {
|
||||
return '%%';
|
||||
}
|
||||
|
||||
if (preg_match('/^env\((?:\w++:)*+\w++\)$/', $match[1])) {
|
||||
throw new RuntimeException(sprintf('Using "%%%s%%" is not allowed in routing configuration.', $match[1]));
|
||||
}
|
||||
|
||||
$resolved = ($this->paramFetcher)($match[1]);
|
||||
|
||||
if (is_scalar($resolved)) {
|
||||
$this->collectedParameters[$match[1]] = $resolved;
|
||||
|
||||
if (\is_string($resolved)) {
|
||||
$resolved = $this->resolve($resolved);
|
||||
}
|
||||
|
||||
if (is_scalar($resolved)) {
|
||||
return false === $resolved ? '0' : (string) $resolved;
|
||||
}
|
||||
}
|
||||
|
||||
throw new RuntimeException(sprintf('The container parameter "%s", used in the route configuration value "%s", must be a string or numeric, but it is of type "%s".', $match[1], $value, get_debug_type($resolved)));
|
||||
}, $value);
|
||||
|
||||
return str_replace('%%', '%', $escapedValue);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public static function getSubscribedServices()
|
||||
{
|
||||
return [
|
||||
'routing.loader' => LoaderInterface::class,
|
||||
];
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user