<?php
namespace App\Security\Authorization\Voter;
use App\Entity\Module;
use App\Entity\UserGroup;
use App\Entity\UserGroupModule;
use Doctrine\ORM\EntityManagerInterface;
class ModuleVoter implements \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface
{
/**
*
* @var \Doctrine\ORM\EntityManager
*/
protected $em;
protected $modules;
const VIEW = 'view';
const CREATE = 'create';
const EDIT = 'edit';
const EDIT_ALL = 'edit_all';
const SETTINGS = 'settings';
public function __construct(EntityManagerInterface $em)
{
$this->em = $em;
}
public function supportsAttribute($attribute)
{
return in_array($attribute, array(
self::VIEW,
self::CREATE,
self::EDIT,
self::EDIT_ALL,
self::SETTINGS,
));
}
public function supportsClass($module)
{
$supportedModules = array();
if(!$this->modules) {
$this->modules = $this->em->getRepository('App:Module')->findBy(array(
'active' => 1
));
}
/** @var $item Module */
foreach($this->modules as $item) {
$supportedModules[] = $item->getCodeName();
}
if(in_array($module, $supportedModules)) {
return true;
}
return false;
}
public function vote(\Symfony\Component\Security\Core\Authentication\Token\TokenInterface $token, $module, array $attributes)
{
// check if class of this object is supported by this voter
if (!$this->supportsClass($module))
{
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 VIEW');
}
// 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($module) : null;
if (!$groupModule)
{
return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_ABSTAIN;
}
switch ($attribute)
{
case self::VIEW:
// the data object could have for example a method isPrivate()
// which checks the Boolean attribute $private
if ($groupModule->getViewm())
{
return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_GRANTED;
}
break;
case self::CREATE:
// the data object could have for example a method isPrivate()
// which checks the Boolean attribute $private
if ($groupModule->getCreatem())
{
return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_GRANTED;
}
break;
case self::EDIT:
// the data object could have for example a method isPrivate()
// which checks the Boolean attribute $private
if ($groupModule->getEditm() === 1 || $groupModule->getEditm() === 2)
{
return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_GRANTED;
}
break;
case self::EDIT_ALL:
// the data object could have for example a method isPrivate()
// which checks the Boolean attribute $private
if ($groupModule->getEditm() === 2)
{
return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_GRANTED;
}
break;
case self::SETTINGS:
// the data object could have for example a method isPrivate()
// which checks the Boolean attribute $private
if ($groupModule->getEditm() === 2)
{
return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_GRANTED;
}
break;
}
return \Symfony\Component\Security\Core\Authorization\Voter\VoterInterface::ACCESS_DENIED;
}
}