src/Security/Voter/ProjectVoter.php line 25

Open in your IDE?
  1. <?php
  2. /*
  3.  * Created on Fri Dec 02 2022
  4.  *
  5.  * DAVID-OLIVIER DESCOMBES
  6.  *
  7.  * @licence
  8.  * You may not sell, sub-license, rent or lease any portion of the Software or Documentation to anyone.
  9.  *
  10.  * Copyright (c) 2022 dodarchitecte.com (https://dodarchitecte.com)
  11.  *
  12.  * Developed by developpeur-informatique.ma (https://www.developpeur-informatique.ma)
  13.  */
  14. namespace App\Security\Voter;
  15. use App\Entity\Project\Project;
  16. use App\Handler\Project\UserAccessProjectHandler;
  17. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  18. use Symfony\Component\Security\Core\Authorization\Voter\Voter;
  19. use Symfony\Component\Security\Core\User\UserInterface;
  20. use Symfony\Component\Security\Core\Security;
  21. class ProjectVoter extends Voter
  22. {
  23.     public const EDIT 'POST_EDIT';
  24.     public const VIEW 'POST_VIEW';
  25.     public function __construct(
  26.         private Security                 $security,
  27.         private UserAccessProjectHandler $userAccessProjectHandler
  28.     )
  29.     {
  30.     }
  31.     protected function supports(string $attribute$subject): bool
  32.     {
  33.         return in_array($attribute, [self::EDITself::VIEW])
  34.             && $subject instanceof Project;
  35.     }
  36.     protected function voteOnAttribute(string $attribute$subjectTokenInterface $token): bool
  37.     {
  38.         $user $token->getUser();
  39.         // if the user is anonymous, do not grant access
  40.         if (!$user instanceof UserInterface) {
  41.             return false;
  42.         }
  43.         // ... (check conditions and return true to grant permission) ...
  44.         switch ($attribute) {
  45.             case self::EDIT:
  46.                 // logic to determine if the user can EDIT
  47.                 // return true or false
  48.                 return true;
  49.                 break;
  50.             case self::VIEW:
  51.                 return
  52.                     $this->canView($user$subject);
  53.                 true;
  54.                 break;
  55.         }
  56.         return false;
  57.     }
  58.     //check if the user can view the specific project
  59.     private function canView($user$subject): bool
  60.     {
  61.         $own = (($user->getEnterprise() ?? null) == ($subject->getEnterprise() ?? null));
  62.         $discarded $subject->isDiscarded();
  63.         $ended $subject->getStatus() == 'Terminé';
  64.         return ($this->userAccessProjectHandler->hasAccessToProject($subject)) || ($own && !$discarded && !$ended);
  65.     }
  66. }