Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 16
0.00% covered (danger)
0.00%
0 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
LastActionResultController
0.00% covered (danger)
0.00%
0 / 16
0.00% covered (danger)
0.00%
0 / 2
12
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 __invoke
0.00% covered (danger)
0.00%
0 / 15
0.00% covered (danger)
0.00%
0 / 1
6
1<?php
2namespace Apie\Cms\Controllers;
3
4use Apie\Cms\Services\ResponseFactory;
5use Apie\Core\BoundedContext\BoundedContextId;
6use Apie\Core\ContextBuilders\ContextBuilderFactory;
7use Apie\Core\ContextConstants;
8use Apie\HtmlBuilders\Factories\ComponentFactory;
9use Apie\HtmlBuilders\Factories\FieldDisplayComponentFactory;
10use Psr\Http\Message\ResponseInterface;
11use Psr\Http\Message\ServerRequestInterface;
12use Symfony\Component\HttpFoundation\Session\SessionInterface;
13
14class LastActionResultController
15{
16    public function __construct(
17        private readonly ComponentFactory $componentFactory,
18        private readonly ContextBuilderFactory $contextBuilder,
19        private readonly ResponseFactory $responseFactory,
20        private readonly FieldDisplayComponentFactory $fieldDisplayComponentFactory
21    ) {
22    }
23
24    public function __invoke(ServerRequestInterface $request): ResponseInterface
25    {
26        $context = $this->contextBuilder->createFromRequest($request, [ContextConstants::CMS => true]);
27        $boundedContextId = new BoundedContextId($request->getAttribute('boundedContextId'));
28        $id = $request->getAttribute('id');
29        $session = $context->getContext(SessionInterface::class);
30        $actionResults = $session->get('_output_results', []);
31        if (array_key_exists($id, $actionResults)) {
32            $component = $this->componentFactory->createWrapLayout(
33                'Action result',
34                $boundedContextId,
35                $context,
36                $this->fieldDisplayComponentFactory->createDisplayFor($actionResults[$id], $context)
37            );
38            return $this->responseFactory->createComponentPageRender($component, $context);
39        }
40        $redirectUrl = (string) $request->getUri() . '/../../';
41        return $this->responseFactory->createRedirect($redirectUrl, $context);
42    }
43}