forked from FriendsOfSymfony/FOSRestBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
RequestBodyParamConverter.php
182 lines (158 loc) · 6.1 KB
/
RequestBodyParamConverter.php
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<?php
/*
* This file is part of the FOSRestBundle package.
*
* (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace FOS\RestBundle\Request;
use FOS\RestBundle\Context\Context;
use FOS\RestBundle\Serializer\Serializer;
use JMS\Serializer\Exception\Exception as JMSSerializerException;
use JMS\Serializer\Exception\UnsupportedFormatException;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\ParamConverter;
use Sensio\Bundle\FrameworkExtraBundle\Request\ParamConverter\ParamConverterInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Exception\BadRequestHttpException;
use Symfony\Component\HttpKernel\Exception\UnsupportedMediaTypeHttpException;
use Symfony\Component\OptionsResolver\OptionsResolver;
use Symfony\Component\Serializer\Exception\ExceptionInterface as SymfonySerializerException;
use Symfony\Component\Validator\Validator\ValidatorInterface;
/**
* @author Tyler Stroud <[email protected]>
*/
class RequestBodyParamConverter implements ParamConverterInterface
{
private $serializer;
private $context = [];
private $validator;
/**
* The name of the argument on which the ConstraintViolationList will be set.
*
* @var null|string
*/
private $validationErrorsArgument;
/**
* @param Serializer $serializer
* @param array|null $groups An array of groups to be used in the serialization context
* @param string|null $version A version string to be used in the serialization context
* @param ValidatorInterface $validator
* @param string|null $validationErrorsArgument
*
* @throws \InvalidArgumentException
*/
public function __construct(
Serializer $serializer,
$groups = null,
$version = null,
ValidatorInterface $validator = null,
$validationErrorsArgument = null
) {
$this->serializer = $serializer;
if (!empty($groups)) {
$this->context['groups'] = (array) $groups;
}
if (!empty($version)) {
$this->context['version'] = $version;
}
if (null !== $validator && null === $validationErrorsArgument) {
throw new \InvalidArgumentException('"$validationErrorsArgument" cannot be null when using the validator');
}
$this->validator = $validator;
$this->validationErrorsArgument = $validationErrorsArgument;
}
/**
* {@inheritdoc}
*/
public function apply(Request $request, ParamConverter $configuration)
{
$options = (array) $configuration->getOptions();
if (isset($options['deserializationContext']) && is_array($options['deserializationContext'])) {
$arrayContext = array_merge($this->context, $options['deserializationContext']);
} else {
$arrayContext = $this->context;
}
$this->configureContext($context = new Context(), $arrayContext);
try {
$object = $this->serializer->deserialize(
$request->getContent(),
$configuration->getClass(),
$request->getContentType(),
$context
);
} catch (UnsupportedFormatException $e) {
return $this->throwException(new UnsupportedMediaTypeHttpException($e->getMessage(), $e), $configuration);
} catch (JMSSerializerException $e) {
return $this->throwException(new BadRequestHttpException($e->getMessage(), $e), $configuration);
} catch (SymfonySerializerException $e) {
return $this->throwException(new BadRequestHttpException($e->getMessage(), $e), $configuration);
}
$request->attributes->set($configuration->getName(), $object);
if (null !== $this->validator) {
$validatorOptions = $this->getValidatorOptions($options);
$errors = $this->validator->validate($object, null, $validatorOptions['groups']);
$request->attributes->set(
$this->validationErrorsArgument,
$errors
);
}
return true;
}
/**
* {@inheritdoc}
*/
public function supports(ParamConverter $configuration)
{
return null !== $configuration->getClass();
}
/**
* @param Context $context
* @param array $options
*/
protected function configureContext(Context $context, array $options)
{
foreach ($options as $key => $value) {
if ($key === 'groups') {
$context->addGroups($options['groups']);
} elseif ($key === 'version') {
$context->setVersion($options['version']);
} elseif ($key === 'maxDepth') {
@trigger_error('Context attribute "maxDepth" is deprecated since version 2.1 and will be removed in 3.0. Use "enable_max_depth" instead.', E_USER_DEPRECATED);
$context->setMaxDepth($options['maxDepth']);
} elseif ($key === 'enableMaxDepth') {
$context->enableMaxDepth($options['enableMaxDepth']);
} elseif ($key === 'serializeNull') {
$context->setSerializeNull($options['serializeNull']);
} else {
$context->setAttribute($key, $value);
}
}
}
/**
* Throws an exception or return false if a ParamConverter is optional.
*/
private function throwException(\Exception $exception, ParamConverter $configuration)
{
if ($configuration->isOptional()) {
return false;
}
throw $exception;
}
/**
* @param array $options
*
* @return array
*/
private function getValidatorOptions(array $options)
{
$resolver = new OptionsResolver();
$resolver->setDefaults([
'groups' => null,
'traverse' => false,
'deep' => false,
]);
return $resolver->resolve(isset($options['validator']) ? $options['validator'] : []);
}
}