src/Security/AdminVoter.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Security;
  3. use App\Entity\User;
  4. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  5. use Symfony\Component\Security\Core\Authorization\Voter\Voter;
  6. class AdminVoter extends Voter
  7. {
  8.     const GET_SOGEC_ADMIN 'GET_SOGEC_ADMIN';
  9.     protected function supports($attribute$user)
  10.     {
  11.         return $user instanceof User && $attribute === self::GET_SOGEC_ADMIN;
  12.     }
  13.     protected function voteOnAttribute($attribute$subjectTokenInterface $token)
  14.     {
  15.         switch ($attribute) {
  16.             case self::GET_SOGEC_ADMIN:
  17.                 return $this->checkSogecAdmin($subject);
  18.         }
  19.         return false;
  20.     }
  21.     private function checkSogecAdmin(User $user )
  22.     {
  23.         return $user->hasRole('ROLE_SUPER_ADMIN');
  24.     }
  25. }