*/ namespace Lc\CaracoleBundle\Resolver; use Doctrine\ORM\EntityManagerInterface; use Lc\CaracoleBundle\Model\Section\SectionInterface; use Lc\CaracoleBundle\Repository\Section\SectionRepository; use Lc\CaracoleBundle\Repository\Section\SectionStore; use Lc\SovBundle\Resolver\UrlResolver; use Symfony\Component\HttpFoundation\RequestStack; use Symfony\Component\Security\Core\Security; class SectionResolver { protected EntityManagerInterface $entityManager; protected MerchantResolver $merchantResolver; protected SectionStore $sectionStore; protected RequestStack $requestStack; public function __construct(EntityManagerInterface $entityManager, MerchantResolver $merchantResolver, SectionStore $sectionStore, RequestStack $requestStack) { $this->entityManager = $entityManager; $this->merchantResolver = $merchantResolver; $this->sectionStore = $sectionStore; $this->requestStack = $requestStack; } public function getCurrent() { $requestAttributesArray = $this->requestStack->getMainRequest()->attributes->all(); // admin if(isset($requestAttributesArray['easyadmin_context'])) { $currentAdminSection = null; $userMerchant = $this->merchantResolver->getUserMerchant(); if ($userMerchant !== null) { $currentAdminSection = $userMerchant->getCurrentAdminSection(); } if ($currentAdminSection === null) { $currentAdminSection = $this->sectionStore ->setMerchant($userMerchant->getMerchant()) ->getOneDefault(); if ($currentAdminSection === null) { throw new \ErrorException('Aucune section par défaut définie pour ce merchant'); } } return $currentAdminSection; } // front else { return $this->sectionStore ->setMerchant($this->merchantResolver->getCurrent()) ->getOneDefault(); } } }