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
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
|
<?php
namespace JsonApi;
use JsonApi\JsonApiIntegration\JsonApiTrait;
use JsonApi\JsonApiIntegration\QueryParserInterface;
use JsonApi\Middlewares\Authentication;
use Neomerx\JsonApi\Contracts\Encoder\EncoderInterface;
use Neomerx\JsonApi\Contracts\Factories\FactoryInterface;
use Neomerx\JsonApi\Contracts\Http\Headers\HeaderParametersParserInterface;
use Neomerx\JsonApi\Contracts\Http\Headers\MediaTypeInterface;
use Neomerx\JsonApi\Contracts\Http\ResponsesInterface;
use Neomerx\JsonApi\Contracts\Schema\SchemaContainerInterface;
use Neomerx\JsonApi\Contracts\Schema\SchemaInterface;
use Neomerx\JsonApi\Http\Headers\MediaType;
use Neomerx\JsonApi\Schema\Link;
use Psr\Container\ContainerInterface;
use Psr\Http\Message\ResponseInterface as Response;
use Psr\Http\Message\ServerRequestInterface as Request;
/**
* Ein JsonApiController ist die einfachste Möglichkeit, eine eigene
* JSON-API-Route zu erstellen.
*
* Dazu erstellt man eine Unterklasse von JsonApiController und kann
* darin __invoke oder andere Methoden definieren und diese in der
* RouteMap registrieren.
*
* Wenn man auf den JsonApiController verzichten möchte, muss man den
* JsonApiTrait in seiner eigenen Lösung einbinden und außerdem den
* Dependency Container als Instanzvariabel $this->container eintragen
* und die Methode JsonApiTrait::initJsonApiSupport aufrufen.
*
* Diese Klasse hier übernimmt all diese Aufgaben selbst.
*
* @see \JsonApi\JsonApiIntegration\JsonApiTrait
* @see \JsonApi\RouteMap
*/
class JsonApiController
{
/**
* @var \Slim\App
*/
protected $app;
/**
* @var ContainerInterface;
*/
protected $container;
/**
* @var FactoryInterface
*/
protected $factory;
/**
* @var EncoderInterface
*/
protected $encoder;
/**
* @var SchemaContainerInterface
*/
protected $schemaContainer;
/**
* @var QueryParserInterface
*/
protected $queryParser;
/**
* Der Konstruktor.
*/
public function __construct(
\Slim\App $app,
ContainerInterface $container,
FactoryInterface $factory,
EncoderInterface $encoder,
SchemaContainerInterface $schemaContainer,
QueryParserInterface $queryParser,
HeaderParametersParserInterface $headerParametersParser
) {
$this->app = $app;
$this->container = $container;
$this->factory = $factory;
$this->encoder = $encoder;
$this->schemaContainer = $schemaContainer;
$this->queryParser = $queryParser;
$queryChecker = new JsonApiIntegration\QueryChecker(
$this->allowUnrecognizedParams,
$this->allowedIncludePaths,
$this->allowedFieldSetTypes,
$this->allowedSortFields,
$this->allowedPagingParameters,
$this->allowedFilteringParameters
);
$queryChecker->checkQuery($queryParser);
$this->checkAcceptHeader($headerParametersParser);
$this->checkContentTypeHeader($headerParametersParser);
}
/**
* If unrecognized parameters should be allowed in input parameters.
*
* @var bool
*/
protected $allowUnrecognizedParams = false;
/**
* A list of allowed include paths in input parameters.
*
* Empty array [] means clients are not allowed to specify include paths and 'null' means all paths are allowed.
*
* @var string[]|null
*/
protected $allowedIncludePaths = [];
/**
* A list of JSON API types which clients can sent field sets to.
*
* Possible values
*
* $allowedFieldSetTypes = null; // <-- for all types all fields are allowed
*
* $allowedFieldSetTypes = []; // <-- non of the types and fields are allowed
*
* $allowedFieldSetTypes = [
* 'people' => null, // <-- all fields for 'people' are allowed
* 'comments' => [], // <-- no fields for 'comments' are allowed (all denied)
* 'posts' => ['title', 'body'], // <-- only 'title' and 'body' fields are allowed for 'posts'
* ];
*
* @var string[]|null
*/
protected $allowedFieldSetTypes = null;
/**
* A list of allowed sort field names in input parameters.
*
* Empty array [] means clients are not allowed to specify sort fields and 'null' means all fields are allowed.
*
* @var string[]|null
*/
protected $allowedSortFields = [];
/**
* A list of allowed pagination input parameters (e.g 'number', 'size', 'offset' and etc).
*
* Empty array [] means clients are not allowed to specify paging and 'null' means all parameters are allowed.
*
* @var string[]|null
*/
protected $allowedPagingParameters = [];
/**
* A list of allowed filtering input parameters.
*
* Empty array [] means clients are not allowed to specify filtering and 'null' means all parameters are allowed.
*
* @var string[]|null
*/
protected $allowedFilteringParameters = [];
// ***** RESPONSE GENERATORS *****
/**
* Get response with HTTP code only.
*/
protected function getCodeResponse(int $statusCode, array $headers = []): Response
{
$responses = $this->getResponses();
return $responses->getCodeResponse($statusCode, $headers);
}
/**
* Get response with meta information only.
*
* @param array|object $meta Meta information
* @param int $statusCode
*/
protected function getMetaResponse($meta, $statusCode = ResponsesInterface::HTTP_OK, array $headers = []): Response
{
$responses = $this->getResponses();
return $responses->getMetaResponse($meta, $statusCode, $headers);
}
/**
* Get response with regular JSON API Document in body.
*
* @param object|array $data
* @param int $statusCode
* @param array|null $links
* @param mixed $meta
*/
protected function getContentResponse(
$data,
$statusCode = ResponsesInterface::HTTP_OK,
$links = [],
$meta = [],
array $headers = []
): Response {
$responses = $this->getResponses($links, $meta);
return $responses->getContentResponse($data, $statusCode, $headers);
}
/**
* Get response with only resource identifiers.
*
* @param object|array $data
* @param array|null $links
* @param mixed $meta
*/
protected function getIdentifiersResponse($data, $links = [], $meta = [], array $headers = []): Response
{
$responses = $this->getResponses($links, $meta);
$statusCode = ResponsesInterface::HTTP_OK;
return $responses->getIdentifiersResponse($data, $statusCode, $headers);
}
/**
* Get response with paginated resource identifiers.
*
* @param object|array $data
* @param ?int $total
* @param array|null $links
* @param mixed $meta
*/
protected function getPaginatedIdentifiersResponse(
$data,
$total,
$links = [],
$meta = [],
array $headers = []
): Response {
list($offset, $limit) = $this->getOffsetAndLimit();
$meta['page'] = [
'offset' => (int) $offset,
'limit' => (int) $limit,
];
if (isset($total)) {
$meta['page']['total'] = (int) $total;
}
$paginator = new JsonApiIntegration\Paginator($total, $offset, $limit);
foreach (words('first last prev next') as $rel) {
if (list($off, $lim) = $paginator->{'get'.ucfirst($rel).'PageOffsetAndLimit'}()) {
$links[$rel] = $this->createLink($off, $lim);
}
}
$responses = $this->getResponses($links, $meta);
$statusCode = ResponsesInterface::HTTP_OK;
return $responses->getIdentifiersResponse($data, $statusCode, $headers);
}
/**
* @param object $resource
* @param array|null $links
* @param mixed $meta
*/
protected function getCreatedResponse($resource, $links = [], $meta = [], array $headers = []): Response
{
$responses = $this->getResponses($links, $meta);
$urlPrefix = $this->container->get('json-api-integration-urlPrefix');
$url = $this->schemaContainer
->getSchema($resource)
->getSelfLink($resource)
->getStringRepresentation($urlPrefix);
return $responses->getCreatedResponse($resource, $url, $headers);
}
/**
* @param object|array $data
* @param ?int $total
* @param int $statusCode
* @param array|null $links
* @param mixed $meta
*/
protected function getPaginatedContentResponse(
$data,
$total,
$statusCode = ResponsesInterface::HTTP_OK,
$links = [],
$meta = [],
array $headers = []
): Response {
list($offset, $limit) = $this->getOffsetAndLimit();
$meta['page'] = [
'offset' => (int) $offset,
'limit' => (int) $limit,
];
if (isset($total)) {
$meta['page']['total'] = (int) $total;
}
$paginator = new JsonApiIntegration\Paginator($total, $offset, $limit);
foreach (words('first last prev next') as $rel) {
if (list($off, $lim) = $paginator->{'get'.ucfirst($rel).'PageOffsetAndLimit'}()) {
$links[$rel] = $this->createLink($off, $lim);
}
}
$responses = $this->getResponses($links, $meta);
return $responses->getContentResponse($data, $statusCode, $headers);
}
protected function getQueryParameters(): QueryParserInterface
{
return $this->queryParser;
}
/**
* Liefert Offset und Limit aus den Request-Parametern zurück.
*
* @param int $offsetDefault optional; gibt den Standard-Offset
* an, falls dieser Wert nicht im Request gesetzt ist
* @param int $limitDefault optional; gibt das Standard-Limit an,
* falls dieser Wert nicht im Request gesetzt ist
*
* @return array<int> {
*
* @var int $offset der im Request gesetzte Offset oder
* ansonsten der Default-Wert 0
* @var int $limit das im Request gesetzte Limit oder
* ansonsten der Default-Wert 30
* }
*/
protected function getOffsetAndLimit($offsetDefault = 0, $limitDefault = 30): array
{
$params = iterator_to_array($this->queryParser->getPagination());
return [
$params && array_key_exists('offset', $params) ? (int) $params['offset'] : $offsetDefault,
$params && array_key_exists('limit', $params) ? (int) $params['limit'] : $limitDefault,
];
}
// Hier wird der aktuelle Link zusätzlich noch mit Paginierung ausgestattet
private function createLink(int $offset, int $limit): Link
{
$request = $this->container->get('request');
$queryParams = $request->getQueryParams();
$queryParams['page']['offset'] = $offset;
$queryParams['page']['limit'] = $limit;
$uri = $request->getUri()->withQuery(http_build_query($queryParams));
$path = $uri->getPath();
$query = $uri->getQuery();
$fragment = $uri->getFragment();
$uriString = $path.($query ? '?'.$query : '').($fragment ? '#'.$fragment : '');
return new Link(false, $uriString, false);
}
/**
* Gibt null oder das User-Objekt des "eingeloggten" Nutzers zurück.
*
* @param Request $request Request der eingehende Request
*
* @return null|\User entweder null oder das User-Objekt des "eingeloggten"
* Nutzers
*/
public function getUser(Request $request)
{
return $request->getAttribute(Authentication::USER_KEY);
}
/**
* Gibt das Schema zu einer beliebigen Ressource zurück.
*
* @param mixed $resource die Ressource, zu der das Schema geliefert werden soll
*
* @return SchemaInterface das Schema zur Ressource
*/
protected function getSchema($resource): SchemaInterface
{
return $this->schemaContainer->getSchema($resource);
}
protected function getResponses(array $links = [], array $meta = []): ResponsesInterface
{
$paths = $this->queryParser->getIncludePaths();
$fieldSets = iterator_to_array($this->queryParser->getFields());
$encoder = $this->encoder
->withIncludedPaths($paths)
->withFieldSets($fieldSets)
->withLinks($links);
if (count($meta)) {
$encoder = $encoder->withMeta($meta);
}
$mediaType = new MediaType(MediaTypeInterface::JSON_API_TYPE, MediaTypeInterface::JSON_API_SUB_TYPE);
return new JsonApiIntegration\Responses($encoder, $mediaType);
}
private function checkAcceptHeader(HeaderParametersParserInterface $headerParametersParser): void
{
$request = $this->container->get('request');
$accept = $request->getHeader(HeaderParametersParserInterface::HEADER_ACCEPT);
if (count($accept)) {
$mediaType = $this->factory->createMediaType(
MediaTypeInterface::JSON_API_TYPE,
MediaTypeInterface::JSON_API_SUB_TYPE
);
foreach ($headerParametersParser->parseAcceptHeader($accept[0]) as $acceptMediaType) {
if ($mediaType->matchesTo($acceptMediaType)) {
return;
}
}
}
throw new Errors\NotAcceptableException();
}
private function checkContentTypeHeader(HeaderParametersParserInterface $headerParametersParser): void
{
$request = $this->container->get('request');
if ($this->doesRequestHaveBody($request)) {
$contentType = $request->getHeader(HeaderParametersParserInterface::HEADER_CONTENT_TYPE);
if (count($contentType)) {
$mediaType = $this->factory->createMediaType(
MediaTypeInterface::JSON_API_TYPE,
MediaTypeInterface::JSON_API_SUB_TYPE
);
$parsedContentType = $headerParametersParser->parseContentTypeHeader($contentType[0]);
if ($mediaType->matchesTo($parsedContentType)) {
return;
}
}
throw new Errors\UnsupportedMediaTypeException();
}
}
private function doesRequestHaveBody(Request $request): bool
{
if (count($request->getHeader('Transfer-Encoding'))) {
return true;
}
$contentLength = $request->getHeader('Content-Length');
return count($contentLength) && $contentLength[0] > 0;
}
}
|