Skip to main content

Defines base class for pydantic baser serializer

Project description

Beta License: AGPL-3 OCA/search-engine Translate me on Weblate Try me on Runboat

This module is a technical module that define a new abstract class named PydandicModelSerializer that inherit from odoo.addons.connector_search_engine.tools.serializer.ModelSerializer

This new class define a new abstract method get_model_class. This method is used by the index to get the Pydantic model class to use to generate the json schema.

On the index form, if the serializer is a PydanticModelSerializer, a field is displayed to display the related json schema and therefore provide documentation about the fields exported and their characteristics.

Table of contents

Use Cases / Context

When you export records to a search engine, it’s common to want to provides documentation about the fields exported and their characteristics.

When the serializer used to export the records is a Pydantic model, you can use the json schema generated by Pydantic to provide this documentation.

Usage

When you define a serializer based on a Pydantic model, your serializer class must inherit from PydanticModelSerializer and implement the method get_model_class to take advantage of the functionality provided by this module.

Example:

from typing import Type
from pydantic import BaseModel

from odoo.addons.search_engine_serialize_pydantic.tools.serializer import (
    PydanticModelSerializer,
)


class MyModel(BaseModel):
    name: str
    description: str

    def record_to_model(self, record: Model) -> dict:
        return cls(
            name=record.name,
            description=record.description,
        )

class MyModelSerializer(PydanticModelSerializer):
    def get_model_class(self) -> Type[MyModel]:
        return MyModel

    def serialize(self, record: Model) -> dict:
        model: MyModel = self.get_model_class().record_to_model(record)
        return model.model_dump()

Known issues / Roadmap

  • Add dedicated widget to display in a user friendly way the json schema generated by the serializer on the index form.

Bug Tracker

Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us to smash it by providing a detailed and welcomed feedback.

Do not contact contributors directly about support or help with technical issues.

Credits

Authors

  • ACSONE SA/NV

Contributors

Other credits

The development of this module has been financially supported by:

Maintainers

This module is maintained by the OCA.

Odoo Community Association

OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.

Current maintainer:

lmignon

This module is part of the OCA/search-engine project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page