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.
27 lines
1.1 KiB
27 lines
1.1 KiB
# -*- coding: utf-8 -*-
|
|
# © 2018 Therp BV <https://therp.nl>
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html).
|
|
from odoo import SUPERUSER_ID, api, models, registry
|
|
|
|
|
|
class ResUsers(models.Model):
|
|
_inherit = 'res.users'
|
|
|
|
@classmethod
|
|
def _login(cls, db, login, password):
|
|
user_id = super(ResUsers, cls)._login(db, login, password)
|
|
if not user_id:
|
|
return user_id
|
|
with registry(db).cursor() as cr:
|
|
env = api.Environment(cr, SUPERUSER_ID, {})
|
|
user = env['res.users'].browse(user_id)
|
|
# check if this user came from ldap, rerun get_or_create_user in
|
|
# this case to apply ldap groups if necessary
|
|
ldaps = user.company_id.ldaps
|
|
if user.active and any(ldaps.mapped('only_ldap_groups')):
|
|
for conf in ldaps.get_ldap_dicts():
|
|
entry = ldaps.authenticate(conf, login, password)
|
|
if entry:
|
|
ldaps.get_or_create_user(conf, login, entry)
|
|
break
|
|
return user_id
|