src/Security/Voter/FormLeadDataVoter.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Security\Voter;
  3. use App\Entity\FormLeadData;
  4. use App\Entity\User;
  5. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  6. use Symfony\Component\Security\Core\Authorization\Voter\Voter;
  7. use Symfony\Component\Security\Core\Security;
  8. class FormLeadDataVoter extends Voter
  9. {
  10.     public const EDIT_BY_ADMIN 'EDIT_BY_ADMIN';
  11.     /** @var Security $security */
  12.     private $security;
  13.     /**
  14.      * @param Security $security
  15.      */
  16.     public function __construct(Security $security)
  17.     {
  18.         $this->security $security;
  19.     }
  20.     /**
  21.      * @param string $attribute
  22.      * @param $subject
  23.      * @return bool
  24.      */
  25.     protected function supports(string $attribute$subject): bool
  26.     {
  27.         return in_array($attribute, [self::EDIT_BY_ADMIN]) && ($subject instanceof FormLeadData);
  28.     }
  29.     /**
  30.      * @param string $attribute
  31.      * @param $subject
  32.      * @param TokenInterface $token
  33.      * @return bool
  34.      */
  35.     protected function voteOnAttribute(string $attribute$subjectTokenInterface $token): bool
  36.     {
  37.         $user $token->getUser();
  38.         if (!$user instanceof User) {
  39.             return false;
  40.         }
  41.         if ($this->security->isGranted('ROLE_SUPERADMIN')) {
  42.             return true;
  43.         }
  44.         switch ($attribute) {
  45.             case self::EDIT_BY_ADMIN:
  46.                 return $this->editByAdmin($user$subject);
  47.         }
  48.         return false;
  49.     }
  50.     /**
  51.      * @param User $user
  52.      * @param FormLeadData $leadData
  53.      * @return bool
  54.      */
  55.     private function editByAdmin(User $userFormLeadData $leadData): bool
  56.     {
  57.         return $user->getCompanies()->contains($leadData->getFormLead()->getCampaign()->getCompany());
  58.     }
  59. }