src/Security/Voter/UsersVoter.php line 15

Open in your IDE?
  1. <?php
  2. declare(strict_types 1);
  3. namespace App\Security\Voter;
  4. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  5. use Symfony\Component\Security\Core\Authorization\Voter\Voter;
  6. use Symfony\Component\Security\Core\User\UserInterface;
  7. use App\Model\Constants\Modules;
  8. use App\Entity\Users;
  9. use App\Security\ACLManager;
  10. class UsersVoter extends Voter {
  11.   private $acl;
  12.   public function __construct(ACLManager $acl) {
  13.     $this->acl $acl;
  14.   }
  15.   protected function supports($attribute$subject) {
  16.     //replace with your own logic
  17.     //https://symfony.com/doc/current/security/voters.html
  18.     return in_array($attribute, ['GET_USER''EDIT_USER''DELETE_USER''GET_USERS']) && $subject instanceof Users;
  19.   }
  20.   protected function voteOnAttribute($attribute$subjectTokenInterface $token) {
  21.     $user $token->getUser();
  22.     //if the user is anonymous, do not grant access
  23.     if (!$user instanceof UserInterface) {
  24.       return false;
  25.     }
  26.     // ... (check conditions and return true to grant permission) ...
  27.     switch ($attribute) {
  28.       case 'GET_USER':
  29.       case 'EDIT_USER':
  30.         //get access from database
  31.         $hasAccess $this->acl->hasAccessToModule($userModules::USERS_MANAGEMENT);
  32.         if ($hasAccess) {
  33.           return true;
  34.         }
  35.         //check request vs logged user
  36.         if ($subject === $user) {
  37.           return true;
  38.         }      
  39.         return false;
  40.       break;
  41.       case 'DELETE_USER':
  42.         //get access from database
  43.         $hasAccess $this->acl->hasAccessToModule($userModules::USERS_MANAGEMENT);
  44.         if ($hasAccess) {
  45.           return true;
  46.         }
  47.         return false;
  48.       break;
  49.     }
  50.     throw new \Exception(sprintf('Unhandled attribute "%s"'$attribute));
  51.   }
  52. }