-
-
Notifications
You must be signed in to change notification settings - Fork 116
[18.0][ADD] webservice_server_env: make server_environment an optional dependency #146
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
yankinmax
wants to merge
3
commits into
OCA:18.0
Choose a base branch
from
camptocamp:remove-server-env-dep-webservice
base: 18.0
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,22 @@ | ||
| # Copyright 2026 Camptocamp SA | ||
| # License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl). | ||
|
|
||
| from openupgradelib import openupgrade | ||
|
|
||
| from odoo import _, exceptions | ||
|
|
||
|
|
||
| @openupgrade.migrate() | ||
| def migrate(env, version): | ||
| module = env["ir.module.module"].search([("name", "=", "webservice_server_env")]) | ||
| if not module: | ||
| raise exceptions.UserError( | ||
| _( | ||
| "The 'webservice_server_env' module is not available. " | ||
| "It is required to preserve the server environment managed " | ||
| "fields of 'webservice.backend'. Make it available on the " | ||
| "addons path before upgrading 'webservice'." | ||
| ) | ||
| ) | ||
| if module.state == "uninstalled": | ||
| module.button_install() | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,87 @@ | ||
| ============================= | ||
| WebService Server Environment | ||
| ============================= | ||
|
|
||
| .. | ||
| !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
| !! This file is generated by oca-gen-addon-readme !! | ||
| !! changes will be overwritten. !! | ||
| !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
| !! source digest: sha256:3259abecb5f2052be5402be6eaa2e4a70ee6d401a3b9e1d6fd58499b13c36099 | ||
| !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
|
|
||
| .. |badge1| image:: https://img.shields.io/badge/maturity-Production%2FStable-green.png | ||
| :target: https://odoo-community.org/page/development-status | ||
| :alt: Production/Stable | ||
| .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png | ||
| :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html | ||
| :alt: License: AGPL-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/webservice_server_env | ||
| :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-webservice_server_env | ||
| :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| | ||
|
|
||
| Glue module to make Server Environment features available for the | ||
| Webservice addon. | ||
|
|
||
| **Table of contents** | ||
|
|
||
| .. contents:: | ||
| :local: | ||
|
|
||
| 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:%20webservice_server_env%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 | ||
| ------- | ||
|
|
||
| * Creu Blanca | ||
| * Camptocamp | ||
|
|
||
| Contributors | ||
| ------------ | ||
|
|
||
| - Enric Tobella <etobella@creublanca.es> | ||
| - Daniel Reis <dreis@opensourceintegrators.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-etobella| image:: https://github.com/etobella.png?size=40px | ||
| :target: https://github.com/etobella | ||
| :alt: etobella | ||
|
|
||
| Current `maintainer <https://odoo-community.org/page/maintainer-role>`__: | ||
|
|
||
| |maintainer-etobella| | ||
|
|
||
| This module is part of the `OCA/web-api <https://github.com/OCA/web-api/tree/18.0/webservice_server_env>`_ project on GitHub. | ||
|
|
||
| You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| from . import models | ||
| from .hooks import uninstall_hook |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| # Copyright 2020 Creu Blanca | ||
| # Copyright 2022 Camptocamp SA | ||
| # @author Simone Orsi <simahawk@gmail.com> | ||
| # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
|
||
|
|
||
| { | ||
| "name": "WebService Server Environment", | ||
| "summary": "Use Server Environment feature to manage Webservice configs", | ||
| "version": "18.0.1.0.0", | ||
| "license": "AGPL-3", | ||
| "development_status": "Production/Stable", | ||
| "maintainers": ["etobella"], | ||
| "author": "Creu Blanca, Camptocamp, Odoo Community Association (OCA)", | ||
| "website": "https://github.com/OCA/web-api", | ||
| "depends": ["webservice", "server_environment"], | ||
| "uninstall_hook": "uninstall_hook", | ||
| "auto_install": True, | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,34 @@ | ||
| # Copyright 2025 Camptocamp SA | ||
| # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
|
||
| from odoo.addons.server_environment.uninstall import restore_env_managed_columns | ||
|
|
||
|
|
||
| def uninstall_hook(env): | ||
| """Restore database columns dropped by server.env.mixin. | ||
|
|
||
| When the module is uninstalled, the columns managed by the server | ||
| environment mixin must be restored and repopulated with current values, | ||
| so the database remains usable. | ||
| """ | ||
| restore_env_managed_columns( | ||
| env, | ||
| "webservice.backend", | ||
| [ | ||
| "protocol", | ||
| "url", | ||
| "auth_type", | ||
| "username", | ||
| "password", | ||
| "api_key", | ||
| "api_key_header", | ||
| "content_type", | ||
| "oauth2_flow", | ||
| "oauth2_scope", | ||
| "oauth2_clientid", | ||
| "oauth2_client_secret", | ||
| "oauth2_authorization_url", | ||
| "oauth2_token_url", | ||
| "oauth2_audience", | ||
| ], | ||
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| from . import webservice_backend |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| # Copyright 2020 Creu Blanca | ||
| # Copyright 2022 Camptocamp SA | ||
| # @author Simone Orsi <simahawk@gmail.com> | ||
| # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). | ||
|
|
||
| from odoo import models | ||
|
|
||
|
|
||
| class WebserviceBackend(models.Model): | ||
| _name = "webservice.backend" | ||
| _inherit = ["webservice.backend", "server.env.techname.mixin", "server.env.mixin"] | ||
|
|
||
| @property | ||
| def _server_env_fields(self): | ||
| base_fields = super()._server_env_fields | ||
| webservice_fields = { | ||
| "protocol": {}, | ||
| "url": {}, | ||
| "auth_type": {}, | ||
| "username": {}, | ||
| "password": {}, | ||
| "api_key": {}, | ||
| "api_key_header": {}, | ||
| "content_type": {}, | ||
| "oauth2_flow": {}, | ||
| "oauth2_scope": {}, | ||
| "oauth2_clientid": {}, | ||
| "oauth2_client_secret": {}, | ||
| "oauth2_authorization_url": {}, | ||
| "oauth2_token_url": {}, | ||
| "oauth2_audience": {}, | ||
| } | ||
| webservice_fields.update(base_fields) | ||
| return webservice_fields | ||
|
|
||
| def _compute_server_env(self): | ||
| # OVERRIDE: reset ``oauth2_flow`` when ``auth_type`` is not "oauth2", even if | ||
| # defined otherwise in server env vars | ||
| res = super()._compute_server_env() | ||
| self.filtered(lambda r: r.auth_type != "oauth2").oauth2_flow = None | ||
| return res |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| [build-system] | ||
| requires = ["whool"] | ||
| build-backend = "whool.buildapi" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| - Enric Tobella \<<etobella@creublanca.es>\> | ||
| - Daniel Reis \<<dreis@opensourceintegrators.com>\> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| Glue module to make Server Environment features available for the | ||
| Webservice addon. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in the case that the module is not added, can you provide the uninstall hook to pass all data?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The uninstall hook is here: b175404
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
in the migration should be there if the other module is not installed (it does not exist)
in some cases that could happen if you only add the modules
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What do you mean?
In general we should have two cases:
webserviceis already installed in the database (meaning current database version of the module depends onserver_environment): thenwebserviceupgrade will remove the dependency and upgrade hook will installwebservice_server_env.webserviceis not installed and this is a brand new installation: ifserver_environmentis installed thenwebservice_server_envwill be auto installed, because ofauto_installkey in manifest.In both cases if you decide to uninstall
server_environmentandwebservice_server_envthe uninstall hook will make the fields regular for thewebservice.Can you pls describe the case I need to handle?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, there is a 3rd case (and it happened to me with fs_storage).
You have server_environment and webservice installed. On the update, you don't know that you need the new module, and you don't add it (I use doodba, and I specify exactly the modules I need). On the update, the if is false, as the module is not found, then, you loose all data, leaving your instance without the credentials.
We have 2 options:
1- raise an exception if the module is not found
2- Make it in a way that the module restores data in case the module is not found.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I thought it's actually covered by Odoo with
auto_install: if you potentially specify the list of modules to install, theweb-apisubmodule is present on a branch revision (or even aggregated one is built on top of the branch revision), so you definitely have in the code source thewebservice_server_env, then even if you don't force it in the list it should be auto installed.Am I not right?
@ivantodorovich @simahawk @gurneyalex WDYT?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, but that implies that the module is there. A lot of people is adding the whole branch of modules of the OCA repository, but that is not mandatory. That happened to me, with a system that uses git-aggregate and a process to get only the necessary modules. That could happen to if you use PyPi too. Doing this kind of activities (limiting the modules) allows us to be sure that the modules in the instance are compatible and allows us to make some tests on the instance before pushing it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok, I see....but I still can't get what kind of uninstall hook I need to add. Can you pls suggest the pseudo-code idea?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Something like this:
https://github.com/OCA/web-api/pull/146/changes#diff-477d83525842ed4ad9af6ca90b3a4d7c434ed43d33a48065d35662c006445572
Another option is to raise an Exception, this way this problem is avoided.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@etobella WDYT: