mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 21:57:16 +02:00
Optimized for SPA
This commit is contained in:
@@ -0,0 +1,86 @@
|
||||
<?php
|
||||
|
||||
namespace App\Domain\SourceManagement;
|
||||
|
||||
use App\Entity\Meta\RightInterface;
|
||||
use App\Entity\Source\SourceInterface;
|
||||
use App\Exception\AllreadySetException;
|
||||
use App\Entity\Source\AbstractSource;
|
||||
use App\Entity\Meta\Law;
|
||||
use App\Exception\AllreadyDefinedException;
|
||||
use App\Exception\NotSetException;
|
||||
use Doctrine\Common\Collections\ArrayCollection;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
final class SourceRightManager implements SourceRightManagerInterface
|
||||
{
|
||||
/**
|
||||
* @var SourceInterface
|
||||
*/
|
||||
private $source;
|
||||
|
||||
/**
|
||||
* @param SourceInterface $source
|
||||
*/
|
||||
public function __construct(SourceInterface $source)
|
||||
{
|
||||
$this->source = $source;
|
||||
}
|
||||
|
||||
/**
|
||||
* @throws AllreadyDefinedException If the attribut is allready defined
|
||||
*/
|
||||
private function checkRightAttributes(RightInterface $right): void
|
||||
{
|
||||
$attributes = ['source', 'law'];
|
||||
foreach ($attributes as $attribut) {
|
||||
try {
|
||||
$right->{'get'.ucfirst($attribut)}();
|
||||
throw new AllreadyDefinedException("The attribut \"$attribut\" is allready defined!");
|
||||
} catch (\Error $error) {
|
||||
//Expected
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return ArrayCollection|RightInterface[]
|
||||
*/
|
||||
private function getRights(): ArrayCollection
|
||||
{
|
||||
return $this->source->getLaw()->getRights();
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Domain\SourceManagement\SourceRightManagerInterface::addRight()
|
||||
*/
|
||||
public function addRight(RightInterface $right): void
|
||||
{
|
||||
if ($this->getRights()->contains($right)) {
|
||||
throw new AllreadySetException('The right was allready added.');
|
||||
}
|
||||
$this->checkRightAttributes($right);
|
||||
$right->setSource($this->source);
|
||||
$right->setLaw($this->source->getLaw());
|
||||
$this->getRights()->add($right);
|
||||
}
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \App\Domain\SourceManagement\SourceRightManagerInterface::removeRight()
|
||||
*/
|
||||
public function removeRight(RightInterface $right): void
|
||||
{
|
||||
$right->setSource(new class() extends AbstractSource {
|
||||
});
|
||||
$right->setLaw(new Law());
|
||||
if (!$this->getRights()->removeElement($right)) {
|
||||
throw new NotSetException('The right to remove is not set.');
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user