Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
58.33% covered (warning)
58.33%
7 / 12
66.67% covered (warning)
66.67%
2 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
ApieConfigFileLocator
58.33% covered (warning)
58.33%
7 / 12
66.67% covered (warning)
66.67%
2 / 3
10.54
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
 locate
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
1 / 1
3
 getAllPaths
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
12
1<?php
2namespace Apie\Common\DependencyInjection;
3
4use Apie\ApieCommonPlugin\ApieCommonPlugin;
5use Apie\Cms\RouteDefinitions\AbstractCmsRouteDefinition;
6use Apie\CmsApiDropdownOption\Lists\DropdownOptionList;
7use Apie\Common\ApieFacade;
8use Apie\Console\ConsoleCommandFactory;
9use Apie\Core\Context\ApieContext;
10use Apie\DoctrineEntityConverter\Factories\PersistenceLayerFactory;
11use Apie\DoctrineEntityDatalayer\DoctrineEntityDatalayer;
12use Apie\Faker\ApieObjectFaker;
13use Apie\HtmlBuilders\FormBuildContext;
14use Apie\Maker\Utils;
15use Apie\RestApi\OpenApi\OpenApiGenerator;
16use Apie\SchemaGenerator\ComponentsBuilderFactory;
17use Apie\Serializer\Serializer;
18use Apie\TwigTemplateLayoutRenderer\TwigRenderer;
19use ReflectionClass;
20use ReflectionException;
21use Symfony\Component\Config\FileLocator;
22
23class ApieConfigFileLocator extends FileLocator
24{
25    /**
26     * @var array<string, array{class-string<object>, string, class-string<object>}>
27     */
28    private array $predefined = [
29        'apie_common_plugin.yaml' => [ApieCommonPlugin::class, '..', 'Apie\\ApieCommonPlugin\\GeneratedApieCommonPluginServiceProvider'],
30        'cms.yaml' => [AbstractCmsRouteDefinition::class, '../..', 'Apie\\Cms\\CmsServiceProvider'],
31        'cms_dropdown.yaml' => [DropdownOptionList::class, '../..', 'Apie\\CmsApiDropdownOption\\CmsDropdownServiceProvider'],
32        'common.yaml' => [ApieFacade::class, '..', 'Apie\\Common\\CommonServiceProvider'],
33        'console.yaml' => [ConsoleCommandFactory::class, '..', 'Apie\\Console\\ConsoleServiceProvider'],
34        'core.yaml' => [ApieContext::class, '../..', 'Apie\\Core\\CoreServiceProvider'],
35        'doctrine_entity_converter.yaml' => [PersistenceLayerFactory::class, '../..', 'Apie\\DoctrineEntityConverter\\DoctrineEntityConverterProvider'],
36        'doctrine_entity_datalayer.yaml' => [DoctrineEntityDatalayer::class, '..', 'Apie\\DoctrineEntityDatalayer\\DoctrineEntityDatalayerServiceProvider'],
37        'faker.yaml' => [ApieObjectFaker::class, '..', 'Apie\\Faker\\FakerServiceProvider'],
38        'html_builders.yaml' => [FormBuildContext::class, '..', 'Apie\\HtmlBuilders\\HtmlBuilderServiceProvider'],
39        'maker.yaml' => [Utils::class, '..', 'Apie\\Maker\\MakerServiceProvider'],
40        'rest_api.yaml' => [OpenApiGenerator::class, '../..', 'Apie\\RestApi\\RestApiServiceProvider'],
41        'serializer.yaml' => [Serializer::class, '..', 'Apie\\Serializer\\SerializerServiceProvider'],
42        'schema_generator.yaml' => [ComponentsBuilderFactory::class, '..', 'Apie\\SchemaGenerator\\SchemaGeneratorServiceProvider'],
43        'twig_template_layout_renderer.yaml' => [TwigRenderer::class, '..', 'Apie\\TwigTemplateLayoutRenderer\\TwigTemplateLayoutRendererServiceProvider'],
44    ];
45
46    public function __construct(string|array $paths = [])
47    {
48        $paths = (array) $paths;
49        parent::__construct($paths);
50    }
51
52    /**
53     * @return string|string[]
54     */
55    public function locate(string $name, ?string $currentPath = null, bool $first = true): array|string
56    {
57        if ($currentPath !== null || !isset($this->predefined[$name])) {
58            return parent::locate($name, $currentPath, $first);
59        }
60        $config = $this->predefined[$name];
61        $refl = new ReflectionClass($config[0]);
62        return dirname(realpath($refl->getFileName())) . DIRECTORY_SEPARATOR . $config[1] . DIRECTORY_SEPARATOR . $name;
63    }
64
65    /**
66     * @return array<int, array{string, class-string<object>}>
67     */
68    public function getAllPaths(): array
69    {
70        $result = [];
71        foreach (array_keys($this->predefined) as $name) {
72            try {
73                $result[] = [(string) $this->locate($name), $this->predefined[$name][2]];
74            } catch (ReflectionException) {
75            }
76        }
77        return $result;
78    }
79}