generate() as the information * about possible routes needs to be handed over. */ class UriBuilder implements SingletonInterface { /** * Generates an absolute URL */ public const ABSOLUTE_URL = 'url'; /** * Generates an absolute path */ public const ABSOLUTE_PATH = 'absolute'; /** * Generates an absolute url for URL sharing */ public const SHAREABLE_URL = 'share'; /** * @var array */ protected array $generated = []; protected ?RequestContext $requestContext = null; /** * Loads the router to fetch the available routes from the Router to be used for generating routes */ public function __construct( protected readonly Router $router, protected readonly FormProtectionFactory $formProtectionFactory, protected readonly RequestContextFactory $requestContextFactory ) {} /** * @internal */ public function setRequestContext(RequestContext $requestContext): void { $this->requestContext = $requestContext; } /** * Generates a URL or path for a specific route based on the given route. * Currently used to link to the current script, it is encouraged to use "buildUriFromRoute" if possible. * * If there is no route with the given name, the generator throws the RouteNotFoundException. * * @param string $pathInfo The path to the route * @param array $parameters An array of parameters * @param string $referenceType The type of reference to be generated (one of the constants) * @return UriInterface The generated Uri * @throws RouteNotFoundException If the named route doesn't exist * @throws ResourceNotFoundException If no route matches the path info */ public function buildUriFromRoutePath($pathInfo, $parameters = [], $referenceType = self::ABSOLUTE_PATH) { $route = $this->router->match($pathInfo); return $this->buildUriFromRoute($route->getOption('_identifier'), $parameters, $referenceType); } /** * Creates a link to a page with a route targetted as a redirect, if a "deep link" is possible. * Currently works just fine for URLs built for "main" and "login" pages. * * @param RouteRedirect|null $redirect * @throws RouteNotFoundException * @internal this is experimental API used for creating logins to redirect to a different route */ public function buildUriWithRedirect(string $name, array $parameters = [], ?RouteRedirect $redirect = null, string $referenceType = self::ABSOLUTE_PATH): UriInterface { if ($redirect === null) { return $this->buildUriFromRoute($name, $parameters, $referenceType); } try { $redirect->resolve($this->router); } catch (RouteNotFoundException|RouteTypeNotAllowedException|MethodNotAllowedException $e) { return $this->buildUriFromRoute($name, $parameters, $referenceType); } $parameters['redirect'] = $redirect->getName(); if ($redirect->hasParameters()) { $parameters['redirectParams'] = $redirect->getFormattedParameters(); } return $this->buildUriFromRoute($name, $parameters, $referenceType); } /** * A shorthand function to link to e.g. the same as in the current request, so the internal attribute "route" * is properly covered and does not need to be exposed all the time. */ public function buildUriFromRequest(ServerRequestInterface $request, array $parameters = [], string $referenceType = self::ABSOLUTE_PATH): UriInterface { $route = $request->getAttribute('route'); if (!$route instanceof Route && !$route instanceof SymfonyRoute) { throw new RouteNotFoundException('No route object was given inside the request object', 1691423325); } return $this->buildUriFromRoute($route->getOption('_identifier'), $parameters, $referenceType); } /** * Generates a URL or path for a specific route based on the given parameters. * When the route is configured with "access=public" then the token generation is left out. * * If there is no route with the given name, the generator throws the RouteNotFoundException. * * @param string $name The name of the route * @param array $parameters An array of parameters * @param string $referenceType The type of reference to be generated (one of the constants) * @return UriInterface The generated Uri * @throws RouteNotFoundException If the named route doesn't exist */ public function buildUriFromRoute($name, $parameters = [], $referenceType = self::ABSOLUTE_PATH) { $cacheIdentifier = 'route' . $name . serialize($parameters) . $referenceType; if (isset($this->generated[$cacheIdentifier])) { return $this->generated[$cacheIdentifier]; } $route = $this->router->getRoute((string)$name); if ($route === null) { throw new RouteNotFoundException('Unable to generate a URL for the named route "' . $name . '" because this route was not found.', 1476050190); } $parameters = array_merge( $route->getOption('parameters') ?? [], $parameters ); // If the route is not shareable and doesn't have the "public" option set, a token must be generated. if ($referenceType !== self::SHAREABLE_URL && (!$route->hasOption('access') || $route->getOption('access') !== 'public')) { $parameters = [ 'token' => $this->formProtectionFactory->createForType('backend')->generateToken('route', $name), ] + $parameters; } $this->generated[$cacheIdentifier] = $this->buildUri($name, $parameters, (string)$referenceType); return $this->generated[$cacheIdentifier]; } /** * Internal method building a Uri object, merging the GET parameters array into a flat queryString * * @param string $routeName The route name in the collection * @param array $parameters An array of GET parameters * @param string $referenceType The type of reference to be generated (one of the constants) */ protected function buildUri(string $routeName, array $parameters, string $referenceType): UriInterface { if (isset($this->requestContext)) { $requestContext = $this->requestContext; } elseif (isset($GLOBALS['TYPO3_REQUEST'])) { $requestContext = $this->requestContextFactory->fromBackendRequest($GLOBALS['TYPO3_REQUEST']); } elseif (!Environment::isCli()) { $requestContext = $this->requestContextFactory->fromBackendRequest(ServerRequestFactory::fromGlobals()->withAttribute('applicationType', SystemEnvironmentBuilder::REQUESTTYPE_BE)); } else { $requestContext = new RequestContext('/typo3/'); } $urlGenerator = new UrlGenerator($this->router->getRouteCollection(), $requestContext); $url = $urlGenerator->generate($routeName, $parameters, $referenceType === self::ABSOLUTE_PATH ? UrlGeneratorInterface::ABSOLUTE_PATH : UrlGeneratorInterface::ABSOLUTE_URL); return new Uri($url); } }