-
-
Notifications
You must be signed in to change notification settings - Fork 5.2k
[Serializer] Document Normalizers #10515
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
.. index:: | ||
single: Serializer; Custom normalizers | ||
|
||
How to Create your Custom Normalizer | ||
==================================== | ||
|
||
The :doc:`Serializer Component </components/serializer>` uses Normalizers | ||
to transform any data to an array. | ||
|
||
The Component provides several built-in normalizer that are described | ||
:doc:`in their own section </serializer/normalizers>` but you may want | ||
to use another structure that's not supported. | ||
|
||
Creating a new normalizer | ||
------------------------- | ||
|
||
Imagine you want add, modify, or remove some properties during the serialization | ||
process. For that you'll have to create your own normalizer. But it's usually | ||
preferable to let Symfony normalize the object, then hook into the normalization | ||
to customize the normalized data. To do that, we leverage the ObjectNormalizer:: | ||
|
||
namespace AppBundle\Serializer; | ||
|
||
use AppBundle\Entity\Topic; | ||
use Symfony\Component\Routing\Generator\UrlGeneratorInterface; | ||
use Symfony\Component\Serializer\Normalizer\NormalizerInterface; | ||
use Symfony\Component\Serializer\Normalizer\ObjectNormalizer; | ||
|
||
class TopicNormalizer implements NormalizerInterface | ||
{ | ||
private $router; | ||
private $normalizer; | ||
|
||
public function __construct(UrlGeneratorInterface $router, ObjectNormalizer $normalizer) | ||
{ | ||
$this->router = $router; | ||
$this->normalizer = $normalizer; | ||
} | ||
|
||
public function normalize($topic, $format = null, array $context = array()) | ||
{ | ||
$data = $this->normalizer->normalize($topic, $format, $context); | ||
|
||
// Here, add, edit, or delete some data: | ||
$data['href']['self'] = $this | ||
->router | ||
->generate( | ||
'topic_show', | ||
['id' => $topic->getId()], | ||
UrlGeneratorInterface::ABSOLUTE_URL | ||
) | ||
; | ||
|
||
return $data; | ||
} | ||
|
||
public function supportsNormalization($data, $format = null) | ||
{ | ||
return $data instanceof Topic; | ||
} | ||
} | ||
|
||
Registering it in your app | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. A question for when we merge this into upper branches. Does Symfony autoconfiguration support Normalizers? Thanks! There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes it does ❤️ |
||
-------------------------- | ||
|
||
If you use the Symfony Framework. then you probably want to register this | ||
normalizer as a service in your app. Then, you only need to tag it with | ||
``serializer.normalizer`` to inject your custom normalizer into the Serializer. | ||
|
||
.. configuration-block:: | ||
|
||
.. code-block:: yaml | ||
|
||
# app/config/services.yml | ||
services: | ||
app.yaml_encoder: | ||
class: AppBundle\Serializer\TopicNormalizer | ||
tags: | ||
- { name: serializer.normalizer } | ||
|
||
.. code-block:: xml | ||
|
||
<!-- app/config/services.xml --> | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<container xmlns="http://symfony.com/schema/dic/services" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://symfony.com/schema/dic/services http://symfony.com/schema/dic/services/services-1.0.xsd"> | ||
|
||
<services> | ||
<service id="app.yaml_encoder" class="AppBundle\Serializer\TopicNormalizer"> | ||
<tag name="serializer.normalizer" /> | ||
</service> | ||
</services> | ||
</container> | ||
|
||
.. code-block:: php | ||
|
||
// app/config/services.php | ||
use AppBundle\Serializer\TopicNormalizer; | ||
|
||
$container | ||
->register('app.yaml_encoder', TopicNormalizer::class) | ||
->addTag('serializer.normalizer') | ||
; | ||
|
||
.. _tracker: https://github.com/symfony/symfony/issues |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
.. index:: | ||
single: Serializer, Normalizers | ||
|
||
Normalizers | ||
=========== | ||
|
||
Normalizer basically turn **objects** into **array** and vice versa. | ||
They implement | ||
:class:`Symfony\\Component\\Serializer\\Normalizers\\NormalizerInterface` for | ||
normalizing (object to array) and | ||
:class:`Symfony\\Component\\Serializer\\Normalizers\\DenormalizerInterface` for | ||
denormalizing (object to array). | ||
|
||
You can add new normalizers to a Serializer instance by using its first constructor argument:: | ||
|
||
use Symfony\Component\Serializer\Serializer; | ||
use Symfony\Component\Serializer\Normalizer\ObjectNormalizer; | ||
|
||
$normalizers = array(new ObjectNormalizer()); | ||
$serializer = new Serializer($normalizers); | ||
|
||
Built-in Normalizers | ||
-------------------- | ||
|
||
* :class:`Symfony\\Component\\Serializer\\Normalizer\\ObjectNormalizer` to normalizer PHP object using the PropertyAccessor component; | ||
* :class:`Symfony\\Component\\Serializer\\Normalizer\\CustomNormalizer` to normalizer PHP object using object that implements ``:class:`Symfony\\Component\\Serializer\\Normalizer\\NormalizableInterface``; | ||
* :class:`Symfony\\Component\\Serializer\\Normalizer\\GetSetMethodNormalizer` to normalizer PHP object using getter and setter of the object; | ||
* :class:`Symfony\\Component\\Serializer\\Normalizer\\PropertyNormalizer` to normalizer PHP object using PHP reflection. |
This comment was marked as resolved.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I copied the schema of https://symfony.com/doc/current/serializer/custom_encoders.html ; So are you sure I should be not consistant with existing documentation?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fair enough, lets keep it then 👍