Files
Chamilo/vendor/sonata-project/admin-bundle/Route/DefaultRouteGenerator.php
2025-08-14 22:41:49 +02:00

183 lines
5.4 KiB
PHP

<?php
/*
* This file is part of the Sonata Project package.
*
* (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sonata\AdminBundle\Route;
use Sonata\AdminBundle\Admin\AdminInterface;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
use Symfony\Component\Routing\RouterInterface;
/**
* @author Thomas Rabaix <thomas.rabaix@sonata-project.org>
*/
class DefaultRouteGenerator implements RouteGeneratorInterface
{
/**
* @var RouterInterface
*/
private $router;
/**
* @var RoutesCache
*/
private $cache;
/**
* @var array
*/
private $caches = [];
/**
* @var string[]
*/
private $loaded = [];
/**
* @param RouterInterface $router
* @param RoutesCache $cache
*/
public function __construct(RouterInterface $router, RoutesCache $cache)
{
$this->router = $router;
$this->cache = $cache;
}
/**
* {@inheritdoc}
*/
public function generate($name, array $parameters = [], $absolute = UrlGeneratorInterface::ABSOLUTE_PATH)
{
return $this->router->generate($name, $parameters, $absolute);
}
/**
* {@inheritdoc}
*/
public function generateUrl(AdminInterface $admin, $name, array $parameters = [], $absolute = UrlGeneratorInterface::ABSOLUTE_PATH)
{
$arrayRoute = $this->generateMenuUrl($admin, $name, $parameters, $absolute);
return $this->router->generate($arrayRoute['route'], $arrayRoute['routeParameters'], $arrayRoute['routeAbsolute']);
}
/**
* {@inheritdoc}
*/
public function generateMenuUrl(AdminInterface $admin, $name, array $parameters = [], $absolute = UrlGeneratorInterface::ABSOLUTE_PATH)
{
// if the admin is a child we automatically append the parent's id
if ($admin->isChild() && $admin->hasRequest()) {
// twig template does not accept variable hash key ... so cannot use admin.idparameter ...
// switch value
if (isset($parameters['id'])) {
$parameters[$admin->getIdParameter()] = $parameters['id'];
unset($parameters['id']);
}
for ($parentAdmin = $admin->getParent(); null !== $parentAdmin; $parentAdmin = $parentAdmin->getParent()) {
$parameters[$parentAdmin->getIdParameter()] = $admin->getRequest()->attributes->get($parentAdmin->getIdParameter());
}
}
// if the admin is linked to a parent FieldDescription (ie, embedded widget)
if ($admin->hasParentFieldDescription()) {
// merge link parameter if any provided by the parent field
$parameters = array_merge($parameters, $admin->getParentFieldDescription()->getOption('link_parameters', []));
$parameters['uniqid'] = $admin->getUniqid();
$parameters['code'] = $admin->getCode();
$parameters['pcode'] = $admin->getParentFieldDescription()->getAdmin()->getCode();
$parameters['puniqid'] = $admin->getParentFieldDescription()->getAdmin()->getUniqid();
}
if ($name == 'update' || substr($name, -7) == '|update') {
$parameters['uniqid'] = $admin->getUniqid();
$parameters['code'] = $admin->getCode();
}
// allows to define persistent parameters
if ($admin->hasRequest()) {
$parameters = array_merge($admin->getPersistentParameters(), $parameters);
}
$code = $this->getCode($admin, $name);
if (!array_key_exists($code, $this->caches)) {
throw new \RuntimeException(sprintf('unable to find the route `%s`', $code));
}
return [
'route' => $this->caches[$code],
'routeParameters' => $parameters,
'routeAbsolute' => $absolute,
];
}
/**
* {@inheritdoc}
*/
public function hasAdminRoute(AdminInterface $admin, $name)
{
return array_key_exists($this->getCode($admin, $name), $this->caches);
}
/**
* @param AdminInterface $admin
* @param string $name
*
* @return string
*/
private function getCode(AdminInterface $admin, $name)
{
$this->loadCache($admin);
// someone provide the fullname
if (!$admin->isChild() && array_key_exists($name, $this->caches)) {
return $name;
}
// NEXT_MAJOR: Uncomment the following line.
// $codePrefix = $admin->getBaseCodeRoute();
// NEXT_MAJOR: Remove next 5 lines.
$codePrefix = $admin->getCode();
if ($admin->isChild()) {
$codePrefix = $admin->getBaseCodeRoute();
}
// someone provide a code, so it is a child
if (strpos($name, '.')) {
return $codePrefix.'|'.$name;
}
return $codePrefix.'.'.$name;
}
/**
* @param AdminInterface $admin
*/
private function loadCache(AdminInterface $admin)
{
if ($admin->isChild()) {
$this->loadCache($admin->getParent());
} else {
if (in_array($admin->getCode(), $this->loaded)) {
return;
}
$this->caches = array_merge($this->cache->load($admin), $this->caches);
$this->loaded[] = $admin->getCode();
}
}
}