<?php
// src/EventListener/CheckUserEnabledListener.php
namespace App\EventListener;
use Symfony\Component\HttpFoundation\RedirectResponse;
use Symfony\Component\HttpFoundation\RequestStack;
use Symfony\Component\HttpFoundation\Session\SessionInterface;
use Symfony\Component\HttpKernel\Event\RequestEvent;
use Symfony\Component\Routing\RouterInterface;
use Symfony\Component\Security\Core\Security;
class VerifiedUserEventListener
{
private $security;
private $router;
private $session;
private $requestStack;
public function __construct(Security $security, RouterInterface $router, SessionInterface $session, RequestStack $requestStack)
{
$this->security = $security;
$this->router = $router;
$this->session = $session;
$this->requestStack = $requestStack;
}
public function onKernelRequest(RequestEvent $event)
{
$request = $this->requestStack->getCurrentRequest();
$currentRoute = $request->attributes->get('_route');
// Skip if the current route is for user activation or any other you wish to exclude
if (in_array($currentRoute, ['app_user_activation'])) {
return;
}
$user = $this->security->getUser();
// Check if the request has a user and they are not enabled
if ($user && !$user->isEnabled()) {
// Add flash message
$this->session->getFlashBag()->add('warning', 'Your account is not enabled.');
// Redirect to the login page or any other page
$response = new RedirectResponse($this->router->generate('app_user_activation'));
// Set the response to redirect
$event->setResponse($response);
}
}
}