You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
582 B
19 lines
582 B
# Copyright 2018 Therp BV <https://therp.nl>
|
|
# Copyright 2019-2020 initOS GmbH <https://initos.com>
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
from odoo.http import request
|
|
|
|
try:
|
|
from radicale.auth import BaseAuth
|
|
except ImportError:
|
|
BaseAuth = None
|
|
|
|
|
|
class Auth(BaseAuth):
|
|
def login(self, user, password):
|
|
env = request.env
|
|
uid = env['res.users']._login(env.cr.dbname, user, password, {})
|
|
login = request.env['res.users'].browse(uid).login
|
|
if uid:
|
|
request._env = env(user=uid)
|
|
return login
|