2022-11-09 23:33:50 +01:00
< ? php
2022-11-29 21:21:26 +01:00
/*
* This file is part of Part - DB ( https :// github . com / Part - DB / Part - DB - symfony ) .
*
* Copyright ( C ) 2019 - 2022 Jan Böhmer ( https :// github . com / jbtronics )
*
* This program is free software : you can redistribute it and / or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation , either version 3 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU Affero General Public License for more details .
*
* You should have received a copy of the GNU Affero General Public License
* along with this program . If not , see < https :// www . gnu . org / licenses />.
*/
2022-11-09 23:33:50 +01:00
namespace App\Security\Voter ;
use App\Entity\Parameters\AbstractParameter ;
use App\Entity\Parameters\AttachmentTypeParameter ;
use App\Entity\Parameters\CategoryParameter ;
use App\Entity\Parameters\CurrencyParameter ;
2022-12-18 20:34:25 +01:00
use App\Entity\Parameters\ProjectParameter ;
2022-11-09 23:33:50 +01:00
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\UserSystem\User ;
2022-11-14 20:15:06 +01:00
use App\Services\UserSystem\PermissionManager ;
2022-11-09 23:33:50 +01:00
use Doctrine\ORM\EntityManagerInterface ;
2022-11-27 16:53:44 +01:00
use RuntimeException ;
2022-11-09 23:33:50 +01:00
use Symfony\Component\Security\Core\Security ;
class ParameterVoter extends ExtendedVoter
{
protected Security $security ;
2022-11-14 20:15:06 +01:00
public function __construct ( PermissionManager $resolver , EntityManagerInterface $entityManager , Security $security )
2022-11-09 23:33:50 +01:00
{
$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
2022-11-13 21:01:40 +01:00
2022-11-09 23:33:50 +01:00
switch ( $attribute ) {
//We can view the attachment if we can view the element
case 'read' :
case 'view' :
2022-11-13 21:01:40 +01:00
$operation = 'read' ;
break ;
2022-11-09 23:33:50 +01:00
//We can edit/create/delete the attachment if we can edit the element
case 'edit' :
case 'create' :
case 'delete' :
2022-11-13 21:01:40 +01:00
$operation = 'edit' ;
break ;
case 'show_history' :
$operation = 'show_history' ;
break ;
case 'revert_element' :
$operation = 'revert_element' ;
break ;
default :
throw new RuntimeException ( 'Unknown operation: ' . $attribute );
2022-11-09 23:33:50 +01:00
}
2022-11-13 21:01:40 +01:00
return $this -> security -> isGranted ( $operation , $target_element );
2022-11-09 23:33:50 +01:00
}
//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' ;
2022-12-18 20:34:25 +01:00
} elseif ( $subject instanceof ProjectParameter ) {
2022-11-09 23:33:50 +01:00
$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
2022-11-13 21:01:40 +01:00
return in_array ( $attribute , [ 'read' , 'edit' , 'delete' , 'create' , 'show_history' , 'revert_element' ], true );
2022-11-09 23:33:50 +01:00
}
//Allow class name as subject
return false ;
}
}