Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
89.47% covered (warning)
89.47%
17 / 19
50.00% covered (danger)
50.00%
1 / 2
CRAP
0.00% covered (danger)
0.00%
0 / 1
DefaultObjectInteractor
89.47% covered (warning)
89.47%
17 / 19
50.00% covered (danger)
50.00%
1 / 2
5.03
0.00% covered (danger)
0.00%
0 / 1
 supports
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 interactWith
88.89% covered (warning)
88.89%
16 / 18
0.00% covered (danger)
0.00%
0 / 1
4.02
1<?php
2namespace Apie\Console\Helpers;
3
4use Apie\Console\ApieInputHelper;
5use Apie\Console\Output\IndentedOutputDecorator;
6use Apie\Core\Context\ApieContext;
7use Apie\Core\Metadata\CompositeMetadata;
8use Apie\Core\Metadata\MetadataInterface;
9use Apie\TypeConverter\ReflectionTypeFactory;
10use Symfony\Component\Console\Helper\HelperSet;
11use Symfony\Component\Console\Input\InputInterface;
12use Symfony\Component\Console\Output\OutputInterface;
13
14class DefaultObjectInteractor implements InputInteractorInterface
15{
16    public function supports(MetadataInterface $metadata): bool
17    {
18        return $metadata instanceof CompositeMetadata;
19    }
20    public function interactWith(
21        MetadataInterface $metadata,
22        HelperSet $helperSet,
23        InputInterface $input,
24        OutputInterface $output,
25        ApieContext $context
26    ): mixed {
27        $apieInputHelper = $helperSet->get('apie');
28        assert($apieInputHelper instanceof ApieInputHelper);
29        assert($metadata instanceof CompositeMetadata);
30    
31        $result = [];
32        foreach ($metadata->getHashmap() as $field => $fieldMeta) {
33            if (!$fieldMeta->isField()) {
34                continue;
35            }
36            $output->writeln('Field: ' . $field);
37            $typehint = $fieldMeta->getTypehint();
38            if (!$typehint) {
39                $typehint = ReflectionTypeFactory::createReflectionType('mixed');
40            }
41            $result[$field] = $apieInputHelper->interactUsingTypehint(
42                $typehint,
43                $input,
44                new IndentedOutputDecorator($output, 4),
45                $context
46            );
47        }
48        return $result;
49    }
50}