vendor/easycorp/easyadmin-bundle/src/Security/SecurityVoter.php line 18

Open in your IDE?
  1. <?php
  2. namespace EasyCorp\Bundle\EasyAdminBundle\Security;
  3. use EasyCorp\Bundle\EasyAdminBundle\Dto\ActionDto;
  4. use EasyCorp\Bundle\EasyAdminBundle\Dto\CrudDto;
  5. use EasyCorp\Bundle\EasyAdminBundle\Dto\EntityDto;
  6. use EasyCorp\Bundle\EasyAdminBundle\Dto\FieldDto;
  7. use EasyCorp\Bundle\EasyAdminBundle\Dto\MenuItemDto;
  8. use EasyCorp\Bundle\EasyAdminBundle\Provider\AdminContextProvider;
  9. use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
  10. use Symfony\Component\Security\Core\Authorization\AuthorizationCheckerInterface;
  11. use Symfony\Component\Security\Core\Authorization\Voter\Voter;
  12. /*
  13.  * @author Javier Eguiluz <javier.eguiluz@gmail.com>
  14.  */
  15. final class SecurityVoter extends Voter
  16. {
  17.     private AuthorizationCheckerInterface $authorizationChecker;
  18.     private AdminContextProvider $adminContextProvider;
  19.     public function __construct(AuthorizationCheckerInterface $authorizationCheckerAdminContextProvider $adminContextProvider)
  20.     {
  21.         $this->authorizationChecker $authorizationChecker;
  22.         $this->adminContextProvider $adminContextProvider;
  23.     }
  24.     protected function supports(string $permissionNamemixed $subject): bool
  25.     {
  26.         return $this->supportsAttribute($permissionName);
  27.     }
  28.     public function supportsAttribute(string $permissionName): bool
  29.     {
  30.         return Permission::exists($permissionName);
  31.     }
  32.     protected function voteOnAttribute($permissionName$subjectTokenInterface $token): bool
  33.     {
  34.         if (Permission::EA_VIEW_MENU_ITEM === $permissionName) {
  35.             return $this->voteOnViewMenuItemPermission($subject);
  36.         }
  37.         if (Permission::EA_EXECUTE_ACTION === $permissionName) {
  38.             return $this->voteOnExecuteActionPermission($this->adminContextProvider->getContext()->getCrud(), $subject['action'] ?? null$subject['entity'] ?? null);
  39.         }
  40.         if (Permission::EA_VIEW_FIELD === $permissionName) {
  41.             return $this->voteOnViewPropertyPermission($subject);
  42.         }
  43.         if (Permission::EA_ACCESS_ENTITY === $permissionName) {
  44.             return $this->voteOnViewEntityPermission($subject);
  45.         }
  46.         if (Permission::EA_EXIT_IMPERSONATION === $permissionName) {
  47.             return $this->voteOnExitImpersonationPermission();
  48.         }
  49.         return true;
  50.     }
  51.     private function voteOnViewMenuItemPermission(MenuItemDto $menuItemDto): bool
  52.     {
  53.         // users can see the menu item if they have the permission required by the menu item
  54.         return $this->authorizationChecker->isGranted($menuItemDto->getPermission(), $menuItemDto);
  55.     }
  56.     private function voteOnExecuteActionPermission(CrudDto $crudDtoActionDto|string $actionNameOrDto, ?EntityDto $entityDto): bool
  57.     {
  58.         // users can run the Crud action if:
  59.         // * they have the required permission to execute the action on the given entity instance
  60.         // * the action is not disabled
  61.         $actionName \is_string($actionNameOrDto) ? $actionNameOrDto $actionNameOrDto->getName();
  62.         $actionPermission $crudDto->getActionsConfig()->getActionPermissions()[$actionName] ?? null;
  63.         $disabledActionNames $crudDto->getActionsConfig()->getDisabledActions();
  64.         $subject null === $entityDto null $entityDto->getInstance();
  65.         return $this->authorizationChecker->isGranted($actionPermission$subject) && !\in_array($actionName$disabledActionNamestrue);
  66.     }
  67.     private function voteOnViewPropertyPermission(FieldDto $field): bool
  68.     {
  69.         // users can see the field if they have the permission required by the field
  70.         return $this->authorizationChecker->isGranted($field->getPermission(), $field);
  71.     }
  72.     private function voteOnViewEntityPermission(EntityDto $entityDto): bool
  73.     {
  74.         // users can see the entity if they have the required permission on the specific entity instance
  75.         return $this->authorizationChecker->isGranted($entityDto->getPermission(), $entityDto->getInstance());
  76.     }
  77.     private function voteOnExitImpersonationPermission(): bool
  78.     {
  79.         // users can exit impersonation if they are currently impersonating another user.
  80.         // In Symfony, that means that current user has the special impersonator permission
  81.         if (\defined('Symfony\Component\Security\Core\Authorization\Voter\AuthenticatedVoter::IS_IMPERSONATOR')) {
  82.             $impersonatorPermission 'IS_IMPERSONATOR';
  83.         } else {
  84.             $impersonatorPermission 'ROLE_PREVIOUS_ADMIN';
  85.         }
  86.         return $this->authorizationChecker->isGranted($impersonatorPermission);
  87.     }
  88. }