Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
21 / 21 |
|
100.00% |
3 / 3 |
CRAP | |
100.00% |
1 / 1 |
ItemHashmapSchemaProvider | |
100.00% |
21 / 21 |
|
100.00% |
3 / 3 |
6 | |
100.00% |
1 / 1 |
supports | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
2 | |||
addDisplaySchemaFor | |
100.00% |
10 / 10 |
|
100.00% |
1 / 1 |
2 | |||
addCreationSchemaFor | |
100.00% |
10 / 10 |
|
100.00% |
1 / 1 |
2 |
1 | <?php |
2 | namespace Apie\SchemaGenerator\SchemaProviders; |
3 | |
4 | use Apie\Core\Lists\ItemHashmap; |
5 | use Apie\SchemaGenerator\Builders\ComponentsBuilder; |
6 | use Apie\SchemaGenerator\Interfaces\SchemaProvider; |
7 | use cebe\openapi\spec\Components; |
8 | use cebe\openapi\spec\Schema; |
9 | use ReflectionClass; |
10 | |
11 | /** |
12 | * @implements SchemaProvider<ItemHashmap> |
13 | */ |
14 | class ItemHashmapSchemaProvider implements SchemaProvider |
15 | { |
16 | public function supports(ReflectionClass $class): bool |
17 | { |
18 | return $class->isSubclassOf(ItemHashmap::class) || $class->name === ItemHashmap::class; |
19 | } |
20 | |
21 | public function addDisplaySchemaFor( |
22 | ComponentsBuilder $componentsBuilder, |
23 | string $componentIdentifier, |
24 | ReflectionClass $class, |
25 | bool $nullable = false |
26 | ): Components { |
27 | $type = $class->getMethod('offsetGet')->getReturnType(); |
28 | $schema = $componentsBuilder->getSchemaForType($type, display: true, nullable: $nullable); |
29 | $schema = new Schema([ |
30 | 'type' => 'object', |
31 | 'additionalProperties' => $schema |
32 | ]); |
33 | if ($nullable) { |
34 | $schema->nullable = true; |
35 | } |
36 | |
37 | $componentsBuilder->setSchema($componentIdentifier, $schema); |
38 | |
39 | return $componentsBuilder->getComponents(); |
40 | } |
41 | |
42 | public function addCreationSchemaFor( |
43 | ComponentsBuilder $componentsBuilder, |
44 | string $componentIdentifier, |
45 | ReflectionClass $class, |
46 | bool $nullable = false |
47 | ): Components { |
48 | $type = $class->getMethod('offsetGet')->getReturnType(); |
49 | $schema = $componentsBuilder->getSchemaForType($type, display: false, nullable: $nullable); |
50 | $schema = new Schema([ |
51 | 'type' => 'object', |
52 | 'additionalProperties' => $schema |
53 | ]); |
54 | if ($nullable) { |
55 | $schema->nullable = true; |
56 | } |
57 | |
58 | $componentsBuilder->setSchema($componentIdentifier, $schema); |
59 | |
60 | return $componentsBuilder->getComponents(); |
61 | } |
62 | } |