@@ -18,15 +18,7 @@ class JsonApiHttpResponse extends Response
18
18
*/
19
19
public static function validationError (array $ data ): self
20
20
{
21
- $ content = json_encode ($ data , JSON_THROW_ON_ERROR );
22
-
23
- return new self (
24
- $ content ?: null ,
25
- Response::HTTP_UNPROCESSABLE_ENTITY ,
26
- [
27
- 'Content-Type ' => self ::CONTENT_TYPE ,
28
- ]
29
- );
21
+ return self ::makeError ($ data , Response::HTTP_UNPROCESSABLE_ENTITY );
30
22
}
31
23
32
24
public static function notFound (): self
@@ -47,15 +39,7 @@ public static function notFound(): self
47
39
*/
48
40
public static function badRequest (array $ data ): self
49
41
{
50
- $ content = json_encode ($ data , JSON_THROW_ON_ERROR );
51
-
52
- return new self (
53
- $ content ?: null ,
54
- Response::HTTP_BAD_REQUEST ,
55
- [
56
- 'Content-Type ' => self ::CONTENT_TYPE ,
57
- ]
58
- );
42
+ return self ::makeError ($ data , Response::HTTP_BAD_REQUEST );
59
43
}
60
44
61
45
/**
@@ -65,15 +49,7 @@ public static function badRequest(array $data): self
65
49
*/
66
50
public static function forbidden (array $ data ): self
67
51
{
68
- $ content = json_encode ($ data , JSON_THROW_ON_ERROR );
69
-
70
- return new self (
71
- $ content ?: null ,
72
- Response::HTTP_FORBIDDEN ,
73
- [
74
- 'Content-Type ' => self ::CONTENT_TYPE ,
75
- ]
76
- );
52
+ return self ::makeError ($ data , Response::HTTP_FORBIDDEN );
77
53
}
78
54
79
55
/**
@@ -83,15 +59,7 @@ public static function forbidden(array $data): self
83
59
*/
84
60
public static function unauthorized (array $ data ): self
85
61
{
86
- $ content = json_encode ($ data , JSON_THROW_ON_ERROR );
87
-
88
- return new self (
89
- $ content ?: null ,
90
- Response::HTTP_UNAUTHORIZED ,
91
- [
92
- 'Content-Type ' => self ::CONTENT_TYPE ,
93
- ]
94
- );
62
+ return self ::makeError ($ data , Response::HTTP_UNAUTHORIZED );
95
63
}
96
64
97
65
/**
@@ -101,15 +69,7 @@ public static function unauthorized(array $data): self
101
69
*/
102
70
public static function serverError (array $ data ): self
103
71
{
104
- $ content = json_encode ($ data , JSON_THROW_ON_ERROR );
105
-
106
- return new self (
107
- $ content ?: null ,
108
- Response::HTTP_INTERNAL_SERVER_ERROR ,
109
- [
110
- 'Content-Type ' => self ::CONTENT_TYPE ,
111
- ]
112
- );
72
+ return self ::makeError ($ data , Response::HTTP_INTERNAL_SERVER_ERROR );
113
73
}
114
74
115
75
/**
@@ -118,12 +78,32 @@ public static function serverError(array $data): self
118
78
* @throws \JsonException
119
79
*/
120
80
public static function fromSymfonyHttpException (array $ data , HttpExceptionInterface $ exception ): self
81
+ {
82
+ return self ::makeError ($ data , $ exception ->getStatusCode ());
83
+ }
84
+
85
+ /**
86
+ * @param array<string, mixed> $data
87
+ *
88
+ * @throws \JsonException
89
+ */
90
+ public static function conflict (array $ data ): self
91
+ {
92
+ return self ::makeError ($ data , Response::HTTP_CONFLICT );
93
+ }
94
+
95
+ /**
96
+ * @param array<string, mixed> $data
97
+ *
98
+ * @throws \JsonException
99
+ */
100
+ private static function makeError (array $ data , int $ statusCode ): self
121
101
{
122
102
$ content = json_encode ($ data , JSON_THROW_ON_ERROR );
123
103
124
104
return new self (
125
105
$ content ?: null ,
126
- $ exception -> getStatusCode () ,
106
+ $ statusCode ,
127
107
[
128
108
'Content-Type ' => self ::CONTENT_TYPE ,
129
109
]
0 commit comments