-
-
Notifications
You must be signed in to change notification settings - Fork 900
Expand file tree
/
Copy pathSymfonyMapRequestPayloadDescriber.php
More file actions
72 lines (58 loc) · 2.49 KB
/
SymfonyMapRequestPayloadDescriber.php
File metadata and controls
72 lines (58 loc) · 2.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
/*
* This file is part of the NelmioApiDocBundle package.
*
* (c) Nelmio
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Nelmio\ApiDocBundle\RouteDescriber\RouteArgumentDescriber;
use Nelmio\ApiDocBundle\Describer\ModelRegistryAwareInterface;
use Nelmio\ApiDocBundle\Describer\ModelRegistryAwareTrait;
use Nelmio\ApiDocBundle\Model\Model;
use Nelmio\ApiDocBundle\Util\LegacyTypeConverter;
use OpenApi\Annotations as OA;
use Symfony\Component\HttpKernel\Attribute\MapRequestPayload;
use Symfony\Component\HttpKernel\ControllerMetadata\ArgumentMetadata;
use Symfony\Component\Validator\Constraints\GroupSequence;
final class SymfonyMapRequestPayloadDescriber implements RouteArgumentDescriberInterface, ModelRegistryAwareInterface
{
use ModelRegistryAwareTrait;
public const CONTEXT_ARGUMENT_METADATA = 'nelmio_api_doc_bundle.argument_metadata.'.self::class;
public const CONTEXT_MODEL_REF = 'nelmio_api_doc_bundle.model_ref.'.self::class;
public function describe(ArgumentMetadata $argumentMetadata, OA\Operation $operation): void
{
if (!$attribute = $argumentMetadata->getAttributes(MapRequestPayload::class, ArgumentMetadata::IS_INSTANCEOF)[0] ?? null) {
return;
}
$typeClass = $argumentMetadata->getType();
$reflectionAttribute = new \ReflectionClass(MapRequestPayload::class);
if ('array' === $typeClass && $reflectionAttribute->hasProperty('type') && null !== $attribute->type) {
$typeClass = $attribute->type;
}
$modelRef = $this->modelRegistry->register(new Model(
LegacyTypeConverter::createType($typeClass),
groups: $this->getGroups($attribute),
serializationContext: $attribute->serializationContext,
));
$operation->_context->{self::CONTEXT_ARGUMENT_METADATA} = $argumentMetadata;
$operation->_context->{self::CONTEXT_MODEL_REF} = $modelRef;
}
/**
* @return string[]|null
*/
private function getGroups(MapRequestPayload $attribute): ?array
{
if (\is_string($attribute->validationGroups)) {
return [$attribute->validationGroups];
}
if (\is_array($attribute->validationGroups)) {
return $attribute->validationGroups;
}
if ($attribute->validationGroups instanceof GroupSequence) {
return $attribute->validationGroups->groups;
}
return null;
}
}