src/EventSubscriber/KernelRequestListener.php line 44

  1. <?php
  2. namespace App\EventSubscriber;
  3. use App\Controller\ReturnImpostazioniServiceController;
  4. use App\Controller\ServiziController;
  5. use Monolog\Logger;
  6. use Symfony\Bundle\FrameworkBundle\Routing\Router;
  7. use Symfony\Component\HttpFoundation\Cookie;
  8. use Symfony\Component\HttpFoundation\RedirectResponse;
  9. use Symfony\Component\HttpFoundation\Session\Session;
  10. use Symfony\Component\HttpKernel\Event\FinishRequestEvent;
  11. use Symfony\Component\HttpKernel\Event\RequestEvent;
  12. use Symfony\Component\HttpKernel\KernelEvents;
  13. use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
  14. use Symfony\Bundle\SecurityBundle\Security;
  15. /**
  16.  * Class KernelRequestListener
  17.  * @package App\EventSubscriber
  18.  */
  19. class KernelRequestListener implements \Symfony\Component\EventDispatcher\EventSubscriberInterface
  20. {
  21.     private ServiziController $servizi;
  22.     private ReturnImpostazioniServiceController $imp;
  23.     private $tokenStorage;
  24.     private $logger;
  25.     private Security $security;
  26.     public function __construct(ServiziController $serviziTokenStorageInterface $tokenStorageLogger $loggerReturnImpostazioniServiceController  $impSecurity $security)
  27.     {
  28.         $this->servizi $servizi;
  29.         $this->security $security;
  30.         $this->logger $logger;
  31.         $this->tokenStorage $tokenStorage;
  32.         $this->imp $imp;
  33.     }
  34.     /**
  35.      * @param FinishRequestEvent $event
  36.      */
  37.     public function onKernelFinishRequest(FinishRequestEvent $event)
  38.     {
  39.         if (!$event->isMainRequest()) {
  40.             return;
  41.         }
  42.         /*
  43.         if (!$token = $this->tokenStorage->getToken()) {
  44.             return ;
  45.         }
  46.         if (!$token->isAuthenticated()) {
  47.             return ;
  48.         }
  49.         if (!$user = $token->getUser()) {
  50.             return ;
  51.         }*/
  52.         if($this->imp->ritornaImpostazioneDaNome('AbilitaRegistroAttivitaUtenti') == '1') {
  53.             $user $this->security->getUser();
  54.             if ($user) {
  55.                 if (in_array('ROLE_ADMIN'$this->security->getUser()->getRoles())) {
  56.                     $this->servizi->ScriviRegistroAttivitaUtente($this->security->getUser(), 'Navigazione''Apertura pagina: ' $event->getRequest()->getUri());
  57.                 }
  58.             }
  59.         }
  60.     }
  61.     /**
  62.      * Returns an array of event names this subscriber wants to listen to.
  63.      *
  64.      * The array keys are event names and the value can be:
  65.      *
  66.      *  * The method name to call (priority defaults to 0)
  67.      *  * An array composed of the method name to call and the priority
  68.      *  * An array of arrays composed of the method names to call and respective
  69.      *    priorities, or 0 if unset
  70.      *
  71.      * For instance:
  72.      *
  73.      *  * ['eventName' => 'methodName']
  74.      *  * ['eventName' => ['methodName', $priority]]
  75.      *  * ['eventName' => [['methodName1', $priority], ['methodName2']]]
  76.      *
  77.      * The code must not depend on runtime state as it will only be called at compile time.
  78.      * All logic depending on runtime state must be put into the individual methods handling the events.
  79.      *
  80.      * @return array The event names to listen to
  81.      */
  82.     public static function getSubscribedEvents()
  83.     {
  84.         return array(
  85.             // must be registered before the default Locale listener
  86.             KernelEvents::FINISH_REQUEST => array(array('onKernelFinishRequest'17)),
  87.         );
  88.     }
  89. }