File: /home/cafsindia/lead_cafsinfotech_in/vendor/api-platform/core/src/Symfony/Routing/Router.php
<?php
/*
* This file is part of the API Platform project.
*
* (c) Kévin Dunglas <dunglas@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace ApiPlatform\Symfony\Routing;
use ApiPlatform\Metadata\UrlGeneratorInterface;
use Symfony\Component\HttpFoundation\Exception\RequestExceptionInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\Routing\Exception\ResourceNotFoundException;
use Symfony\Component\Routing\RequestContext;
use Symfony\Component\Routing\RouteCollection;
use Symfony\Component\Routing\RouterInterface;
/**
* Symfony router decorator.
*
* @author Kévin Dunglas <dunglas@gmail.com>
*/
final class Router implements RouterInterface, UrlGeneratorInterface
{
public const CONST_MAP = [
UrlGeneratorInterface::ABS_URL => RouterInterface::ABSOLUTE_URL,
UrlGeneratorInterface::ABS_PATH => RouterInterface::ABSOLUTE_PATH,
UrlGeneratorInterface::REL_PATH => RouterInterface::RELATIVE_PATH,
UrlGeneratorInterface::NET_PATH => RouterInterface::NETWORK_PATH,
];
public function __construct(private readonly RouterInterface $router, private readonly int $urlGenerationStrategy = self::ABS_PATH)
{
}
/**
* {@inheritdoc}
*/
public function setContext(RequestContext $context): void
{
$this->router->setContext($context);
}
/**
* {@inheritdoc}
*/
public function getContext(): RequestContext
{
return $this->router->getContext();
}
/**
* {@inheritdoc}
*/
public function getRouteCollection(): RouteCollection
{
return $this->router->getRouteCollection();
}
/**
* {@inheritdoc}
*/
public function match(string $pathInfo): array
{
$baseContext = $this->router->getContext();
$baseUrl = $baseContext->getBaseUrl();
if (str_starts_with($pathInfo, $baseUrl)) {
$pathInfo = substr($pathInfo, \strlen($baseUrl));
}
$request = Request::create($pathInfo, Request::METHOD_GET, [], [], [], ['HTTP_HOST' => $baseContext->getHost()]);
try {
$context = (new RequestContext())->fromRequest($request);
} catch (RequestExceptionInterface) {
throw new ResourceNotFoundException('Invalid request context.');
}
$context->setPathInfo($pathInfo);
$context->setScheme($baseContext->getScheme());
$context->setHost($baseContext->getHost());
try {
$this->router->setContext($context);
return $this->router->match($request->getPathInfo());
} finally {
$this->router->setContext($baseContext);
}
}
/**
* {@inheritdoc}
*/
public function generate(string $name, array $parameters = [], ?int $referenceType = null): string
{
return $this->router->generate($name, $parameters, self::CONST_MAP[$referenceType ?? $this->urlGenerationStrategy]);
}
}