Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
Total | |
100.00% |
18 / 18 |
|
100.00% |
3 / 3 |
CRAP | |
100.00% |
1 / 1 |
UploadedFileSchemaProvider | |
100.00% |
18 / 18 |
|
100.00% |
3 / 3 |
8 | |
100.00% |
1 / 1 |
supports | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
2 | |||
addDisplaySchemaFor | |
100.00% |
5 / 5 |
|
100.00% |
1 / 1 |
2 | |||
addCreationSchemaFor | |
100.00% |
12 / 12 |
|
100.00% |
1 / 1 |
4 |
1 | <?php |
2 | namespace Apie\SchemaGenerator\SchemaProviders; |
3 | |
4 | use Apie\Core\ValueObjects\JsonFileUpload; |
5 | use Apie\SchemaGenerator\Builders\ComponentsBuilder; |
6 | use Apie\SchemaGenerator\Interfaces\SchemaProvider; |
7 | use cebe\openapi\spec\Components; |
8 | use cebe\openapi\spec\Reference; |
9 | use cebe\openapi\spec\Schema; |
10 | use Psr\Http\Message\UploadedFileInterface; |
11 | use ReflectionClass; |
12 | |
13 | /** |
14 | * @implements SchemaProvider<UploadedFileInterface> |
15 | */ |
16 | class UploadedFileSchemaProvider implements SchemaProvider |
17 | { |
18 | public function supports(ReflectionClass $class): bool |
19 | { |
20 | return $class->name === UploadedFileInterface::class || in_array(UploadedFileInterface::class, $class->getInterfaceNames()); |
21 | } |
22 | |
23 | public function addDisplaySchemaFor( |
24 | ComponentsBuilder $componentsBuilder, |
25 | string $componentIdentifier, |
26 | ReflectionClass $class, |
27 | bool $nullable = false |
28 | ): Components { |
29 | $schema = new Schema(['type' => 'string', 'format' => 'path']); |
30 | if ($nullable) { |
31 | $schema->nullable = true; |
32 | } |
33 | $componentsBuilder->setSchema($componentIdentifier, $schema); |
34 | |
35 | return $componentsBuilder->getComponents(); |
36 | } |
37 | |
38 | public function addCreationSchemaFor( |
39 | ComponentsBuilder $componentsBuilder, |
40 | string $componentIdentifier, |
41 | ReflectionClass $class, |
42 | bool $nullable = false |
43 | ): Components { |
44 | if ($componentsBuilder->getContentType() && str_starts_with($componentsBuilder->getContentType(), 'multipart/')) { |
45 | $schema = new Schema([ |
46 | 'type' => 'string', |
47 | 'format' => 'binary', |
48 | 'x-upload' => '*/*', |
49 | 'nullable' => $nullable, |
50 | ]); |
51 | } else { |
52 | $schema = $componentsBuilder->addCreationSchemaFor(JsonFileUpload::class, nullable: $nullable); |
53 | if ($schema instanceof Reference) { |
54 | $schema = $componentsBuilder->getSchemaForReference($schema); |
55 | } |
56 | } |
57 | $componentsBuilder->setSchema($componentIdentifier, $schema); |
58 | |
59 | return $componentsBuilder->getComponents(); |
60 | } |
61 | } |