-
Notifications
You must be signed in to change notification settings - Fork 702
/
ViewHandler.php
310 lines (256 loc) · 9.62 KB
/
ViewHandler.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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
<?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\View;
use FOS\RestBundle\Context\Context;
use FOS\RestBundle\Serializer\Serializer;
use Symfony\Component\Form\FormInterface;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\RequestStack;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\HttpKernel\Exception\UnsupportedMediaTypeHttpException;
use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
/**
* View may be used in controllers to build up a response in a format agnostic way
* The View class takes care of encoding your data in json, xml via the Serializer
* component.
*
* @author Jordi Boggiano <j.boggiano@seld.be>
* @author Lukas K. Smith <smith@pooteeweet.org>
*/
final class ViewHandler implements ConfigurableViewHandlerInterface
{
/**
* Key format, value a callable that returns a Response instance.
*
* @var array
*/
private $customHandlers = [];
/**
* The supported formats as keys.
*
* @var array
*/
private $formats;
private $failedValidationCode;
private $emptyContentCode;
private $serializeNull;
private $exclusionStrategyGroups = [];
private $exclusionStrategyVersion;
private $serializeNullStrategy;
private $urlGenerator;
private $serializer;
private $requestStack;
private $options;
private function __construct(
UrlGeneratorInterface $urlGenerator,
Serializer $serializer,
RequestStack $requestStack,
?array $formats = null,
int $failedValidationCode = Response::HTTP_BAD_REQUEST,
int $emptyContentCode = Response::HTTP_NO_CONTENT,
bool $serializeNull = false,
array $options = []
) {
$this->urlGenerator = $urlGenerator;
$this->serializer = $serializer;
$this->requestStack = $requestStack;
$this->formats = (array) $formats;
$this->failedValidationCode = $failedValidationCode;
$this->emptyContentCode = $emptyContentCode;
$this->serializeNull = $serializeNull;
$this->options = $options + [
'exclusionStrategyGroups' => [],
'exclusionStrategyVersion' => null,
'serializeNullStrategy' => null,
];
$this->reset();
}
public static function create(
UrlGeneratorInterface $urlGenerator,
Serializer $serializer,
RequestStack $requestStack,
?array $formats = null,
int $failedValidationCode = Response::HTTP_BAD_REQUEST,
int $emptyContentCode = Response::HTTP_NO_CONTENT,
bool $serializeNull = false,
array $options = []
): self {
return new self($urlGenerator, $serializer, $requestStack, $formats, $failedValidationCode, $emptyContentCode, $serializeNull, $options);
}
/**
* @param string[]|string $groups
*/
public function setExclusionStrategyGroups($groups): void
{
$this->exclusionStrategyGroups = (array) $groups;
}
public function setExclusionStrategyVersion(string $version): void
{
$this->exclusionStrategyVersion = $version;
}
public function setSerializeNullStrategy(bool $isEnabled): void
{
$this->serializeNullStrategy = $isEnabled;
}
/**
* {@inheritdoc}
*/
public function supports(string $format): bool
{
return isset($this->customHandlers[$format]) || isset($this->formats[$format]);
}
/**
* Registers a custom handler.
*
* The handler must have the following signature: handler(ViewHandler $viewHandler, View $view, Request $request, $format)
* It can use the public methods of this class to retrieve the needed data and return a
* Response object ready to be sent.
*/
public function registerHandler(string $format, callable $callable): void
{
$this->customHandlers[$format] = $callable;
}
/**
* Handles a request with the proper handler.
*
* Decides on which handler to use based on the request format.
*
* @throws UnsupportedMediaTypeHttpException
*/
public function handle(View $view, ?Request $request = null): Response
{
if (null === $request) {
$request = $this->requestStack->getCurrentRequest();
}
$format = $view->getFormat() ?: $request->getRequestFormat();
if (!$this->supports($format)) {
$msg = "Format '$format' not supported, handler must be implemented";
throw new UnsupportedMediaTypeHttpException($msg);
}
if (isset($this->customHandlers[$format])) {
return call_user_func($this->customHandlers[$format], $this, $view, $request, $format);
}
return $this->createResponse($view, $request, $format);
}
public function createRedirectResponse(View $view, string $location, string $format): Response
{
$content = null;
if ((Response::HTTP_CREATED === $view->getStatusCode() || Response::HTTP_ACCEPTED === $view->getStatusCode()) && null !== $view->getData()) {
$response = $this->initResponse($view, $format);
} else {
$response = $view->getResponse();
}
$code = $this->getStatusCode($view, $content);
$response->setStatusCode($code);
$response->headers->set('Location', $location);
return $response;
}
public function createResponse(View $view, Request $request, string $format): Response
{
$route = $view->getRoute();
$location = $route
? $this->urlGenerator->generate($route, (array) $view->getRouteParameters(), UrlGeneratorInterface::ABSOLUTE_URL)
: $view->getLocation();
if ($location) {
return $this->createRedirectResponse($view, $location, $format);
}
$response = $this->initResponse($view, $format);
if (!$response->headers->has('Content-Type')) {
$mimeType = $request->attributes->get('media_type');
if (null === $mimeType) {
$mimeType = $request->getMimeType($format);
}
$response->headers->set('Content-Type', $mimeType);
}
return $response;
}
/**
* Gets a response HTTP status code from a View instance.
*
* By default it will return 200. However if there is a FormInterface stored for
* the key 'form' in the View's data it will return the failed_validation
* configuration if the form instance has errors.
*
* @param string|false|null
*/
private function getStatusCode(View $view, $content = null): int
{
$form = $this->getFormFromView($view);
if (null !== $form && $form->isSubmitted() && !$form->isValid()) {
return $this->failedValidationCode;
}
$statusCode = $view->getStatusCode();
if (null !== $statusCode) {
return $statusCode;
}
return null !== $content ? Response::HTTP_OK : $this->emptyContentCode;
}
private function getSerializationContext(View $view): Context
{
$context = $view->getContext();
$groups = $context->getGroups();
if (empty($groups) && $this->exclusionStrategyGroups) {
$context->setGroups($this->exclusionStrategyGroups);
}
if (null === $context->getVersion() && $this->exclusionStrategyVersion) {
$context->setVersion($this->exclusionStrategyVersion);
}
if (null === $context->getSerializeNull() && null !== $this->serializeNullStrategy) {
$context->setSerializeNull($this->serializeNullStrategy);
}
if (null !== $view->getStatusCode() && !$context->hasAttribute('status_code')) {
$context->setAttribute('status_code', $view->getStatusCode());
}
return $context;
}
private function initResponse(View $view, string $format): Response
{
$content = null;
if ($this->serializeNull || null !== $view->getData()) {
$data = $this->getDataFromView($view);
if ($data instanceof FormInterface && $data->isSubmitted() && !$data->isValid()) {
$view->getContext()->setAttribute('status_code', $this->failedValidationCode);
}
$context = $this->getSerializationContext($view);
$content = $this->serializer->serialize($data, $format, $context);
}
$response = $view->getResponse();
$response->setStatusCode($this->getStatusCode($view, $content));
if (null !== $content) {
$response->setContent($content);
}
return $response;
}
private function getFormFromView(View $view): ?FormInterface
{
$data = $view->getData();
if ($data instanceof FormInterface) {
return $data;
}
if (is_array($data) && isset($data['form']) && $data['form'] instanceof FormInterface) {
return $data['form'];
}
return null;
}
private function getDataFromView(View $view)
{
$form = $this->getFormFromView($view);
if (null === $form) {
return $view->getData();
}
return $form;
}
public function reset(): void
{
$this->exclusionStrategyGroups = $this->options['exclusionStrategyGroups'];
$this->exclusionStrategyVersion = $this->options['exclusionStrategyVersion'];
$this->serializeNullStrategy = $this->options['serializeNullStrategy'];
}
}