Provide mixin and tool to generate custom endpoints on the fly.
Project description
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
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
/!IMPORTANT /!when working w/ multiple workers you MUST restart the instance every time you add or modify a route from the UI (eg: w/ the endpoint module) otherwise is not granted that the routing map is going to be up to date on all workers. @simahawk as already a POC to fix this.
add api docs helpers
allow multiple HTTP methods on the same endpoint
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 smashing it by providing a detailed and welcomed feedback.
Do not contact contributors directly about support or help with technical issues.
Credits
Contributors
Simone Orsi <simone.orsi@camptocamp.com>
Maintainers
This module is maintained by the OCA.
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:
This module is part of the OCA/web-api project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file odoo14_addon_endpoint_route_handler-14.0.2.0.1.dev2-py3-none-any.whl
.
File metadata
- Download URL: odoo14_addon_endpoint_route_handler-14.0.2.0.1.dev2-py3-none-any.whl
- Upload date:
- Size: 45.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1763ae88f91882397dbbed156a18da81ef57715b41bc979c0a2024f0a5c0f03 |
|
MD5 | 8fd3f75c62d974bd3dce7ae10289f56f |
|
BLAKE2b-256 | 49dc86e05c4e6caaa6fad88e6d2a278a0447d588bf2870afe814eee6aad1f637 |