<?php
namespace App\EventSubscriber;
use App\Entity\Usuario;
use App\Model\UserModel;
use KevinPapst\AdminLTEBundle\Event\NavbarUserEvent;
use KevinPapst\AdminLTEBundle\Event\ShowUserEvent;
use KevinPapst\AdminLTEBundle\Event\SidebarUserEvent;
use KevinPapst\AdminLTEBundle\Event\ThemeEvents;
use KevinPapst\AdminLTEBundle\Model\NavBarUserLink;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
use Symfony\Component\Security\Core\Security;
class NavbarUserSubscriber implements EventSubscriberInterface
{
protected Security $security;
public function __construct(Security $security)
{
$this->security = $security;
}
/**
* Returns an array of event names this subscriber wants to listen to.
*
* The array keys are event names and the value can be:
*
* * The method name to call (priority defaults to 0)
* * An array composed of the method name to call and the priority
* * An array of arrays composed of the method names to call and respective
* priorities, or 0 if unset
*
* For instance:
*
* * ['eventName' => 'methodName']
* * ['eventName' => ['methodName', $priority]]
* * ['eventName' => [['methodName1', $priority], ['methodName2']]]
*
* @return array The event names to listen to
*/
public static function getSubscribedEvents(): array
{
return [
NavbarUserEvent::class => ['onShowUser', 100],
SidebarUserEvent::class => ['onShowUser', 100],
];
}
public function onShowUser(ShowUserEvent $event)
{
if (null === $this->security->getUser()) {
return;
}
/* @var $myUser Usuario */
$myUser = $this->security->getUser();
$user = new UserModel();
$user
->setId($myUser->getId())
->setName($myUser->getNome())
->setUsername($myUser->getUsername())
->setIsOnline(true)
->setTitle($myUser->getTipo())
->setAvatar(null)
->setMemberSince($myUser->getCreatedAt());
$event->setUser($user);
$event->addLink(new NavBarUserLink("Alterar senha", "change_pass"));
if ($this->security->isGranted('IS_IMPERSONATOR')) {
$event->addLink(new NavBarUserLink("Fechar Avatar", "admin", ['avatar' => '_exit']));
}
$event->setShowProfileLink(false);
}
}