mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-08-03 09:44:41 +02:00
116 lines
No EOL
4.4 KiB
PHP
116 lines
No EOL
4.4 KiB
PHP
<?php
|
|
|
|
namespace App\Security\Voter;
|
|
|
|
use App\Entity\Attachments\CategoryAttachment;
|
|
use App\Entity\Attachments\CurrencyAttachment;
|
|
use App\Entity\Parameters\AbstractParameter;
|
|
use App\Entity\Parameters\AttachmentTypeParameter;
|
|
use App\Entity\Parameters\CategoryParameter;
|
|
use App\Entity\Parameters\CurrencyParameter;
|
|
use App\Entity\Parameters\DeviceParameter;
|
|
use App\Entity\Parameters\FootprintParameter;
|
|
use App\Entity\Parameters\GroupParameter;
|
|
use App\Entity\Parameters\ManufacturerParameter;
|
|
use App\Entity\Parameters\MeasurementUnitParameter;
|
|
use App\Entity\Parameters\PartParameter;
|
|
use App\Entity\Parameters\StorelocationParameter;
|
|
use App\Entity\Parameters\SupplierParameter;
|
|
use App\Entity\PriceInformations\Currency;
|
|
use App\Entity\UserSystem\User;
|
|
use App\Services\PermissionResolver;
|
|
use Doctrine\ORM\EntityManagerInterface;
|
|
use PHPUnit\TextUI\RuntimeException;
|
|
use Symfony\Component\Security\Core\Security;
|
|
|
|
class ParameterVoter extends ExtendedVoter
|
|
{
|
|
|
|
protected Security $security;
|
|
|
|
public function __construct(PermissionResolver $resolver, EntityManagerInterface $entityManager, Security $security)
|
|
{
|
|
$this->security = $security;
|
|
parent::__construct($resolver, $entityManager);
|
|
}
|
|
|
|
protected function voteOnUser(string $attribute, $subject, User $user): bool
|
|
{
|
|
//return $this->resolver->inherit($user, 'attachments', $attribute) ?? false;
|
|
|
|
if (!$subject instanceof AbstractParameter) {
|
|
return false;
|
|
}
|
|
|
|
//If the attachment has no element (which should not happen), we deny access, as we can not determine if the user is allowed to access the associated element
|
|
$target_element = $subject->getElement();
|
|
if ($target_element !== null) {
|
|
//Depending on the operation delegate either to the attachments element or to the attachment permission
|
|
|
|
|
|
switch ($attribute) {
|
|
//We can view the attachment if we can view the element
|
|
case 'read':
|
|
case 'view':
|
|
$operation = 'read';
|
|
break;
|
|
//We can edit/create/delete the attachment if we can edit the element
|
|
case 'edit':
|
|
case 'create':
|
|
case 'delete':
|
|
$operation = 'edit';
|
|
break;
|
|
case 'show_history':
|
|
$operation = 'show_history';
|
|
break;
|
|
case 'revert_element':
|
|
$operation = 'revert_element';
|
|
break;
|
|
default:
|
|
throw new RuntimeException('Unknown operation: '.$attribute);
|
|
}
|
|
|
|
return $this->security->isGranted($operation, $target_element);
|
|
}
|
|
|
|
//If we do not have a concrete element, we delegate to the different categories
|
|
if ($subject instanceof AttachmentTypeParameter) {
|
|
$param = 'attachment_types';
|
|
} elseif ($subject instanceof CategoryParameter) {
|
|
$param = 'categories';
|
|
} elseif ($subject instanceof CurrencyParameter) {
|
|
$param = 'currencies';
|
|
} elseif ($subject instanceof DeviceParameter) {
|
|
$param = 'devices';
|
|
} elseif ($subject instanceof FootprintParameter) {
|
|
$param = 'footprints';
|
|
} elseif ($subject instanceof GroupParameter) {
|
|
$param = 'groups';
|
|
} elseif ($subject instanceof ManufacturerParameter) {
|
|
$param = 'manufacturers';
|
|
} elseif ($subject instanceof MeasurementUnitParameter) {
|
|
$param = 'measurement_units';
|
|
} elseif ($subject instanceof PartParameter) {
|
|
$param = 'parts';
|
|
} elseif ($subject instanceof StorelocationParameter) {
|
|
$param = 'storelocations';
|
|
} elseif ($subject instanceof SupplierParameter) {
|
|
$param = 'suppliers';
|
|
} else {
|
|
throw new RuntimeException('Encountered unknown Parameter type: ' . get_class($subject));
|
|
}
|
|
|
|
return $this->resolver->inherit($user, $param, $attribute) ?? false;
|
|
}
|
|
|
|
protected function supports(string $attribute, $subject)
|
|
{
|
|
if (is_a($subject, AbstractParameter::class, true)) {
|
|
//These are the allowed attributes
|
|
return in_array($attribute, ['read', 'edit', 'delete', 'create', 'show_history', 'revert_element'], true);
|
|
}
|
|
|
|
//Allow class name as subject
|
|
return false;
|
|
}
|
|
} |