src/Security/Voter/ConversationVoter.php line 23

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\Chat\Conversation;
  16. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  17. use Symfony\Component\Security\Core\Authorization\Voter\Voter;
  18. use Symfony\Component\Security\Core\Security;
  19. use Symfony\Component\Security\Core\User\UserInterface;
  20. class ConversationVoter extends Voter
  21. {
  22.     public const EDIT 'POST_EDIT';
  23.     public const VIEW 'CONVERSATION_VIEW';
  24.     public function __construct(private Security $security)
  25.     {
  26.     }
  27.     protected function supports(string $attribute$subject): bool
  28.     {
  29.         // replace with your own logic
  30.         // https://symfony.com/doc/current/security/voters.html
  31.         return in_array($attribute, [self::EDITself::VIEW])
  32.             && $subject instanceof Conversation;
  33.     }
  34.     protected function voteOnAttribute(string $attribute$subjectTokenInterface $token): bool
  35.     {
  36.         $user $token->getUser();
  37.         // if the user is anonymous, do not grant access
  38.         if (!$user instanceof UserInterface) {
  39.             return false;
  40.         }
  41.         // ... (check conditions and return true to grant permission) ...
  42.         switch ($attribute) {
  43.             case self::EDIT:
  44.                 // logic to determine if the user can EDIT
  45.                 // return true or false
  46.                 return true;
  47.                 break;
  48.             case self::VIEW:
  49.                 return $this->canView($user$subject);
  50.                 break;
  51.         }
  52.         return false;
  53.     }
  54.     //check if the user can view the specific conversation
  55.     private function canView($user$subject): bool
  56.     {
  57.         $isGestionnaire =   count($user->getRoles()) > 1;
  58.         if ($isGestionnaire) {
  59.             // for admin , chef , secritary
  60.             foreach ($subject->getParticipations()  as $participation) {
  61.                 if ($participation->getUser()->getId() == $user->getId()) {
  62.                     return true;
  63.                     continue;
  64.                 }
  65.             }
  66.             return false;
  67.         } else {
  68.             // for the client
  69.             return $subject->getProject()->getEnterprise() == $user->getEnterprise();
  70.         }
  71.     }
  72. }