softfineware/discriminator-default-normalizer

Symfony serializer normalizer for normalizing to parent object in case of not found DiscriminatorMap

1.1.0 2023-02-01 16:28 UTC

This package is auto-updated.

Last update: 2024-05-01 00:13:10 UTC


README

Test commit

How to use it

use SoftFineWare\SerializerDiscriminatorDefault\Attributes\DiscriminatorDefault;
use Symfony\Component\Serializer\Annotation\DiscriminatorMap;

#[DiscriminatorDefault(class: DefaultRequest::class)]
#[DiscriminatorMap(typeProperty: 'type', mapping: [
    'a' => ARequest::class,
])]
abstract class BaseRequest
{
    public function __construct(
        public readonly string $id,
        public readonly string $type
    )
    {
    }
}
class DefaultRequest extends BaseRequest {}

In case of no match json will de denormalized to default class specifing by DiscriminatorDefault attribute

DiscriminatorDefault should not point to a class with DiscriminatorMap new child class must be create as DefaultRequest above

Installation

This normalizer must have priority -999 before:

\Symfony\Component\Serializer\Normalizer\ObjectNormalizer::class