<?php
namespace App\Security\Voter\Purchase;
use App\Entity\Purchase\PurchaseRequest;
use App\Entity\Security\User;
use Symfony\Component\HttpFoundation\Session\SessionInterface;
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
use Symfony\Component\Security\Core\Authorization\Voter\Voter;
use Symfony\Component\Security\Core\User\UserInterface;
class PurchaseQuotationVoter extends Voter
{
private $session;
public function __construct(SessionInterface $session)
{
$this->session = $session;
}
protected function supports($attribute, $subject)
{
// replace with your own logic
// https://symfony.com/doc/current/security/voters.html
if (!in_array($attribute, [
'ROLE_PURCHASE_QUOTATION_CREATE',
'ROLE_PURCHASE_QUOTATION_VIEW',
'ROLE_PURCHASE_QUOTATION_EDIT',
'ROLE_PURCHASE_QUOTATION_DELETE',
'ROLE_PURCHASE_QUOTATION_ENABLE',
'ROLE_PURCHASE_QUOTATION_DISABLE',
'ROLE_PURCHASE_QUOTATION_ARCHIVE',
'ROLE_PURCHASE_QUOTATION_NOT_ARCHIVE',
'ROLE_PURCHASE_QUOTATION_ATTACHMENT',
'ROLE_PURCHASE_QUOTATION_ORDER'
])) {
return false;
}
// only vote on `Activity` objects
if (!$subject instanceof PurchaseRequest) {
return false;
}
return true;
}
protected function voteOnAttribute($attribute, $subject, TokenInterface $token)
{
$user = $token->getUser();
// if the user is anonymous, do not grant access
if (!$user instanceof UserInterface) {
return false;
}
// ... (check conditions and return true to grant permission) ...
switch ($attribute) {
case 'ROLE_PURCHASE_QUOTATION_CREATE':
return $this->canCreate();
break;
case 'ROLE_PURCHASE_QUOTATION_VIEW':
return $this->canView();
break;
case 'ROLE_PURCHASE_QUOTATION_EDIT':
return $this->canEdit($subject, $user);
break;
case 'ROLE_PURCHASE_QUOTATION_DELETE':
return $this->canDelete($subject, $user);
break;
case 'ROLE_PURCHASE_QUOTATION_ENABLE':
return $this->canEnable($subject, $user);
break;
case 'ROLE_PURCHASE_QUOTATION_DISABLE':
return $this->canDisable($subject, $user);
break;
case 'ROLE_PURCHASE_QUOTATION_ARCHIVE':
return $this->canArchive($subject, $user);
break;
case 'ROLE_PURCHASE_QUOTATION_NOT_ARCHIVE':
return $this->canNotArchive($subject, $user);
break;
case 'ROLE_PURCHASE_QUOTATION_ATTACHMENT':
return $this->canAttachFile($subject, $user);
break;
case 'ROLE_PURCHASE_QUOTATION_ORDER':
return $this->canOrder($subject, $user);
break;
}
return false;
}
private function canCreate()
{
if (in_array('ROLE_PURCHASE_QUOTATION_CREATE', $this->session->get('privileges'))) {
return true;
}
return false;
}
private function canView()
{
if (in_array('ROLE_PURCHASE_QUOTATION_VIEW', $this->session->get('privileges'))) {
return true;
}
return false;
}
private function canEdit(PurchaseRequest $purchaseQuotation, User $user)
{
if (in_array('ROLE_PURCHASE_QUOTATION_EDIT', $this->session->get('privileges'))) {
return true;
}
return false;
}
private function canDelete(PurchaseRequest $purchaseQuotation, User $user)
{
if (in_array('ROLE_PURCHASE_QUOTATION_DELETE', $this->session->get('privileges'))) {
return true;
}
return false;
}
private function canDisable(PurchaseRequest $purchaseQuotation, User $user)
{
if (in_array('ROLE_PURCHASE_QUOTATION_DISABLE', $this->session->get('privileges'))) {
return true;
}
return false;
}
private function canArchive(PurchaseRequest $purchaseQuotation, User $user)
{
if (in_array('ROLE_PURCHASE_QUOTATION_ARCHIVE', $this->session->get('privileges'))) {
return true;
}
return false;
}
private function canNotArchive(PurchaseRequest $purchaseQuotation, User $user)
{
if (in_array('ROLE_PURCHASE_QUOTATION_NOT_ARCHIVE', $this->session->get('privileges'))) {
return true;
}
return false;
}
private function canOrder(PurchaseRequest $purchaseQuotation, User $user)
{
if (in_array('ROLE_PURCHASE_QUOTATION_ORDER', $this->session->get('privileges'))) {
return true;
}
return false;
}
private function canEnable(PurchaseRequest $purchaseQuotation, User $user)
{
if (in_array('ROLE_PURCHASE_QUOTATION_ENABLE', $this->session->get('privileges'))) {
return true;
}
return false;
}
private function canAttachFile(PurchaseRequest $purchaseQuotation, User $user)
{
if (in_array('ROLE_PURCHASE_QUOTATION_ORDER', $this->session->get('privileges'))) {
return true;
}
return false;
}
}