<?php
/**
* @author Léo BANNHOLTZER (contact@scaledev.fr)
* @copyright 2021 - ScaleDEV SAS, 12 RUE CHARLES MORET, 10120 ST ANDRE LES VERGERS
* @license commercial
*/
declare(strict_types=1);
namespace Bluue\SitesBundle\EventSubscriber;
use App\Event\ConfigureMenuEvent;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpFoundation\RequestStack;
use Symfony\Component\Security\Core\Security;
use Symfony\Contracts\Translation\TranslatorInterface;
class ConfigureMenuSubscriber implements EventSubscriberInterface
{
/**
* @var TranslatorInterface
*/
private TranslatorInterface $tr;
/**
* @var RequestStack
*/
protected RequestStack $requestStack;
/**
* @var Security
*/
private Security $security;
/**
* @param RequestStack $requestStack
* @param TranslatorInterface $tr
* @param Security $security
*/
public function __construct(
RequestStack $requestStack,
TranslatorInterface $tr,
Security $security
) {
$this->requestStack = $requestStack;
$this->tr = $tr;
$this->security = $security;
}
/**
* @return string[]
*/
public static function getSubscribedEvents(): array
{
return [
ConfigureMenuEvent::NAME => 'onLoad'
];
}
/**
* @param ConfigureMenuEvent $event
* @return void
*/
public function onLoad(ConfigureMenuEvent $event): void
{
if (!$this->security->isGranted('ROLE__SITES__READ_ONLY')) {
return;
}
$menu = $event->getMenu();
$currentPath = $this->requestStack->getCurrentRequest()->getPathInfo();
$currentRoute = $this->requestStack->getCurrentRequest()->attributes->get('_route');
$parentName = $this->tr->trans('Sites', [], 'SitesBundle');
$menu->addChild('SitesMenu')
->setLabel($parentName)
->setExtra('icon', 'fas fa-link');
$menu['SitesMenu']->addChild(
'sites',
[
'route' => 'sites_bundle__site_list',
'label' => $parentName
]
);
$matchPath = 'bundles/sites-bundle/view';
if ($currentRoute === 'sites_bundle__site_list' || strpos($currentPath, $matchPath) !== false) {
$menu['SitesMenu']->getChild('sites')->setCurrent(true);
}
$matchPath = [
'bundles/sites-bundle/customer'
];
foreach ($matchPath as $match) {
if (strpos($currentPath, $match) !== false) {
$menu->getChild('CustomersMenu')->getChild('customers')->setCurrent(true);
}
}
}
}