src/User/Voter/DeleteUserVoter.php line 12

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Harmonizely\User\Voter;
  4. use Harmonizely\Model\User;
  5. use Harmonizely\Model\UserInterface;
  6. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  7. use Symfony\Component\Security\Core\Authorization\Voter\Voter;
  8. final class DeleteUserVoter extends Voter
  9. {
  10.     public const DELETE_USER 'delete_user';
  11.     protected function supports($attribute$subject): bool
  12.     {
  13.         if (self::DELETE_USER !== $attribute) {
  14.             return false;
  15.         }
  16.         if (false === $subject instanceof UserInterface) {
  17.             return false;
  18.         }
  19.         return true;
  20.     }
  21.     protected function voteOnAttribute($attribute$subjectTokenInterface $token): bool
  22.     {
  23.         /** @var User $subject */
  24.         /** @var UserInterface $loggedInUser */
  25.         $loggedInUser $token->getUser();
  26.         return $loggedInUser->getId() === $subject->getId() && !$loggedInUser->isOnlySsoUser();
  27.     }
  28. }