Skip to content

Commit 030db18

Browse files
committed
docs: describe prioritised response handlers
1 parent 184bea1 commit 030db18

File tree

1 file changed

+83
-2
lines changed

1 file changed

+83
-2
lines changed

README.md

+83-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,11 @@ This bundle makes it easier to follow ADR pattern while writing a [Symfony](http
1010

1111
Decouple responder logic from action logic by moving it out of the controller. Just return the payload!
1212

13-
If a controller returns anything but a `Response` object, Symfony dispatches a `kernel.view` event.
13+
If a controller returns anything but a [`Response`](https://symfony.com/doc/current/components/http_foundation.html#response) object,
14+
Symfony dispatches a `kernel.view` event.
1415

15-
Now instead of registering a bunch of event listeners to be iterated through, implement `ResponseHandlerInterface`.
16+
Now instead of registering a bunch of event listeners to be iterated through,
17+
implement [`ResponseHandlerInterface`](https://github.com/ph-fritsche/symfony-adr/blob/master/src/Responder/ResponseHandlerInterface.php).
1618

1719
```php
1820
namespace App\Responder;
@@ -52,6 +54,38 @@ it will be discovered and used whenever a `MyPayload` object is returned by a co
5254

5355
With default config just put the class into `src/Responder/MyPayloadHandler.php` and you are done.
5456

57+
Your response handler can report its priority in `getSupportedTypes`.
58+
```php
59+
class MyPayloadHandler implements ResponseHandlerInterface
60+
{
61+
public function getSupportedPayloadTypes(): array
62+
{
63+
return [
64+
MyPayload::class => 123,
65+
MyOtherPayload:class => 456,
66+
];
67+
}
68+
//...
69+
}
70+
```
71+
72+
Or you can overwrite the handled types and priorities for response handlers in your `services.yml`.
73+
```yml
74+
services:
75+
App\Responder\MyPayloadHandler:
76+
tags:
77+
- name: pitch_adr.responder
78+
for: [App\Entity\MyPayload]
79+
priority: 1000
80+
- name: pitch_adr.responder
81+
for: [App\Entity\MyOtherPayload]
82+
priority: 0
83+
```
84+
85+
You can easily debug your responder config per console command.
86+
```
87+
$ php bin/console debug:responder MyPayload
88+
```
5589

5690
### Treat some exceptions as response payload
5791

@@ -117,3 +151,50 @@ Now you can just create a `App\Responder\MyGoodRuntimeExceptionHandler` as descr
117151

118152
The bundle automatically adds some response handlers for basic types with negative priority so that they will be called if none of your response handlers stops propagation earlier.
119153
If you don't want the default handlers to be added, you can set `pitch_adr.defaultResponseHandlers: false` on your container parameters.
154+
155+
### Prioritised response handlers
156+
157+
If consecutive response handlers (in the order of config priority) implement [`PrioritisedResponseHandlerInterface`](https://github.com/ph-fritsche/symfony-adr/blob/master/src/Responder/PrioritisedResponseHandlerInterface.php), that block of handlers will be reordered on runtime according the priority they report for the specific request per `getResponseHandlerPriority`.
158+
159+
```
160+
Given the following response handlers are configured to handle a `SomePayloadType`:
161+
162+
900: HandlerA
163+
600: PrioritisedHandler1 with getResponseHandlerPriority(): 1
164+
500: PrioritisedHandler2 with getResponseHandlerPriority(): 2
165+
400: PrioritisedHandler3 with getResponseHandlerPriority(): 0
166+
100: HandlerB
167+
168+
these will be executed in the following order:
169+
170+
HandlerA
171+
PrioritisedHandler2
172+
PrioritisedHandler1
173+
PrioritisedHandler3
174+
HandlerB
175+
```
176+
177+
### Negotiating content type in response handlers
178+
179+
See [`JsonResponder`](https://github.com/ph-fritsche/symfony-adr/blob/master/src/Responder/Handler/JsonResponder.php) on how to implement your own prioritised response handlers that handle a payload according to the [Accept](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Accept) header on the request.
180+
181+
You can set a default content type for requests that don't include an Accept header.
182+
This can be done per container parameter or as controller annotation.
183+
184+
```yml
185+
parameters:
186+
pitch_adr.defaultContentType: 'application/json'
187+
```
188+
189+
```php
190+
use Pitch\AdrBundle\Configuration\DefaultContentType;
191+
192+
class MyController
193+
{
194+
#[DefaultContentType('application/json')]
195+
public function __invoke()
196+
{
197+
// ...
198+
}
199+
}
200+
```

0 commit comments

Comments
 (0)