Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
58.33% |
7 / 12 |
|
66.67% |
2 / 3 |
CRAP | |
0.00% |
0 / 1 |
ApieConfigFileLocator | |
58.33% |
7 / 12 |
|
66.67% |
2 / 3 |
10.54 | |
0.00% |
0 / 1 |
__construct | |
100.00% |
2 / 2 |
|
100.00% |
1 / 1 |
1 | |||
locate | |
100.00% |
5 / 5 |
|
100.00% |
1 / 1 |
3 | |||
getAllPaths | |
0.00% |
0 / 5 |
|
0.00% |
0 / 1 |
12 |
1 | <?php |
2 | namespace Apie\Common\DependencyInjection; |
3 | |
4 | use Apie\ApieCommonPlugin\ApieCommonPlugin; |
5 | use Apie\Cms\RouteDefinitions\AbstractCmsRouteDefinition; |
6 | use Apie\CmsApiDropdownOption\Lists\DropdownOptionList; |
7 | use Apie\Common\ApieFacade; |
8 | use Apie\Console\ConsoleCommandFactory; |
9 | use Apie\Core\Context\ApieContext; |
10 | use Apie\DoctrineEntityConverter\Factories\PersistenceLayerFactory; |
11 | use Apie\DoctrineEntityDatalayer\DoctrineEntityDatalayer; |
12 | use Apie\Faker\ApieObjectFaker; |
13 | use Apie\HtmlBuilders\FormBuildContext; |
14 | use Apie\Maker\Utils; |
15 | use Apie\RestApi\OpenApi\OpenApiGenerator; |
16 | use Apie\SchemaGenerator\ComponentsBuilderFactory; |
17 | use Apie\Serializer\Serializer; |
18 | use Apie\TwigTemplateLayoutRenderer\TwigRenderer; |
19 | use ReflectionClass; |
20 | use ReflectionException; |
21 | use Symfony\Component\Config\FileLocator; |
22 | |
23 | class 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 | } |