<?php
namespace App\Security\Voter;
use App\Entity\User;
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
use Symfony\Component\Security\Core\Authorization\Voter\Voter;
use Symfony\Component\Security\Core\User\UserInterface;
class PersonVoter extends Voter
{
protected function supports($attribute, $subject)
{
// replace with your own logic
// https://symfony.com/doc/current/security/voters.html
return in_array($attribute, ['FROM_WLPGA'])
&& $subject instanceof User;
}
protected function voteOnAttribute($attribute, $subject, TokenInterface $token)
{
$user = $token->getUser();
// if the user is anonymous, do not grant access
if (!$user instanceof UserInterface) {
return false;
}
// ... (check conditions and return true to grant permission) ...
switch ($attribute) {
case 'FROM_WLPGA':
return $this->checkFromWlpga($subject);
}
return false;
}
/**
* @param User $user
* @return bool
*/
private function checkFromWlpga(User $user) : bool
{
if(in_array(User::ROLE_PREVIOUS_ADMIN, $user->getRoles(), TRUE)) {
return true;
}
return false;
}
}