2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra import fields, models
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
class AuthOAuthProvider(models.Model):
|
|
|
|
"""Class defining the configuration values of an OAuth2 provider"""
|
|
|
|
|
|
|
|
_name = 'auth.oauth.provider'
|
|
|
|
_description = 'OAuth2 provider'
|
|
|
|
_order = 'name'
|
|
|
|
|
|
|
|
name = fields.Char(string='Provider name', required=True) # Name of the OAuth2 entity, Google, etc
|
|
|
|
client_id = fields.Char(string='Client ID') # Our identifier
|
|
|
|
auth_endpoint = fields.Char(string='Authentication URL', required=True) # OAuth provider URL to authenticate users
|
|
|
|
scope = fields.Char() # OAUth user data desired to access
|
|
|
|
validation_endpoint = fields.Char(string='Validation URL', required=True) # OAuth provider URL to validate tokens
|
|
|
|
data_endpoint = fields.Char(string='Data URL')
|
|
|
|
enabled = fields.Boolean(string='Allowed')
|
|
|
|
css_class = fields.Char(string='CSS class', default='zocial')
|
|
|
|
body = fields.Char(required=True)
|
|
|
|
sequence = fields.Integer()
|