infinito/application/symfony/src/Domain/RightManagement/RightTransformerService.php
2019-01-27 02:08:11 +01:00

145 lines
3.8 KiB
PHP

<?php
namespace App\Domain\RightManagement;
use App\Domain\RequestManagement\Right\RequestedRight;
use App\Entity\Meta\RightInterface;
use App\Domain\RequestManagement\Right\RequestedRightInterface;
use App\Entity\Meta\Right;
/**
* @author kevinfrantz
*/
final class RightTransformerService implements RightTransformerServiceInterface
{
const SET_PREFIX = 'set';
const GET_PREFIX = 'get';
const HAS_PREFIX = 'has';
/**
* @param string $method
*
* @return string
*/
private function getAttributByMethodName(string $method): string
{
return substr($method, 3);
}
/**
* @param string $name
*
* @return bool
*/
private function isNameSetter(string $name): bool
{
return self::GET_PREFIX === substr($name, 0, 3);
}
/**
* @param RightInterface|RequestedRightInterface $right
*
* @return array|string[]
*/
private function getAllAttributes($right): array
{
$attributes = [];
$reflection = new \ReflectionClass($right);
$methods = $reflection->getMethods(\ReflectionMethod::IS_PUBLIC);
/**
* @var \ReflectionMethod
*/
foreach ($methods as $method) {
$name = $method->getName();
if ($this->isNameSetter($name)) {
$attributes[] = $this->getAttributByMethodName($name);
}
}
return $attributes;
}
/**
* @param RightInterface $right
* @param RequestedRightInterface $requestedRight
*
* @return array
*/
private function getAttributesExistInBoth(RightInterface $right, RequestedRightInterface $requestedRight): array
{
$attributes = [];
$requestedRightAttributes = $this->getAllAttributes($requestedRight);
$rightAttributes = $this->getAllAttributes($right);
foreach ($requestedRightAttributes as $requestedRightAttribut) {
if (in_array($requestedRightAttribut, $rightAttributes)) {
$attributes[] = $requestedRightAttribut;
}
}
return $attributes;
}
/**
* @param string $name
* @param object $object
*
* @return bool
*/
private function hasMethod(string $name, object $object): bool
{
$reflection = new \ReflectionClass($object);
return $reflection->hasMethod($name);
}
/**
* @param string $prefix
* @param string $attribute
*
* @return string
*/
private function createMethod(string $prefix, string $attribute): string
{
return $prefix.ucfirst($attribute);
}
/**
* @param string $attribute
* @param object $object
*/
private function isAttributeGetPossible(string $attribute, object $object)
{
$has = $this->createMethod(self::HAS_PREFIX, $attribute);
if ($this->hasMethod($has, $object)) {
$get = $this->createMethod(self::GET_PREFIX, $attribute);
return $object->{$get}();
}
return true;
}
/**
* {@inheritdoc}
*
* @see \App\Domain\RightManagement\RightTransformerServiceInterface::transform()
*/
public function transform(RequestedRight $requestedRight): RightInterface
{
$right = new Right();
$attributes = $this->getAttributesExistInBoth($right, $requestedRight);
foreach ($attributes as $attribute) {
if ($this->isAttributeGetPossible($attribute, $requestedRight)) {
$get = $this->createMethod(self::GET_PREFIX, $attribute);
$set = $this->createMethod(self::SET_PREFIX, $attribute);
$origine = $requestedRight->{$get}();
$right->{$set}($origine);
}
}
return $right;
}
}