Optimized draft for imprint controller

This commit is contained in:
Kevin Frantz 2019-01-03 22:56:31 +01:00
parent 16e56de458
commit ae737b6923

View File

@ -6,6 +6,11 @@ use Symfony\Component\Routing\Annotation\Route;
use Symfony\Component\HttpFoundation\Response; use Symfony\Component\HttpFoundation\Response;
use App\DBAL\Types\SystemSlugType; use App\DBAL\Types\SystemSlugType;
use App\Entity\Source\AbstractSource; use App\Entity\Source\AbstractSource;
use App\Entity\User;
use App\Domain\SecureLoadManagement\SecureSourceLoader;
use App\Entity\Meta\Right;
use App\DBAL\Types\LayerType;
use App\DBAL\Types\RightType;
/** /**
* This controller offers the standart routes for the template. * This controller offers the standart routes for the template.
@ -20,8 +25,24 @@ class DefaultController extends AbstractEntityController
*/ */
public function imprint(): Response public function imprint(): Response
{ {
$source = $this->loadEntityBySlug(SystemSlugType::IMPRINT); if ($this->getUser()) {
$view = $this->view($source, 200) $user = $this->getUser();
} else {
$user = new User();
$user->setSource($this->getDoctrine()
->getRepository(AbstractSource::class)
->findOneBy(['slug' => SystemSlugType::GUEST_USER]));
}
$requestedSource = new class() extends AbstractSource {
};
$requestedSource->setSlug(SystemSlugType::IMPRINT);
$requestedRight = new Right();
$requestedRight->setSource($requestedSource);
$requestedRight->setReciever($user->getSource());
$requestedRight->setLayer(LayerType::SOURCE);
$requestedRight->setType(RightType::READ);
$secureSourceLoader = new SecureSourceLoader($this->getDoctrine()->getManager(), $requestedRight);
$view = $this->view($secureSourceLoader->getSource(), 200)
->setTemplate('standard/imprint.html.twig') ->setTemplate('standard/imprint.html.twig')
->setTemplateVar('source'); ->setTemplateVar('source');