1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/* |
4
|
|
|
* This file is part of the OpenapiBundle package. |
5
|
|
|
* |
6
|
|
|
* (c) Niels Nijens <[email protected]> |
7
|
|
|
* |
8
|
|
|
* For the full copyright and license information, please view the LICENSE |
9
|
|
|
* file that was distributed with this source code. |
10
|
|
|
*/ |
11
|
|
|
|
12
|
|
|
namespace Nijens\OpenapiBundle\Service; |
13
|
|
|
|
14
|
|
|
use Exception; |
15
|
|
|
use Nijens\OpenapiBundle\Exception\HttpExceptionInterface; |
16
|
|
|
use Symfony\Component\HttpFoundation\JsonResponse; |
17
|
|
|
use Symfony\Component\HttpKernel\Exception\HttpException; |
18
|
|
|
|
19
|
|
|
/** |
20
|
|
|
* Builds a JSON response to an exception for OpenAPI routes. |
21
|
|
|
* |
22
|
|
|
* @author David Cochrum <[email protected]> |
23
|
|
|
*/ |
24
|
|
|
class JsonResponseBuilderException implements JsonResponseBuilderExceptionInterface |
25
|
|
|
{ |
26
|
|
|
/** |
27
|
|
|
* The boolean indicating if the kernel is in debug mode. |
28
|
|
|
* |
29
|
|
|
* @var bool |
30
|
|
|
*/ |
31
|
|
|
private $debugMode; |
32
|
|
|
|
33
|
|
|
/** |
34
|
|
|
* Default constructor. |
35
|
|
|
* |
36
|
|
|
* @param bool $debugMode |
37
|
|
|
*/ |
38
|
|
|
public function __construct(bool $debugMode) |
39
|
|
|
{ |
40
|
|
|
$this->debugMode = $debugMode; |
41
|
|
|
} |
42
|
|
|
|
43
|
|
|
/** |
44
|
|
|
* {@inheritdoc} |
45
|
|
|
*/ |
46
|
|
|
public function build(Exception $exception): JsonResponse |
47
|
|
|
{ |
48
|
|
|
$response = new JsonResponse(); |
49
|
|
|
|
50
|
|
|
$statusCode = JsonResponse::HTTP_INTERNAL_SERVER_ERROR; |
51
|
|
|
$message = 'Unexpected error.'; |
52
|
|
|
|
53
|
|
|
if ($exception instanceof HttpException) { |
54
|
|
|
$statusCode = $exception->getStatusCode(); |
55
|
|
|
} |
56
|
|
|
|
57
|
|
|
if ($this->debugMode || $exception instanceof HttpException) { |
58
|
|
|
$message = $exception->getMessage(); |
59
|
|
|
} |
60
|
|
|
|
61
|
|
|
$responseBody = array('message' => $message); |
62
|
|
|
if ($exception instanceof HttpExceptionInterface) { |
63
|
|
|
$responseBody['errors'] = array_map(function ($error) { |
64
|
|
|
return $error['message']; |
65
|
|
|
}, $exception->getErrors()); |
66
|
|
|
} |
67
|
|
|
|
68
|
|
|
$response->setStatusCode($statusCode); |
69
|
|
|
$response->setData($responseBody); |
70
|
|
|
|
71
|
|
|
return $response; |
72
|
|
|
} |
73
|
|
|
} |
74
|
|
|
|