You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -52,6 +54,38 @@ it will be discovered and used whenever a `MyPayload` object is returned by a co
52
54
53
55
With default config just put the class into `src/Responder/MyPayloadHandler.php` and you are done.
54
56
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
+
```
55
89
56
90
### Treat some exceptions as response payload
57
91
@@ -117,3 +151,50 @@ Now you can just create a `App\Responder\MyGoodRuntimeExceptionHandler` as descr
117
151
118
152
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.
119
153
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;
0 commit comments