. */ declare(strict_types=1); namespace App\Security\Voter; use App\Entity\UserSystem\User; use function in_array; class UserVoter extends ExtendedVoter { /** * Determines if the attribute and subject are supported by this voter. * * @param string $attribute An attribute * @param mixed $subject The subject to secure, e.g. an object the user wants to access or any other PHP type * * @return bool True if the attribute and subject are supported, false otherwise */ protected function supports(string $attribute, $subject): bool { if (is_a($subject, User::class, true)) { return in_array($attribute, array_merge( $this->resolver->listOperationsForPermission('users'), $this->resolver->listOperationsForPermission('self')), false ); } return false; } /** * Similar to voteOnAttribute, but checking for the anonymous user is already done. * The current user (or the anonymous user) is passed by $user. * * @param string $attribute */ protected function voteOnUser(string $attribute, $subject, User $user): bool { //Check if the checked user is the user itself if (($subject instanceof User) && $subject->getID() === $user->getID() && $this->resolver->isValidOperation('self', $attribute)) { //Then we also need to check the self permission $tmp = $this->resolver->inherit($user, 'self', $attribute) ?? false; //But if the self value is not allowed then use just the user value: if ($tmp) { return $tmp; } } //Else just check users permission: if ($this->resolver->isValidOperation('users', $attribute)) { return $this->resolver->inherit($user, 'users', $attribute) ?? false; } return false; } }