API Platform: How to change the serialization context dynamically
Why would you dynamically change the serialization context?
Suppose you have a Book
entity where most of its field can be managed by any user, but some can be managed only by admin users:
Notice the admin:input
serialization group. We want to detect if the current user is an admin, and if so, dynamically add the admin:input
value to the deserialization context. This way, we can restrict reading or writing of specific fields only to admins.
Dynamically set the normalization/denormalization context for all instances of an entity
API Platform provides you with a ContextBuilder
, that can prepare the context for serialization and deserialization. You can decorate the ContextBuilde
r service to override its createFromRequest
method:
This tells the Symfony service container that the App\Serializer\BookContextBuilder
service replaces the default context builder service with the id api_platform.serializer.context_builder
.
The arguments
option will pass the given arguments to the decorating service:
Now, if the subject is an instance of Book
, the user has ROLE_ADMIN
and the context is for denormalization (instead of normalization), then the admin:input
gorup will be dynamically added to the denormalization context.
Dynamically set the normalization/denormalization context on a per-item basis
Suppose you want to add certain serialization groups only if the current user has access to the given book. For example, you might want to add a can_retrieve_book
serialization group if the user is the owner of the book.
You can do this by registering a custom normalizer that conditionally adds a serialization group based on some logic:
The logic for checking if the normalizer is already called helps prevent recursive calls.
Sources
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment