<?php
namespace App\Subscriber;
use App\Entity\User;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\Session\SessionInterface;
use Symfony\Component\HttpKernel\Event\RequestEvent;
use Symfony\Component\HttpKernel\KernelEvents;
use Symfony\Component\Routing\RouterInterface;
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
use Symfony\Contracts\Translation\TranslatorInterface;
class EveryRequestSubscriber implements EventSubscriberInterface
{
private $tokenStorage;
private $router;
private $session;
private $tranlaor;
public function __construct(TokenStorageInterface $tokenStorage, RouterInterface $router, SessionInterface $session, TranslatorInterface $translator)
{
$this->tokenStorage = $tokenStorage;
$this->router = $router;
$this->session = $session;
$this->tranlaor = $translator;
}
public static function getSubscribedEvents()
{
// TODO: Implement getSubscribedEvents() method.
return [
KernelEvents::REQUEST => [
'checkUser'
]
];
}
public function checkUser(RequestEvent $event)
{
if (!$event->isMainRequest())
{
return;
}
if ($this->tokenStorage->getToken())
{
$user = $this->tokenStorage->getToken()->getUser();
if ($user instanceof User)
{
if ($user->getUserStatus()->getId() != 2 || $user->getActive() != 1)
{
$this->tokenStorage->setToken(null);
$route = 'login';
$url = $this->router->generate($route);
$response = new RedirectResponse($url);
$this->session->getFlashBag()->add('error', $this->tranlaor->trans('accountNotActive'));
$event->setResponse($response);
}
}
}
}
}