15
15
16
16
namespace Symfony \Component \HttpKernel ;
17
17
18
+ use Exception ;
18
19
use React \Promise \FulfilledPromise ;
19
20
use React \Promise \PromiseInterface ;
20
21
use React \Promise \RejectedPromise ;
27
28
use Symfony \Component \HttpKernel \Controller \ControllerResolverInterface ;
28
29
use Symfony \Component \HttpKernel \Event \FilterControllerArgumentsEvent ;
29
30
use Symfony \Component \HttpKernel \Event \FilterControllerEvent ;
30
- use Symfony \Component \HttpKernel \Event \FilterResponsePromiseEvent ;
31
+ use Symfony \Component \HttpKernel \Event \FilterResponseEvent ;
31
32
use Symfony \Component \HttpKernel \Event \FinishRequestEvent ;
32
33
use Symfony \Component \HttpKernel \Event \GetResponseEvent ;
33
- use Symfony \Component \HttpKernel \Event \GetResponsePromiseEvent ;
34
- use Symfony \Component \HttpKernel \Event \GetResponsePromiseForExceptionEvent ;
35
- use Symfony \Component \HttpKernel \Event \PromiseEvent ;
34
+ use Symfony \Component \HttpKernel \Event \GetResponseForExceptionEvent ;
36
35
use Symfony \Component \HttpKernel \Exception \AsyncEventDispatcherNeededException ;
37
36
use Symfony \Component \HttpKernel \Exception \BadRequestHttpException ;
38
37
use Symfony \Component \HttpKernel \Exception \HttpExceptionInterface ;
39
38
use Symfony \Component \HttpKernel \Exception \NotFoundHttpException ;
40
- use Throwable ;
41
39
42
40
/**
43
41
* Class AsyncHttpKernel.
@@ -115,7 +113,7 @@ public function handleAsync(
115
113
$ type
116
114
)
117
115
->then (null ,
118
- function (Throwable $ exception ) use ($ request , $ type , $ catch ) {
116
+ function (Exception $ exception ) use ($ request , $ type , $ catch ) {
119
117
if ($ exception instanceof RequestExceptionInterface) {
120
118
$ exception = new BadRequestHttpException ($ exception ->getMessage (), $ exception );
121
119
}
@@ -151,36 +149,19 @@ private function handleAsyncRaw(
151
149
): PromiseInterface {
152
150
$ dispatcher = $ this ->dispatcher ;
153
151
154
- // request
155
- $ event = new GetResponseEvent ($ this , $ request , $ type );
156
- $ this ->dispatcher ->dispatch (KernelEvents::REQUEST , $ event );
157
-
158
- if ($ event ->hasResponse ()) {
159
- return $ this
160
- ->filterResponsePromise (new FulfilledPromise ($ event ->getResponse ()), $ request , $ type );
161
- }
162
-
163
152
$ this ->requestStack ->push ($ request );
164
- $ event = new GetResponsePromiseEvent ($ this , $ request , $ type );
153
+ $ event = new GetResponseEvent ($ this , $ request , $ type );
165
154
166
155
return $ dispatcher
167
- ->asyncDispatch (AsyncKernelEvents::ASYNC_REQUEST , $ event )
168
- ->then (function (PromiseEvent $ event ) use ($ request , $ type ) {
169
- if ($ event ->hasPromise ()) {
170
- return $ event
171
- ->getPromise ()
172
- ->then (function ($ response ) use ($ request , $ type ) {
173
- return $ response instanceof Response
174
- ? $ this ->filterResponsePromise (
175
- new FulfilledPromise ($ response ),
176
- $ request ,
177
- $ type
178
- )
179
- : $ this ->callAsyncController ($ request , $ type );
180
- });
181
- }
182
-
183
- return $ this ->callAsyncController ($ request , $ type );
156
+ ->asyncDispatch (KernelEvents::REQUEST , $ event )
157
+ ->then (function (GetResponseEvent $ event ) use ($ request , $ type ) {
158
+ return $ event ->hasResponse ()
159
+ ? $ this ->filterResponsePromise (
160
+ $ event ->getResponse (),
161
+ $ request ,
162
+ $ type
163
+ )
164
+ : $ this ->callAsyncController ($ request , $ type );
184
165
});
185
166
}
186
167
@@ -212,40 +193,37 @@ private function callAsyncController(Request $request, int $type): PromiseInterf
212
193
$ controller = $ event ->getController ();
213
194
$ arguments = $ event ->getArguments ();
214
195
215
- /**
216
- * Call controller.
217
- *
218
- * @var PromiseInterface
219
- */
220
- $ promise = $ controller (...$ arguments );
221
-
222
- return $ this ->filterResponsePromise ($ promise , $ request , $ type );
196
+ return (new FulfilledPromise ())
197
+ ->then (function () use ($ controller , $ arguments ) {
198
+ return $ controller (...$ arguments );
199
+ })
200
+ ->then (function ($ response ) use ($ request , $ type ) {
201
+ return $ this ->filterResponsePromise ($ response , $ request , $ type );
202
+ });
223
203
}
224
204
225
205
/**
226
206
* Filters a response object.
227
207
*
228
- * @param PromiseInterface $promise
229
- * @param Request $request
230
- * @param int $type
208
+ * @param Response $response
209
+ * @param Request $request
210
+ * @param int $type
231
211
*
232
212
* @return PromiseInterface
233
213
*
234
214
* @throws \RuntimeException if the passed object is not a Response instance
235
215
*/
236
- private function filterResponsePromise (PromiseInterface $ promise , Request $ request , int $ type )
216
+ private function filterResponsePromise (Response $ response , Request $ request , int $ type )
237
217
{
238
- $ event = new FilterResponsePromiseEvent ($ this , $ request , $ type , $ promise );
218
+ $ event = new FilterResponseEvent ($ this , $ request , $ type , $ response );
239
219
240
220
return $ this
241
221
->dispatcher
242
- ->asyncDispatch (AsyncKernelEvents:: ASYNC_RESPONSE , $ event )
243
- ->then (function (PromiseEvent $ event ) use ($ request , $ type, $ promise ) {
222
+ ->asyncDispatch (KernelEvents:: RESPONSE , $ event )
223
+ ->then (function (FilterResponseEvent $ event ) use ($ request , $ type ) {
244
224
$ this ->finishRequestPromise ($ request , $ type );
245
225
246
- return $ event ->hasPromise ()
247
- ? $ event ->getPromise ()
248
- : $ promise ;
226
+ return $ event ->getResponse ();
249
227
});
250
228
}
251
229
@@ -269,50 +247,48 @@ private function finishRequestPromise(Request $request, int $type)
269
247
/**
270
248
* Handles an exception by trying to convert it to a Response.
271
249
*
272
- * @param Throwable $exception
250
+ * @param Exception $exception
273
251
* @param Request $request
274
252
* @param int $type
275
253
*
276
254
* @return PromiseInterface
277
255
*
278
- * @throws \Throwable
256
+ * @throws Exception
279
257
*/
280
258
private function handleExceptionPromise (
281
- Throwable $ exception ,
259
+ Exception $ exception ,
282
260
Request $ request ,
283
261
int $ type
284
262
): PromiseInterface {
285
- $ event = new GetResponsePromiseForExceptionEvent ($ this , $ request , $ type , $ exception );
286
- $ promise = $ this
263
+ $ event = new GetResponseForExceptionEvent ($ this , $ request , $ type , $ exception );
264
+
265
+ return $ this
287
266
->dispatcher
288
- ->asyncDispatch (AsyncKernelEvents:: ASYNC_EXCEPTION , $ event )
289
- ->then (function (GetResponsePromiseForExceptionEvent $ event ) use ($ request , $ type ) {
267
+ ->asyncDispatch (KernelEvents:: EXCEPTION , $ event )
268
+ ->then (function (GetResponseForExceptionEvent $ event ) use ($ request , $ type ) {
290
269
$ exception = $ event ->getException ();
291
- if (!$ event ->hasPromise ()) {
270
+ if (!$ event ->hasResponse ()) {
292
271
$ this ->finishRequestPromise ($ request , $ type );
293
272
294
273
throw $ event ->getException ();
295
274
} else {
296
- return $ event
297
- ->getPromise ()
298
- ->then (function (Response $ response ) use ($ request , $ type , $ event , $ exception ) {
299
- // the developer asked for a specific status code
300
- if (!$ event ->isAllowingCustomResponseCode () && !$ response ->isClientError () && !$ response ->isServerError () && !$ response ->isRedirect ()) {
301
- // ensure that we actually have an error response
302
- if ($ exception instanceof HttpExceptionInterface) {
303
- // keep the HTTP status code and headers
304
- $ response ->setStatusCode ($ exception ->getStatusCode ());
305
- $ response ->headers ->add ($ exception ->getHeaders ());
306
- } else {
307
- $ response ->setStatusCode (500 );
308
- }
309
- }
275
+ $ response = $ event ->getResponse ();
276
+ if (!$ event ->isAllowingCustomResponseCode () && !$ response ->isClientError () && !$ response ->isServerError () && !$ response ->isRedirect ()) {
277
+ // ensure that we actually have an error response
278
+ if ($ exception instanceof HttpExceptionInterface) {
279
+ // keep the HTTP status code and headers
280
+ $ response ->setStatusCode ($ exception ->getStatusCode ());
281
+ $ response ->headers ->add ($ exception ->getHeaders ());
282
+ } else {
283
+ $ response ->setStatusCode (500 );
284
+ }
285
+ }
310
286
311
- return $ response ;
312
- });
287
+ return $ response ;
313
288
}
289
+ })
290
+ ->then (function (Response $ response ) use ($ request , $ type ) {
291
+ return $ this ->filterResponsePromise ($ response , $ request , $ type );
314
292
});
315
-
316
- return $ this ->filterResponsePromise ($ promise , $ request , $ type );
317
293
}
318
294
}
0 commit comments