src/CoreBundle/Security/Authorization/Voter/CCalendarEventVoter.php
<?php
declare(strict_types=1);
/* For licensing terms, see /license.txt */
namespace Chamilo\CoreBundle\Security\Authorization\Voter;
use Chamilo\CoreBundle\Entity\User;
use Chamilo\CourseBundle\Entity\CCalendarEvent;
use Symfony\Bundle\SecurityBundle\Security;
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
use Symfony\Component\Security\Core\Authorization\Voter\Voter;
use Symfony\Component\Security\Core\User\UserInterface;
/**
* @extends Voter<'CREATE'|'VIEW'|'EDIT'|'DELETE', CCalendarEvent>
*/
class CCalendarEventVoter extends Voter
{
public const CREATE = 'CREATE';
public const VIEW = 'VIEW';
public const EDIT = 'EDIT';
public const DELETE = 'DELETE';
public function __construct(
private readonly Security $security
) {}
protected function supports(string $attribute, $subject): bool
{
$options = [
self::CREATE,
self::VIEW,
self::EDIT,
self::DELETE,
];
// if the attribute isn't one we support, return false
if (!\in_array($attribute, $options, true)) {
return false;
}
// only vote on Post objects inside this voter
return $subject instanceof CCalendarEvent;
}
protected function voteOnAttribute(string $attribute, $subject, TokenInterface $token): bool
{
/** @var User $user */
$user = $token->getUser();
if (!$user instanceof UserInterface) {
return false;
}
// Admins have access to everything.
if ($this->security->isGranted('ROLE_ADMIN')) {
return true;
}
/** @var CCalendarEvent $event */
$event = $subject;
// @todo check permissions
switch ($attribute) {
case self::CREATE:
return true;
case self::VIEW:
case self::EDIT:
if ($event->getCreator() === $user) {
return true;
}
if ($event->isCollective() && $event->isUserSubscribedToResource($user)) {
return true;
}
// no break
case self::DELETE:
if ($event->getCreator() === $user) {
return true;
}
break;
}
return false;
}
}