odoo-addon-endpoint-route-handler


Nameodoo-addon-endpoint-route-handler JSON
Version 18.0.1.1.0 PyPI version JSON
download
home_pagehttps://github.com/OCA/web-api
SummaryProvide mixin and tool to generate custom endpoints on the fly.
upload_time2025-07-29 13:29:43
maintainerNone
docs_urlNone
authorCamptocamp,Odoo Community Association (OCA)
requires_python>=3.10
licenseLGPL-3
keywords
VCS
bugtrack_url
requirements oauthlib requests-oauthlib responses
Travis-CI No Travis.
coveralls test coverage No coveralls.
            .. image:: https://odoo-community.org/readme-banner-image
   :target: https://odoo-community.org/get-involved?utm_source=readme
   :alt: Odoo Community Association

======================
Endpoint route handler
======================

.. 
   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   !! This file is generated by oca-gen-addon-readme !!
   !! changes will be overwritten.                   !!
   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
   !! source digest: sha256:b9dd15b039dbf78d7a01947b6f273b1487a97ce0911b41b0b5652b2dbbb38456
   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
    :target: https://odoo-community.org/page/development-status
    :alt: Beta
.. |badge2| image:: https://img.shields.io/badge/license-LGPL--3-blue.png
    :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
    :alt: License: LGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb--api-lightgray.png?logo=github
    :target: https://github.com/OCA/web-api/tree/18.0/endpoint_route_handler
    :alt: OCA/web-api
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
    :target: https://translation.odoo-community.org/projects/web-api-18-0/web-api-18-0-endpoint_route_handler
    :alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
    :target: https://runboat.odoo-community.org/builds?repo=OCA/web-api&target_branch=18.0
    :alt: Try me on Runboat

|badge1| |badge2| |badge3| |badge4| |badge5|

Technical module that provides a base handler for adding and removing
controller routes on the fly.

Can be used as a mixin or as a tool.

**Table of contents**

.. contents::
   :local:

Usage
=====

As a mixin
----------

Use standard Odoo inheritance:

::

   class MyModel(models.Model):
       _name = "my.model"
       _inherit = "endpoint.route.handler"

Once you have this, each my.model record will generate a route. You can
have a look at the endpoint module to see a real life example.

The options of the routing rules are defined by the method
\_default_endpoint_options. Here's an example from the endpoint module:

::

   def _default_endpoint_options_handler(self):
       return {
           "klass_dotted_path": "odoo.addons.endpoint.controllers.main.EndpointController",
           "method_name": "auto_endpoint",
           "default_pargs": (self.route,),
       }

As you can see, you have to pass the references to the controller class
and the method to use when the endpoint is called. And you can prepare
some default arguments to pass. In this case, the route of the current
record.

As a tool
---------

Initialize non stored route handlers and generate routes from them. For
instance:

::

   route_handler = self.env["endpoint.route.handler.tool"]
   endpoint_handler = MyController()._my_handler
   vals = {
       "name": "My custom route",
       "route": "/my/custom/route",
       "request_method": "GET",
       "auth_type": "public",
   }
   new_route = route_handler.new(vals)
   new_route._register_controller()

You can override options and define - for instance - a different
controller method:

::

   options = {
       "handler": {
           "klass_dotted_path": "odoo.addons.my_module.controllers.SpecialController",
           "method_name": "my_special_handler",
       }
   }
   new_route._register_controller(options=options)

Of course, what happens when the endpoint gets called depends on the
logic defined on the controller method.

In both cases (mixin and tool) when a new route is generated or an
existing one is updated, the ir.http.routing_map (which holds all Odoo
controllers) will be updated.

You can see a real life example on shopfloor.app model.

Known issues / Roadmap
======================

- add api docs helpers

- allow multiple HTTP methods on the same endpoint

- multiple values for route and methods

     keep the same in the ui for now, later own we can imagine a
     multi-value selection or just add text field w/ proper validation
     and cleanup

     remove the route field in the table of endpoint_route

     support a comma separated list of routes maybe support comma
     separated list of methods use only routing.routes for generating
     the rule sort and freeze its values to update the endpoint hash

     catch dup route exception on the sync to detect duplicated routes
     and use the endpoint_hash to retrieve the real record (note: we
     could store more info in the routing information which will stay in
     the map)

     for customizing the rule behavior the endpoint the hook is to
     override the registry lookup

     make EndpointRule class overridable on the registry

NOTE in v16 we won't care anymore about odoo controller so the lookup of
the controller can be simplified to a basic py obj that holds the
routing info.

Bug Tracker
===========

Bugs are tracked on `GitHub Issues <https://github.com/OCA/web-api/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 <https://github.com/OCA/web-api/issues/new?body=module:%20endpoint_route_handler%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.

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

Credits
=======

Authors
-------

* Camptocamp

Contributors
------------

- Simone Orsi <simone.orsi@camptocamp.com>
- Nguyen Minh Chien <chien@trobz.com>

Maintainers
-----------

This module is maintained by the OCA.

.. image:: https://odoo-community.org/logo.png
   :alt: Odoo Community Association
   :target: https://odoo-community.org

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.

.. |maintainer-simahawk| image:: https://github.com/simahawk.png?size=40px
    :target: https://github.com/simahawk
    :alt: simahawk

Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-simahawk| 

This module is part of the `OCA/web-api <https://github.com/OCA/web-api/tree/18.0/endpoint_route_handler>`_ project on GitHub.

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

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/OCA/web-api",
    "name": "odoo-addon-endpoint-route-handler",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": null,
    "author": "Camptocamp,Odoo Community Association (OCA)",
    "author_email": "support@odoo-community.org",
    "download_url": null,
    "platform": null,
    "description": ".. image:: https://odoo-community.org/readme-banner-image\n   :target: https://odoo-community.org/get-involved?utm_source=readme\n   :alt: Odoo Community Association\n\n======================\nEndpoint route handler\n======================\n\n.. \n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! This file is generated by oca-gen-addon-readme !!\n   !! changes will be overwritten.                   !!\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n   !! source digest: sha256:b9dd15b039dbf78d7a01947b6f273b1487a97ce0911b41b0b5652b2dbbb38456\n   !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!\n\n.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png\n    :target: https://odoo-community.org/page/development-status\n    :alt: Beta\n.. |badge2| image:: https://img.shields.io/badge/license-LGPL--3-blue.png\n    :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html\n    :alt: License: LGPL-3\n.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fweb--api-lightgray.png?logo=github\n    :target: https://github.com/OCA/web-api/tree/18.0/endpoint_route_handler\n    :alt: OCA/web-api\n.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png\n    :target: https://translation.odoo-community.org/projects/web-api-18-0/web-api-18-0-endpoint_route_handler\n    :alt: Translate me on Weblate\n.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png\n    :target: https://runboat.odoo-community.org/builds?repo=OCA/web-api&target_branch=18.0\n    :alt: Try me on Runboat\n\n|badge1| |badge2| |badge3| |badge4| |badge5|\n\nTechnical module that provides a base handler for adding and removing\ncontroller routes on the fly.\n\nCan be used as a mixin or as a tool.\n\n**Table of contents**\n\n.. contents::\n   :local:\n\nUsage\n=====\n\nAs a mixin\n----------\n\nUse standard Odoo inheritance:\n\n::\n\n   class MyModel(models.Model):\n       _name = \"my.model\"\n       _inherit = \"endpoint.route.handler\"\n\nOnce you have this, each my.model record will generate a route. You can\nhave a look at the endpoint module to see a real life example.\n\nThe options of the routing rules are defined by the method\n\\_default_endpoint_options. Here's an example from the endpoint module:\n\n::\n\n   def _default_endpoint_options_handler(self):\n       return {\n           \"klass_dotted_path\": \"odoo.addons.endpoint.controllers.main.EndpointController\",\n           \"method_name\": \"auto_endpoint\",\n           \"default_pargs\": (self.route,),\n       }\n\nAs you can see, you have to pass the references to the controller class\nand the method to use when the endpoint is called. And you can prepare\nsome default arguments to pass. In this case, the route of the current\nrecord.\n\nAs a tool\n---------\n\nInitialize non stored route handlers and generate routes from them. For\ninstance:\n\n::\n\n   route_handler = self.env[\"endpoint.route.handler.tool\"]\n   endpoint_handler = MyController()._my_handler\n   vals = {\n       \"name\": \"My custom route\",\n       \"route\": \"/my/custom/route\",\n       \"request_method\": \"GET\",\n       \"auth_type\": \"public\",\n   }\n   new_route = route_handler.new(vals)\n   new_route._register_controller()\n\nYou can override options and define - for instance - a different\ncontroller method:\n\n::\n\n   options = {\n       \"handler\": {\n           \"klass_dotted_path\": \"odoo.addons.my_module.controllers.SpecialController\",\n           \"method_name\": \"my_special_handler\",\n       }\n   }\n   new_route._register_controller(options=options)\n\nOf course, what happens when the endpoint gets called depends on the\nlogic defined on the controller method.\n\nIn both cases (mixin and tool) when a new route is generated or an\nexisting one is updated, the ir.http.routing_map (which holds all Odoo\ncontrollers) will be updated.\n\nYou can see a real life example on shopfloor.app model.\n\nKnown issues / Roadmap\n======================\n\n- add api docs helpers\n\n- allow multiple HTTP methods on the same endpoint\n\n- multiple values for route and methods\n\n     keep the same in the ui for now, later own we can imagine a\n     multi-value selection or just add text field w/ proper validation\n     and cleanup\n\n     remove the route field in the table of endpoint_route\n\n     support a comma separated list of routes maybe support comma\n     separated list of methods use only routing.routes for generating\n     the rule sort and freeze its values to update the endpoint hash\n\n     catch dup route exception on the sync to detect duplicated routes\n     and use the endpoint_hash to retrieve the real record (note: we\n     could store more info in the routing information which will stay in\n     the map)\n\n     for customizing the rule behavior the endpoint the hook is to\n     override the registry lookup\n\n     make EndpointRule class overridable on the registry\n\nNOTE in v16 we won't care anymore about odoo controller so the lookup of\nthe controller can be simplified to a basic py obj that holds the\nrouting info.\n\nBug Tracker\n===========\n\nBugs are tracked on `GitHub Issues <https://github.com/OCA/web-api/issues>`_.\nIn case of trouble, please check there if your issue has already been reported.\nIf you spotted it first, help us to smash it by providing a detailed and welcomed\n`feedback <https://github.com/OCA/web-api/issues/new?body=module:%20endpoint_route_handler%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.\n\nDo not contact contributors directly about support or help with technical issues.\n\nCredits\n=======\n\nAuthors\n-------\n\n* Camptocamp\n\nContributors\n------------\n\n- Simone Orsi <simone.orsi@camptocamp.com>\n- Nguyen Minh Chien <chien@trobz.com>\n\nMaintainers\n-----------\n\nThis module is maintained by the OCA.\n\n.. image:: https://odoo-community.org/logo.png\n   :alt: Odoo Community Association\n   :target: https://odoo-community.org\n\nOCA, or the Odoo Community Association, is a nonprofit organization whose\nmission is to support the collaborative development of Odoo features and\npromote its widespread use.\n\n.. |maintainer-simahawk| image:: https://github.com/simahawk.png?size=40px\n    :target: https://github.com/simahawk\n    :alt: simahawk\n\nCurrent `maintainer <https://odoo-community.org/page/maintainer-role>`__:\n\n|maintainer-simahawk| \n\nThis module is part of the `OCA/web-api <https://github.com/OCA/web-api/tree/18.0/endpoint_route_handler>`_ project on GitHub.\n\nYou are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.\n",
    "bugtrack_url": null,
    "license": "LGPL-3",
    "summary": "Provide mixin and tool to generate custom endpoints on the fly.",
    "version": "18.0.1.1.0",
    "project_urls": {
        "Homepage": "https://github.com/OCA/web-api"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0eb94df8fbaa68316f645e4ab5559587a42e0d0ec74e3534dcf72eaef77a2a4b",
                "md5": "efe1762c6b79ec35a39e8ac11a7b6fe7",
                "sha256": "9fe77f4b8595f6ab73d8ef11d86d7c54b5211ca0ac07dbcdd7c3605679d98eab"
            },
            "downloads": -1,
            "filename": "odoo_addon_endpoint_route_handler-18.0.1.1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "efe1762c6b79ec35a39e8ac11a7b6fe7",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 50376,
            "upload_time": "2025-07-29T13:29:43",
            "upload_time_iso_8601": "2025-07-29T13:29:43.202560Z",
            "url": "https://files.pythonhosted.org/packages/0e/b9/4df8fbaa68316f645e4ab5559587a42e0d0ec74e3534dcf72eaef77a2a4b/odoo_addon_endpoint_route_handler-18.0.1.1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-29 13:29:43",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "OCA",
    "github_project": "web-api",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [
        {
            "name": "oauthlib",
            "specs": []
        },
        {
            "name": "requests-oauthlib",
            "specs": []
        },
        {
            "name": "responses",
            "specs": []
        }
    ],
    "lcname": "odoo-addon-endpoint-route-handler"
}
        
Elapsed time: 0.88576s