mirror of
https://github.com/Kozea/Radicale.git
synced 2025-04-04 21:57:43 +03:00
Fix the problems found by flake8.
This commit is contained in:
parent
5cb16a3a2d
commit
d75b071fec
3 changed files with 28 additions and 26 deletions
|
@ -27,6 +27,7 @@ Following parameters are needed in the configuration
|
|||
from radicale import auth, config
|
||||
from radicale.log import logger
|
||||
|
||||
|
||||
class Auth(auth.BaseAuth):
|
||||
_ldap_uri: str
|
||||
_ldap_base: str
|
||||
|
@ -40,10 +41,12 @@ class Auth(auth.BaseAuth):
|
|||
super().__init__(configuration)
|
||||
try:
|
||||
import ldap3
|
||||
except ImportError as e:
|
||||
self.ldap3 = ldap3
|
||||
except ImportError:
|
||||
try:
|
||||
import ldap
|
||||
self._ldap_version = 2
|
||||
self.ldap = ldap
|
||||
except ImportError as e:
|
||||
raise RuntimeError("LDAP authentication requires the ldap3 module") from e
|
||||
self._ldap_uri = configuration.get("auth", "ldap_uri")
|
||||
|
@ -56,12 +59,12 @@ class Auth(auth.BaseAuth):
|
|||
def _login2(self, login: str, password: str) -> str:
|
||||
try:
|
||||
"""Bind as reader dn"""
|
||||
conn = ldap.initialize(self._ldap_uri)
|
||||
conn = self.ldap.initialize(self._ldap_uri)
|
||||
conn.protocol_version = 3
|
||||
conn.set_option(ldap.OPT_REFERRALS, 0)
|
||||
conn.set_option(self.ldap.OPT_REFERRALS, 0)
|
||||
conn.simple_bind_s(self._ldap_reader_dn, self._ldap_secret)
|
||||
"""Search for the dn of user to authenticate"""
|
||||
res = conn.search_s(self._ldap_base, ldap.SCOPE_SUBTREE, filterstr=self._ldap_filter.format(login), attrlist=['memberOf'])
|
||||
res = conn.search_s(self._ldap_base, self.ldap.SCOPE_SUBTREE, filterstr=self._ldap_filter.format(login), attrlist=['memberOf'])
|
||||
if len(res) == 0:
|
||||
"""User could not be find"""
|
||||
return ""
|
||||
|
@ -74,9 +77,9 @@ class Auth(auth.BaseAuth):
|
|||
|
||||
try:
|
||||
"""Bind as user to authenticate"""
|
||||
conn = ldap.initialize(self._ldap_uri)
|
||||
conn = self.ldap.initialize(self._ldap_uri)
|
||||
conn.protocol_version = 3
|
||||
conn.set_option(ldap.OPT_REFERRALS, 0)
|
||||
conn.set_option(self.ldap.OPT_REFERRALS, 0)
|
||||
conn.simple_bind_s(user_dn, password)
|
||||
tmp = []
|
||||
if self._ldap_load_groups:
|
||||
|
@ -87,14 +90,14 @@ class Auth(auth.BaseAuth):
|
|||
logger.debug("LDAP Auth groups of user: %s", ",".join(self._ldap_groups))
|
||||
conn.unbind()
|
||||
return login
|
||||
except ldap.INVALID_CREDENTIALS:
|
||||
except self.ldap.INVALID_CREDENTIALS:
|
||||
return ""
|
||||
|
||||
def _login3(self, login: str, password: str) -> str:
|
||||
"""Connect the server"""
|
||||
try:
|
||||
server = ldap3.Server(self._ldap_uri)
|
||||
conn = ldap3.Connection(server, self._ldap_reader_dn, password=self._ldap_secret)
|
||||
server = self.ldap3.Server(self._ldap_uri)
|
||||
conn = self.ldap3.Connection(server, self._ldap_reader_dn, password=self._ldap_secret)
|
||||
except self.ldap3.core.exceptions.LDAPSocketOpenError:
|
||||
raise RuntimeError("Unable to reach ldap server")
|
||||
except Exception:
|
||||
|
@ -119,7 +122,7 @@ class Auth(auth.BaseAuth):
|
|||
user_dn = user_entry['dn']
|
||||
try:
|
||||
"""Try to bind as the user itself"""
|
||||
conn = ldap3.Connection(server, user_dn, password=password)
|
||||
conn = self.ldap3.Connection(server, user_dn, password=password)
|
||||
if not conn.bind():
|
||||
return ""
|
||||
if self._ldap_load_groups:
|
||||
|
@ -140,6 +143,5 @@ class Auth(auth.BaseAuth):
|
|||
In the last step the authentication of the user will be proceeded.
|
||||
"""
|
||||
if self._ldap_version == 2:
|
||||
return _login2(self, login, password)
|
||||
return _login3(self, login, password)
|
||||
|
||||
return self._login2(self, login, password)
|
||||
return self._login3(self, login, password)
|
||||
|
|
|
@ -72,7 +72,7 @@ class Rights(rights.BaseRights):
|
|||
allowed_groups = rights_config.get(section, "groups", fallback="").split(",")
|
||||
try:
|
||||
group_match = self._user_groups.intersection(allowed_groups) > 0
|
||||
except:
|
||||
except Exception:
|
||||
pass
|
||||
# Use empty format() for harmonized handling of curly braces
|
||||
user_match = re.fullmatch(user_pattern.format(), user)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue