mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-07-03 07:26:12 +00:00
fix deprecations: implement abstract function for reportVoter
This commit is contained in:
parent
1b4bb4f7bc
commit
eeff93c88a
@ -19,12 +19,17 @@
|
|||||||
|
|
||||||
namespace Chill\ReportBundle\Security\Authorization;
|
namespace Chill\ReportBundle\Security\Authorization;
|
||||||
|
|
||||||
|
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
|
||||||
|
|
||||||
use Chill\MainBundle\Security\Authorization\AbstractChillVoter;
|
use Chill\MainBundle\Security\Authorization\AbstractChillVoter;
|
||||||
use Chill\MainBundle\Security\Authorization\AuthorizationHelper;
|
use Chill\MainBundle\Security\Authorization\AuthorizationHelper;
|
||||||
use Chill\MainBundle\Security\ProvideRoleHierarchyInterface;
|
use Chill\MainBundle\Security\ProvideRoleHierarchyInterface;
|
||||||
|
use Chill\ReportBundle\Entity\Report;
|
||||||
|
use Chill\MainBundle\Entity\User;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
* @author Julien Fastré <julien.fastre@champs-libres.coop>
|
* @author Julien Fastré <julien.fastre@champs-libres.coop>
|
||||||
*/
|
*/
|
||||||
@ -33,38 +38,41 @@ class ReportVoter extends AbstractChillVoter implements ProvideRoleHierarchyInte
|
|||||||
const CREATE = 'CHILL_REPORT_CREATE';
|
const CREATE = 'CHILL_REPORT_CREATE';
|
||||||
const SEE = 'CHILL_REPORT_SEE';
|
const SEE = 'CHILL_REPORT_SEE';
|
||||||
const UPDATE = 'CHILL_REPORT_UPDATE';
|
const UPDATE = 'CHILL_REPORT_UPDATE';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @var AuthorizationHelper
|
* @var AuthorizationHelper
|
||||||
*/
|
*/
|
||||||
protected $helper;
|
protected $helper;
|
||||||
|
|
||||||
|
|
||||||
public function __construct(AuthorizationHelper $helper)
|
public function __construct(AuthorizationHelper $helper)
|
||||||
{
|
{
|
||||||
$this->helper = $helper;
|
$this->helper = $helper;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function getSupportedAttributes()
|
|
||||||
{
|
|
||||||
return array(self::CREATE, self::SEE, self::UPDATE);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function getSupportedClasses()
|
|
||||||
{
|
|
||||||
return array('Chill\ReportBundle\Entity\Report');
|
|
||||||
}
|
|
||||||
|
|
||||||
protected function isGranted($attribute, $report, $user = null)
|
protected function supports($attribute, $subject)
|
||||||
{
|
{
|
||||||
if (! $user instanceof \Chill\MainBundle\Entity\User){
|
if ($subject instanceof Report) {
|
||||||
|
return \in_array($attribute, [
|
||||||
|
self::CREATE, self::UPDATE, self::SEE
|
||||||
|
]);
|
||||||
|
} else {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
return $this->helper->userHasAccess($user, $report, $attribute);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
protected function voteOnAttribute($attribute, $subject, TokenInterface $token)
|
||||||
|
{
|
||||||
|
if (!$token->getUser() instanceof User) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return $this->helper->userHasAccess($token->getUser(), $subject, $attribute);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
public function getRoles()
|
public function getRoles()
|
||||||
{
|
{
|
||||||
return $this->getSupportedAttributes();
|
return $this->getSupportedAttributes();
|
||||||
@ -74,7 +82,7 @@ class ReportVoter extends AbstractChillVoter implements ProvideRoleHierarchyInte
|
|||||||
{
|
{
|
||||||
return array();
|
return array();
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getRolesWithHierarchy()
|
public function getRolesWithHierarchy()
|
||||||
{
|
{
|
||||||
return [ 'Report' => $this->getRoles() ];
|
return [ 'Report' => $this->getRoles() ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user