<?php
namespace App\Security\Authorization\Voter;
use App\Entity\UserGroupModule;
use Doctrine\ORM\EntityManagerInterface;
class EmployeeVoter implements \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface
{
/**
*
* @var \Doctrine\ORM\EntityManager
*/
protected $em;
const EDIT = 'edit';
public function __construct(EntityManagerInterface $em)
{
$this->em = $em;
}
public function supportsAttribute($attribute)
{
return in_array($attribute, array(
self::EDIT,
));
}
public function supportsClass($class)
{
$supportedClass = 'FOS\UserBundle\Model\User';
return is_object($class) && ($supportedClass === get_class($class) || is_subclass_of($class, $supportedClass));
}
public function vote(\Symfony\Component\Security\Core\Authentication\Token\TokenInterface $token, $userToEdit, array $attributes)
{
// check if class of this object is supported by this voter
if (!$this->supportsClass($userToEdit))
{
return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_ABSTAIN;
}
// check if the voter is used correct, only allow one attribute
// this isn't a requirement, it's just one easy way for you to
// design your voter
if (1 !== count($attributes))
{
throw new \InvalidArgumentException('Only one attribute is allowed for EDIT');
}
// set the attribute to check against
$attribute = $attributes[0];
// check if the given attribute is covered by this voter
if (!$this->supportsAttribute($attribute))
{
return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_ABSTAIN;
}
// get current logged in user
$user = $token->getUser();
// make sure there is a user object (i.e. that the user is logged in)
if (!$user instanceof \Symfony\Component\Security\Core\User\UserInterface)
{
return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_DENIED;
}
/** @var $groupModule UserGroupModule */
$groupModule = $user->getUserGroup() ? $user->getUserGroup()->getGroupModuleByName('employees') : null;
if (!$groupModule)
{
return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_ABSTAIN;
}
switch ($attribute)
{
case self::EDIT:
// the data object could have for example a method isPrivate()
// which checks the Boolean attribute $private
if ($groupModule->getEditm() === 0)
{
return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_DENIED;
}
elseif ($groupModule->getEditm() === 1 && ($user->getId() === $userToEdit->getId() || ($userToEdit->getCreatedBy() && $user->getId() == $userToEdit->getCreatedBy()->getId())))
{
return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_GRANTED;
}
elseif ($groupModule->getEditm() === 2)
{
return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_GRANTED;
}
break;
}
return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_DENIED;
}
}