This module provides the auth_jwt_authenticated_or_anonymous_partner
and
auth_jwt_authenticated_or_anonymous_partner_auto_create
FastAPI dependencies.
Table of contents
This module provide the following FastAPI dependencies:
def auth_jwt_authenticated_or_anonymous_partner() -> Partner
This dependency returns the authenticated partner from
fast_api_auth_jwt
auth_jwt_optionally_authenticated_partner
. If not authenticated or no partner is found, look for theshopinvader_anonymous_partner
cookie in the request and return the corresponding partner.If no partner is found, raise a 401 (unauthorized).
def auth_jwt_authenticated_or_anonymous_partner_auto_create() -> Partner
This dependency returns the authenticated partner from
fast_api_auth_jwt
auth_jwt_optionally_authenticated_partner
. If not authenticated or no partner is found, look for theshopinvader_anonymous_partner
cookie in the request and return the corresponding partner.If no partner is found, create an anonymous partner, set the corresponding cookie and return the newly created partner.
The record sets returned from these functions are bound either to the Odoo user defined on the JWT validator (if authenticated), or to the Odoo user defined on the FastAPI endpoint.
These dependencies are suitable and intended to override the
odoo.addon.fastapi.dependencies.authenticated_partner_impl
.
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.
- ACSONE SA/NV
This module is part of the shopinvader/odoo-shopinvader project on GitHub.
You are welcome to contribute.