diff options
| author | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
|---|---|---|
| committer | stephanchrst <stephanchrst@gmail.com> | 2022-05-10 21:51:50 +0700 |
| commit | 3751379f1e9a4c215fb6eb898b4ccc67659b9ace (patch) | |
| tree | a44932296ef4a9b71d5f010906253d8c53727726 /addons/auth_oauth/models/res_config_settings.py | |
| parent | 0a15094050bfde69a06d6eff798e9a8ddf2b8c21 (diff) | |
initial commit 2
Diffstat (limited to 'addons/auth_oauth/models/res_config_settings.py')
| -rw-r--r-- | addons/auth_oauth/models/res_config_settings.py | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/addons/auth_oauth/models/res_config_settings.py b/addons/auth_oauth/models/res_config_settings.py new file mode 100644 index 00000000..0c20ab66 --- /dev/null +++ b/addons/auth_oauth/models/res_config_settings.py @@ -0,0 +1,39 @@ +# -*- coding: utf-8 -*- +# Part of Odoo. See LICENSE file for full copyright and licensing details. + +import logging + +from odoo import api, fields, models + +_logger = logging.getLogger(__name__) + + +class ResConfigSettings(models.TransientModel): + _inherit = 'res.config.settings' + + @api.model + def get_uri(self): + return "%s/auth_oauth/signin" % (self.env['ir.config_parameter'].get_param('web.base.url')) + + auth_oauth_google_enabled = fields.Boolean(string='Allow users to sign in with Google') + auth_oauth_google_client_id = fields.Char(string='Client ID') + server_uri_google = fields.Char(string='Server uri') + + @api.model + def get_values(self): + res = super(ResConfigSettings, self).get_values() + google_provider = self.env.ref('auth_oauth.provider_google', False) + google_provider and res.update( + auth_oauth_google_enabled=google_provider.enabled, + auth_oauth_google_client_id=google_provider.client_id, + server_uri_google=self.get_uri(), + ) + return res + + def set_values(self): + super(ResConfigSettings, self).set_values() + google_provider = self.env.ref('auth_oauth.provider_google', False) + google_provider and google_provider.write({ + 'enabled': self.auth_oauth_google_enabled, + 'client_id': self.auth_oauth_google_client_id, + }) |
