<?php
namespace App\Infrastructure\Security\Voter;
use App\Database\Domain\Entity\Sessions\ToastSession;
use App\Database\Domain\Entity\User\User;
use App\Database\Domain\Repository\CollaboratedSessionRepository;
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
use Symfony\Component\Security\Core\Authorization\Voter\Voter;
class ToastSessionVoter extends Voter
{
public const ACCESS_BY_ROLE = 'toast_session.access_by_role';
public const ACCESS = 'toast_session.access';
public const ACCESS_WITH_COLLABORATORS = 'toast_session.access_with_collaborators';
public const ACCESS_BY_IDS = 'toast_session.access_by_ids';
private CollaboratedSessionRepository $collaboratedSessionRepository;
public function __construct(CollaboratedSessionRepository $collaboratedSessionRepository)
{
$this->collaboratedSessionRepository = $collaboratedSessionRepository;
}
protected function supports(string $attribute, $subject): bool
{
return in_array($attribute, [self::ACCESS, self::ACCESS_BY_IDS, self::ACCESS_WITH_COLLABORATORS, self::ACCESS_BY_ROLE]);
}
/**
* @param ToastSession $subject
*/
protected function voteOnAttribute(string $attribute, $subject, TokenInterface $token): bool
{
/** @var User $user */
$user = $token->getUser();
if (!$user instanceof User) {
return false;
}
if ($attribute === self::ACCESS_BY_ROLE) {
return $user->isFullUser() || $user->isPartialUser();
}
if ($attribute === self::ACCESS) {
return $user->getId() === $subject->getUser()->getId();
}
if ($attribute === self::ACCESS_WITH_COLLABORATORS) {
$collaboratedSession = $this->collaboratedSessionRepository->findBy(['session' => $subject, 'collaboratedUser' => $user]);
if (count($collaboratedSession)) {
return true;
}
return $user->getId() === $subject->getUser()->getId();
}
if ($attribute === self::ACCESS_BY_IDS) {
foreach ($subject as $uuid) {
if (!in_array($uuid, $user->getSessions()->toArray())) { // Checking if all sessions belong to the user
$collaboratedSession = $this->collaboratedSessionRepository->findBy(['session' => $subject, 'collaboratedUser' => $user]);
if (null !== $collaboratedSession) {
continue;
}
return false;
}
}
return true;
}
return false;
}
}