-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOpenApi.php
More file actions
463 lines (434 loc) · 15.5 KB
/
Copy pathOpenApi.php
File metadata and controls
463 lines (434 loc) · 15.5 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
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
declare(strict_types=1);
namespace Dot\Maker\Type;
use Dot\Maker\Component;
use Dot\Maker\Component\ClassFile;
use Dot\Maker\Component\Import;
use Dot\Maker\Exception\DuplicateFileException;
use Dot\Maker\Exception\RuntimeException;
use Dot\Maker\FileSystem\File;
use Dot\Maker\IO\Output;
use function implode;
use function sprintf;
use const PHP_EOL;
class OpenApi extends AbstractType implements FileInterface
{
/**
* @throws DuplicateFileException
* @throws RuntimeException
*/
public function create(string $name): File
{
$openApi = $this->fileSystem->openApi();
if (! $this->context->isApi()) {
throw new RuntimeException(
'OpenApi can be created only in an API'
);
}
if ($openApi->exists()) {
throw DuplicateFileException::create($openApi);
}
$content = $this->render(
$openApi->getComponent(),
$this->fileSystem->collection($name)->getComponent(),
$this->fileSystem->entity($name)->getComponent(),
$this->fileSystem->apiDeleteResourceHandler($name),
$this->fileSystem->apiGetResourceHandler($name),
$this->fileSystem->apiGetCollectionHandler($name),
$this->fileSystem->apiPatchResourceHandler($name),
$this->fileSystem->apiPostResourceHandler($name),
$this->fileSystem->apiPutResourceHandler($name),
);
$openApi->create($content);
Output::success(sprintf('Created OpenAPI: %s', $openApi->getPath()));
return $openApi;
}
public function render(
Component $openApi,
Component $collection,
Component $entity,
File $apiDeleteResourceHandler,
File $apiGetResourceHandler,
File $apiGetCollectionHandler,
File $apiPatchResourceHandler,
File $apiPostResourceHandler,
File $apiPutResourceHandler,
): string {
$class = (new ClassFile($openApi->getNamespace(), $openApi->getClassName()))
->useClass(Import::DATETIMEIMMUTABLE)
->useClass(Import::OPENAPI_ATTRIBUTES, 'OA')
->useClass(Import::FIG_HTTP_MESSAGE_STATUSCODEINTERFACE)
->useClass($entity->getFqcn());
$comments = [];
if ($apiDeleteResourceHandler->exists()) {
$class->useClass($apiDeleteResourceHandler->getComponent()->getFqcn());
// phpcs:disable Generic.Files.LineLength.TooLong
$comments[] = <<<COMM
/**
* @see {$apiDeleteResourceHandler->getComponent()->getClassName()}::handle()
*/
#[OA\Delete(
path: '/{$entity->toKebabCase()}/{uuid}',
description: 'Authenticated (super)admin deletes resource of type {$entity->getClassName()}, identified by its UUID',
summary: 'Admin deletes a resource of type {$entity->getClassName()}',
security: [['AuthToken' => []]],
tags: ['{$entity->getClassName()}'],
parameters: [
new OA\Parameter(
name: 'uuid',
description: '{$entity->getClassName()} UUID',
in: 'path',
required: true,
schema: new OA\Schema(type: 'string'),
),
],
responses: [
new OA\Response(
response: StatusCodeInterface::STATUS_NO_CONTENT,
description: '{$entity->getClassName()} has been deleted',
),
new OA\Response(
response: StatusCodeInterface::STATUS_NOT_FOUND,
description: 'Not Found',
),
],
)]
COMM;
// phpcs:enable Generic.Files.LineLength.TooLong
}
if ($apiGetResourceHandler->exists()) {
$class->useClass($apiGetResourceHandler->getComponent()->getFqcn());
// phpcs:disable Generic.Files.LineLength.TooLong
$comments[] = <<<COMM
/**
* @see {$apiGetResourceHandler->getComponent()->getClassName()}::handle()
*/
#[OA\Get(
path: '/{$entity->toKebabCase()}/{uuid}',
description: 'Authenticated (super)admin fetches a resource of type {$entity->getClassName()}, identified by its UUID',
summary: 'Admin fetches a resource of type {$entity->getClassName()}',
security: [['AuthToken' => []]],
tags: ['{$entity->getClassName()}'],
parameters: [
new OA\Parameter(
name: 'uuid',
description: '{$entity->getClassName()} UUID',
in: 'path',
required: true,
schema: new OA\Schema(type: 'string'),
),
],
responses: [
new OA\Response(
response: StatusCodeInterface::STATUS_OK,
description: '{$entity->getClassName()} account',
content: new OA\JsonContent(ref: '#/components/schemas/{$entity->getClassName()}'),
),
new OA\Response(
response: StatusCodeInterface::STATUS_NOT_FOUND,
description: 'Not Found',
),
],
)]
COMM;
// phpcs:enable Generic.Files.LineLength.TooLong
}
if ($apiGetCollectionHandler->exists()) {
$class
->useClass($apiGetCollectionHandler->getComponent()->getFqcn())
->useClass($collection->getFqcn());
// phpcs:disable Generic.Files.LineLength.TooLong
$comments[] = <<<COMM
/**
* @see {$apiGetCollectionHandler->getComponent()->getClassName()}::handle()
*/
#[OA\Get(
path: '/{$entity->toKebabCase()}',
description: 'Authenticated (super)admin fetches a list of {$entity->toPlural()}',
summary: 'Admin lists {$entity->toPlural()}',
security: [['AuthToken' => []]],
tags: ['{$entity->getClassName()}'],
parameters: [
new OA\Parameter(
name: 'page',
description: 'Page number',
in: 'query',
required: false,
schema: new OA\Schema(type: 'integer'),
example: 1,
),
new OA\Parameter(
name: 'limit',
description: 'Limit',
in: 'query',
required: false,
schema: new OA\Schema(type: 'integer'),
example: 10,
),
new OA\Parameter(
name: 'order',
description: 'Sort by field',
in: 'query',
required: false,
schema: new OA\Schema(type: 'string'),
examples: [
new OA\Examples(example: '{$entity->toCamelCase()}.created', summary: 'Created', value: '{$entity->toCamelCase()}.created'),
new OA\Examples(example: '{$entity->toCamelCase()}.updated', summary: 'Updated', value: '{$entity->toCamelCase()}.updated'),
],
),
new OA\Parameter(
name: 'dir',
description: 'Sort direction',
in: 'query',
required: false,
schema: new OA\Schema(type: 'string'),
examples: [
new OA\Examples(example: 'desc', summary: 'Sort descending', value: 'desc'),
new OA\Examples(example: 'asc', summary: 'Sort ascending', value: 'asc'),
],
),
],
responses: [
new OA\Response(
response: StatusCodeInterface::STATUS_OK,
description: 'List of {$entity->toPlural()}',
content: new OA\JsonContent(ref: '#/components/schemas/{$collection->getClassName()}'),
),
new OA\Response(
response: StatusCodeInterface::STATUS_BAD_REQUEST,
description: 'Bad Request',
content: new OA\JsonContent(ref: '#/components/schemas/ErrorMessage'),
),
new OA\Response(
response: StatusCodeInterface::STATUS_NOT_FOUND,
description: 'Not Found',
),
],
)]
COMM;
// phpcs:enable Generic.Files.LineLength.TooLong
}
if ($apiPatchResourceHandler->exists()) {
$class->useClass($apiPatchResourceHandler->getComponent()->getFqcn());
// phpcs:disable Generic.Files.LineLength.TooLong
$comments[] = <<<COMM
/**
* @see {$apiPatchResourceHandler->getComponent()->getClassName()}::handle()
*/
#[OA\Patch(
path: '/{$entity->toKebabCase()}/{uuid}',
description: 'Authenticated (super)admin updates an existing {$entity->getClassName()}',
summary: 'Admin updates an existing {$entity->getClassName()}',
security: [['AuthToken' => []]],
requestBody: new OA\RequestBody(
description: 'Update {$entity->getClassName()} request',
required: true,
content: new OA\JsonContent(
properties: [],
type: 'object',
),
),
tags: ['{$entity->getClassName()}'],
parameters: [
new OA\Parameter(
name: 'uuid',
description: '{$entity->getClassName()} UUID',
in: 'path',
required: true,
schema: new OA\Schema(type: 'string'),
),
],
responses: [
new OA\Response(
response: StatusCodeInterface::STATUS_OK,
description: '{$entity->getClassName()} updated',
content: new OA\JsonContent(ref: '#/components/schemas/{$entity->getClassName()}'),
),
new OA\Response(
response: StatusCodeInterface::STATUS_BAD_REQUEST,
description: 'Bad Request',
content: new OA\JsonContent(ref: '#/components/schemas/ErrorMessage'),
),
new OA\Response(
response: StatusCodeInterface::STATUS_CONFLICT,
description: 'Conflict',
content: new OA\JsonContent(ref: '#/components/schemas/ErrorMessage'),
),
new OA\Response(
response: StatusCodeInterface::STATUS_NOT_FOUND,
description: 'Not Found',
content: new OA\JsonContent(ref: '#/components/schemas/ErrorMessage'),
),
],
)]
COMM;
// phpcs:enable Generic.Files.LineLength.TooLong
}
if ($apiPostResourceHandler->exists()) {
$class->useClass($apiPostResourceHandler->getComponent()->getFqcn());
// phpcs:disable Generic.Files.LineLength.TooLong
$comments[] = <<<COMM
/**
* @see {$apiPostResourceHandler->getComponent()->getClassName()}::handle()
*/
#[OA\Post(
path: '/{$entity->toKebabCase()}',
description: 'Authenticated (super)admin creates a new {$entity->getClassName()}',
summary: 'Admin creates a new {$entity->getClassName()}',
security: [['AuthToken' => []]],
requestBody: new OA\RequestBody(
description: 'Create {$entity->getClassName()} request',
required: true,
content: new OA\JsonContent(
required: [],
properties: [],
type: 'object',
),
),
tags: ['{$entity->getClassName()}'],
responses: [
new OA\Response(
response: StatusCodeInterface::STATUS_CREATED,
description: '{$entity->getClassName()} created',
content: new OA\JsonContent(ref: '#/components/schemas/{$entity->getClassName()}'),
),
new OA\Response(
response: StatusCodeInterface::STATUS_BAD_REQUEST,
description: 'Bad Request',
content: new OA\JsonContent(ref: '#/components/schemas/ErrorMessage'),
),
new OA\Response(
response: StatusCodeInterface::STATUS_CONFLICT,
description: 'Conflict',
content: new OA\JsonContent(ref: '#/components/schemas/ErrorMessage'),
),
new OA\Response(
response: StatusCodeInterface::STATUS_NOT_FOUND,
description: 'Not Found',
content: new OA\JsonContent(ref: '#/components/schemas/ErrorMessage'),
),
],
)]
COMM;
// phpcs:enable Generic.Files.LineLength.TooLong
}
if ($apiPutResourceHandler->exists()) {
$class->useClass($apiPutResourceHandler->getComponent()->getFqcn());
// phpcs:disable Generic.Files.LineLength.TooLong
$comments[] = <<<COMM
/**
* @see {$apiPutResourceHandler->getComponent()->getClassName()}::handle()
*/
#[OA\Put(
path: '/{$entity->toKebabCase()}/{uuid}',
description: 'Authenticated (super)admin replaces an existing {$entity->getClassName()}',
summary: 'Admin updates an existing {$entity->getClassName()}',
security: [['AuthToken' => []]],
requestBody: new OA\RequestBody(
description: 'Replace {$entity->getClassName()} request',
required: true,
content: new OA\JsonContent(
properties: [],
type: 'object',
),
),
tags: ['{$entity->getClassName()}'],
parameters: [
new OA\Parameter(
name: 'uuid',
description: '{$entity->getClassName()} UUID',
in: 'path',
required: true,
schema: new OA\Schema(type: 'string'),
),
],
responses: [
new OA\Response(
response: StatusCodeInterface::STATUS_OK,
description: '{$entity->getClassName()} updated',
content: new OA\JsonContent(ref: '#/components/schemas/{$entity->getClassName()}'),
),
new OA\Response(
response: StatusCodeInterface::STATUS_BAD_REQUEST,
description: 'Bad Request',
content: new OA\JsonContent(ref: '#/components/schemas/ErrorMessage'),
),
new OA\Response(
response: StatusCodeInterface::STATUS_CONFLICT,
description: 'Conflict',
content: new OA\JsonContent(ref: '#/components/schemas/ErrorMessage'),
),
new OA\Response(
response: StatusCodeInterface::STATUS_NOT_FOUND,
description: 'Not Found',
content: new OA\JsonContent(ref: '#/components/schemas/ErrorMessage'),
),
],
)]
COMM;
// phpcs:enable Generic.Files.LineLength.TooLong
}
// phpcs:disable Generic.Files.LineLength.TooLong
$comments[] = <<<COMM
/**
* @see {$entity->getClassName()}
*/
#[OA\Schema(
schema: '{$entity->getClassName()}',
properties: [
new OA\Property(property: 'uuid', type: 'string', example: '1234abcd-abcd-4321-12ab-123456abcdef'),
new OA\Property(property: 'created', type: 'object', example: new DateTimeImmutable()),
new OA\Property(property: 'updated', type: 'object', example: new DateTimeImmutable()),
new OA\Property(
property: '_links',
properties: [
new OA\Property(
property: 'self',
properties: [
new OA\Property(
property: 'href',
type: 'string',
example: 'https://example.com/{$entity->toKebabCase()}/1234abcd-abcd-4321-12ab-123456abcdef',
),
],
type: 'object',
),
],
type: 'object',
),
],
type: 'object',
)]
COMM;
// phpcs:enable Generic.Files.LineLength.TooLong
$comments[] = <<<COMM
/**
* @see {$collection->getClassName()}
*/
#[OA\Schema(
schema: '{$collection->getClassName()}',
properties: [
new OA\Property(
property: '_embedded',
properties: [
new OA\Property(
property: '{$entity->toPlural()}',
type: 'array',
items: new OA\Items(
ref: '#/components/schemas/{$entity->getClassName()}',
),
),
],
type: 'object',
),
],
type: 'object',
allOf: [
new OA\Schema(ref: '#/components/schemas/Collection'),
],
)]
COMM;
$class->setComment(implode(PHP_EOL . PHP_EOL, $comments));
return $class->render();
}
}