Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
92.11% covered (success)
92.11%
35 / 38
50.00% covered (danger)
50.00%
1 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
ModifyResourceFormController
92.11% covered (success)
92.11%
35 / 38
50.00% covered (danger)
50.00%
1 / 2
6.02
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 __invoke
91.89% covered (success)
91.89%
34 / 37
0.00% covered (danger)
0.00%
0 / 1
5.01
1<?php
2namespace Apie\Cms\Controllers;
3
4use Apie\Cms\LayoutPicker;
5use Apie\Cms\Services\ResponseFactory;
6use Apie\Common\ApieFacade;
7use Apie\Common\IntegrationTestLogger;
8use Apie\Core\BoundedContext\BoundedContextId;
9use Apie\Core\ContextBuilders\ContextBuilderFactory;
10use Apie\Core\ContextConstants;
11use Apie\Core\Entities\EntityInterface;
12use Apie\Core\Exceptions\EntityNotFoundException;
13use Apie\Core\Exceptions\InvalidTypeException;
14use Apie\Core\IdentifierUtils;
15use Apie\Core\ValueObjects\Exceptions\InvalidStringForValueObjectException;
16use Apie\HtmlBuilders\Factories\ComponentFactory;
17use Apie\Serializer\Serializer;
18use Psr\Http\Message\ResponseInterface;
19use Psr\Http\Message\ServerRequestInterface;
20use ReflectionClass;
21
22class ModifyResourceFormController
23{
24    public function __construct(
25        private readonly ApieFacade $apieFacade,
26        private readonly ComponentFactory $componentFactory,
27        private readonly ContextBuilderFactory $contextBuilderFactory,
28        private readonly ResponseFactory $responseFactory,
29        private readonly LayoutPicker $layoutPicker
30    ) {
31    }
32
33    public function __invoke(ServerRequestInterface $request): ResponseInterface
34    {
35        $context = $this->contextBuilderFactory->createFromRequest($request, [ContextConstants::CMS => true]);
36        $context->checkAuthorization();
37        $action = $this->apieFacade->createAction($context);
38        $class = $action::getInputType(
39            new ReflectionClass($request->getAttribute(ContextConstants::RESOURCE_NAME))
40        );
41        
42        // TODO: copied from ModifyObjectAction, make it shared
43        $resourceClass = new ReflectionClass($context->getContext(ContextConstants::RESOURCE_NAME));
44        $id = $context->getContext(ContextConstants::RESOURCE_ID);
45        if (!$resourceClass->implementsInterface(EntityInterface::class)) {
46            throw new InvalidTypeException($resourceClass->name, 'EntityInterface');
47        }
48        try {
49            $resource = $this->apieFacade->find(
50                IdentifierUtils::idStringToIdentifier($id, $context),
51                new BoundedContextId($context->getContext(ContextConstants::BOUNDED_CONTEXT_ID))
52            );
53        } catch (InvalidStringForValueObjectException|EntityNotFoundException $error) {
54            IntegrationTestLogger::logException($error);
55        }
56        if (isset($resource)) {
57            $context = $context->withContext(ContextConstants::RESOURCE, $resource);
58            $class = new ReflectionClass($resource);
59            if (empty($context->getContext(ContextConstants::RAW_CONTENTS, false))) {
60                /** @var Serializer $serializer */
61                $serializer = $context->getContext(Serializer::class);
62                $context = $context->withContext(
63                    ContextConstants::RAW_CONTENTS,
64                    json_decode(json_encode($serializer->normalize(
65                        $resource,
66                        $context
67                    )), true)
68                );
69            }
70        }
71        $layout = $this->layoutPicker->pickLayout($request);
72        $component = $this->componentFactory->createFormForResourceModification(
73            'Modify ' . $class->getShortName(),
74            $class,
75            new BoundedContextId($request->getAttribute(ContextConstants::BOUNDED_CONTEXT_ID)),
76            $context,
77            $layout
78        );
79        return $this->responseFactory->createComponentPageRender($component, $context);
80    }
81}