forked from api-platform/demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenApiFactory.php
60 lines (54 loc) · 1.96 KB
/
OpenApiFactory.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
<?php
declare(strict_types=1);
namespace App\OpenApi;
use ApiPlatform\OpenApi\Factory\OpenApiFactoryInterface;
use ApiPlatform\OpenApi\Model\Operation;
use ApiPlatform\OpenApi\Model\PathItem;
use ApiPlatform\OpenApi\OpenApi;
use Symfony\Component\HttpFoundation\Response;
/**
* @author Vincent Chalamon <[email protected]>
*/
final class OpenApiFactory implements OpenApiFactoryInterface
{
public function __construct(private readonly OpenApiFactoryInterface $decorated)
{
}
/**
* {@inheritdoc}
*/
public function __invoke(array $context = []): OpenApi
{
$openApi = ($this->decorated)($context);
$openApi
->getPaths()
->addPath('/stats', new PathItem(null, null, null, new Operation(
'get',
['Stats'],
[
Response::HTTP_OK => [
'content' => [
'application/json' => [
'schema' => [
'type' => 'object',
'properties' => [
'books_count' => [
'type' => 'integer',
'example' => 997,
],
'topbooks_count' => [
'type' => 'integer',
'example' => 101,
],
],
],
],
],
],
],
'Retrieves the number of books and top books (legacy endpoint).'
)
));
return $openApi;
}
}