mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 21:57:16 +02:00
In between commit implementing security layer
This commit is contained in:
@@ -0,0 +1,72 @@
|
||||
<?php
|
||||
|
||||
namespace App\Structur\Facade\Security\Source;
|
||||
|
||||
use App\Entity\NodeInterface;
|
||||
use App\Entity\SourceInterface;
|
||||
use App\Entity\User;
|
||||
use App\DBAL\Types\RightType;
|
||||
use App\DBAL\Types\LayerType;
|
||||
use App\Structur\Facade\Security\Source\interfaces\SourceFacadeInterface;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
abstract class AbstractSourceFacade implements SourceFacadeInterface
|
||||
{
|
||||
/**
|
||||
* @var User
|
||||
*/
|
||||
protected static $user;
|
||||
|
||||
/**
|
||||
* @var SourceInterface
|
||||
*/
|
||||
protected $source;
|
||||
|
||||
public static function setUser(User $user): void
|
||||
{
|
||||
self::$user = $user;
|
||||
}
|
||||
|
||||
public function __construct(SourceInterface $source)
|
||||
{
|
||||
$this->source = $source;
|
||||
}
|
||||
|
||||
public function setId(int $id): void
|
||||
{
|
||||
throw \Exception("The id can't be changed!");
|
||||
}
|
||||
|
||||
public function setNode(NodeInterface $node): void
|
||||
{
|
||||
throw \Exception("The node can't be changed!");
|
||||
}
|
||||
|
||||
public function getId(): int
|
||||
{
|
||||
if ($this->isGranted(RightType::READ)) {
|
||||
return $source->getId();
|
||||
}
|
||||
}
|
||||
|
||||
public function getNode(): NodeInterface
|
||||
{
|
||||
if ($this->isGranted(RightType::READ, LayerType::NODE)) {
|
||||
return $source->getNode();
|
||||
}
|
||||
}
|
||||
|
||||
protected function isGranted(string $right, string $layer): bool
|
||||
{
|
||||
return $this->getNode()
|
||||
->getLaw()
|
||||
->isGranted(self::$user->getSource()
|
||||
->getNode(), self::$layer, $right);
|
||||
}
|
||||
|
||||
protected function lazyLoadSourceFacade(SourceInterface $source)
|
||||
{
|
||||
}
|
||||
}
|
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
|
||||
namespace App\Structur\Facade\Security\Source;
|
||||
|
||||
use App\Entity\NameSourceInterface;
|
||||
use App\Entity\User;
|
||||
use App\Entity\UserSourceInterface;
|
||||
use App\DBAL\Types\RightType;
|
||||
use App\DBAL\Types\LayerType;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
class UserSourceFacade extends AbstractSourceFacade implements UserSourceInterface
|
||||
{
|
||||
/**
|
||||
* @var UserSourceInterface
|
||||
*/
|
||||
protected $source;
|
||||
|
||||
public function setNameSource(NameSourceInterface $nameSource): void
|
||||
{
|
||||
throw new \Exception('The name source cant be changed!');
|
||||
}
|
||||
|
||||
public function getNameSource(): NameSourceInterface
|
||||
{
|
||||
if ($this->isNameSourceGranted(RightType::READ, LayerType::SOURCE)) {
|
||||
//FILL! :)
|
||||
}
|
||||
}
|
||||
|
||||
private function isNameSourceGranted(string $right, string $layer): bool
|
||||
{
|
||||
$nameSource = $this->source->getNameSource();
|
||||
$law = $nameSource->getNode()->getLaw();
|
||||
$userSourceNode = $this->source->getNode();
|
||||
|
||||
return $this->isGranted($right, $layer) && $law->isGranted($userSourceNode, $layer, $right);
|
||||
}
|
||||
|
||||
public function getUser(): User
|
||||
{
|
||||
}
|
||||
}
|
@@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Structur\Facade\Security\Source\interfaces;
|
||||
|
||||
use App\Entity\SourceInterface;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
interface SourceFacadeInterface extends SourceInterface
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user