forked from Github-Mirrors/canaille
337 lines
11 KiB
Python
337 lines
11 KiB
Python
import ldap.dn
|
|
import ldap.filter
|
|
from flask import g
|
|
|
|
from .utils import ldap_to_python
|
|
from .utils import python_to_ldap
|
|
|
|
|
|
class LDAPObject:
|
|
_object_class_by_name = None
|
|
_attribute_type_by_name = None
|
|
_may = None
|
|
_must = None
|
|
base = None
|
|
root_dn = None
|
|
rdn_attribute = None
|
|
attribute_table = None
|
|
object_class = None
|
|
|
|
def __init__(self, dn=None, **kwargs):
|
|
self.attrs = {}
|
|
self.changes = {}
|
|
|
|
kwargs.setdefault("objectClass", self.object_class)
|
|
for name, value in kwargs.items():
|
|
setattr(self, name, value)
|
|
|
|
def __repr__(self):
|
|
return f"<{self.__class__.__name__} {self.rdn_attribute}={self.rdn_value}>"
|
|
|
|
def __eq__(self, other):
|
|
return (
|
|
isinstance(other, self.__class__)
|
|
and self.may() == other.may()
|
|
and self.must() == other.must()
|
|
and all(
|
|
getattr(self, attr) == getattr(other, attr)
|
|
for attr in self.may() + self.must()
|
|
if hasattr(self, attr) and hasattr(other, attr)
|
|
)
|
|
)
|
|
|
|
def __hash__(self):
|
|
return hash(self.dn)
|
|
|
|
def __getattr__(self, name):
|
|
if self.attribute_table:
|
|
name = self.attribute_table.get(name, name)
|
|
|
|
if name not in self.ldap_object_attributes():
|
|
return super().__getattribute__(name)
|
|
|
|
if (
|
|
not self.ldap_object_attributes()
|
|
or not self.ldap_object_attributes()[name].single_value
|
|
):
|
|
return self.changes.get(name, self.attrs.get(name, []))
|
|
|
|
else:
|
|
return self.changes.get(name, self.attrs.get(name, [None]))[0]
|
|
|
|
def __setattr__(self, name, value):
|
|
if self.attribute_table:
|
|
name = self.attribute_table.get(name, name)
|
|
|
|
if name in self.ldap_object_attributes():
|
|
value = [value] if not isinstance(value, list) else value
|
|
self.changes[name] = value
|
|
|
|
else:
|
|
super().__setattr__(name, value)
|
|
|
|
def __getitem__(self, item):
|
|
return getattr(self, item)
|
|
|
|
def __setitem__(self, item, value):
|
|
return setattr(self, item, value)
|
|
|
|
@property
|
|
def rdn_value(self):
|
|
value = getattr(self, self.rdn_attribute)
|
|
return (value[0] if isinstance(value, list) else value).strip()
|
|
|
|
@property
|
|
def dn(self):
|
|
return f"{self.rdn_attribute}={ldap.dn.escape_dn_chars(self.rdn_value)},{self.base},{self.root_dn}"
|
|
|
|
def may(self):
|
|
if not self._may:
|
|
self.update_ldap_attributes()
|
|
return self._may
|
|
|
|
def must(self):
|
|
if not self._must:
|
|
self.update_ldap_attributes()
|
|
return self._must
|
|
|
|
@classmethod
|
|
def ldap_connection(cls):
|
|
return g.ldap_connection
|
|
|
|
@classmethod
|
|
def initialize(cls, conn=None):
|
|
conn = conn or cls.ldap_connection()
|
|
cls.ldap_object_classes(conn)
|
|
cls.ldap_object_attributes(conn)
|
|
|
|
acc = ""
|
|
for organizationalUnit in cls.base.split(",")[::-1]:
|
|
v = organizationalUnit.split("=")[1]
|
|
dn = f"{organizationalUnit}{acc},{cls.root_dn}"
|
|
acc = f",{organizationalUnit}"
|
|
try:
|
|
conn.add_s(
|
|
dn,
|
|
[
|
|
("objectClass", [b"organizationalUnit"]),
|
|
("ou", [v.encode("utf-8")]),
|
|
],
|
|
)
|
|
except ldap.ALREADY_EXISTS:
|
|
pass
|
|
|
|
@classmethod
|
|
def ldap_object_classes(cls, conn=None, force=False):
|
|
if cls._object_class_by_name and not force:
|
|
return cls._object_class_by_name
|
|
|
|
conn = conn or cls.ldap_connection()
|
|
|
|
res = conn.search_s(
|
|
"cn=subschema", ldap.SCOPE_BASE, "(objectclass=*)", ["*", "+"]
|
|
)
|
|
subschema_entry = res[0]
|
|
subschema_subentry = ldap.cidict.cidict(subschema_entry[1])
|
|
subschema = ldap.schema.SubSchema(subschema_subentry)
|
|
object_class_oids = subschema.listall(ldap.schema.models.ObjectClass)
|
|
cls._object_class_by_name = {}
|
|
for oid in object_class_oids:
|
|
object_class = subschema.get_obj(ldap.schema.models.ObjectClass, oid)
|
|
for name in object_class.names:
|
|
cls._object_class_by_name[name] = object_class
|
|
|
|
return cls._object_class_by_name
|
|
|
|
@classmethod
|
|
def ldap_object_attributes(cls, conn=None, force=False):
|
|
if cls._attribute_type_by_name and not force:
|
|
return cls._attribute_type_by_name
|
|
|
|
conn = conn or cls.ldap_connection()
|
|
|
|
res = conn.search_s(
|
|
"cn=subschema", ldap.SCOPE_BASE, "(objectclass=*)", ["*", "+"]
|
|
)
|
|
subschema_entry = res[0]
|
|
subschema_subentry = ldap.cidict.cidict(subschema_entry[1])
|
|
subschema = ldap.schema.SubSchema(subschema_subentry)
|
|
attribute_type_oids = subschema.listall(ldap.schema.models.AttributeType)
|
|
cls._attribute_type_by_name = {}
|
|
for oid in attribute_type_oids:
|
|
object_class = subschema.get_obj(ldap.schema.models.AttributeType, oid)
|
|
for name in object_class.names:
|
|
cls._attribute_type_by_name[name] = object_class
|
|
|
|
return cls._attribute_type_by_name
|
|
|
|
@staticmethod
|
|
def ldap_attrs_to_python(attrs):
|
|
ldap_attrs = LDAPObject.ldap_object_attributes()
|
|
return {
|
|
name: [
|
|
ldap_to_python(
|
|
value, ldap_attrs[name].syntax if name in ldap_attrs else None
|
|
)
|
|
for value in values
|
|
]
|
|
for name, values in attrs.items()
|
|
}
|
|
|
|
@staticmethod
|
|
def python_attrs_to_ldap(attrs):
|
|
ldap_attrs = LDAPObject.ldap_object_attributes()
|
|
return {
|
|
name: [
|
|
python_to_ldap(
|
|
value, ldap_attrs[name].syntax if name in ldap_attrs else None
|
|
)
|
|
for value in values
|
|
]
|
|
for name, values in attrs.items()
|
|
}
|
|
|
|
@classmethod
|
|
def get(cls, dn=None, filter=None, conn=None, **kwargs):
|
|
try:
|
|
return cls.query(dn, filter, conn, **kwargs)[0]
|
|
except (IndexError, ldap.NO_SUCH_OBJECT):
|
|
return None
|
|
|
|
@classmethod
|
|
def query(cls, base=None, filter=None, conn=None, **kwargs):
|
|
conn = conn or cls.ldap_connection()
|
|
|
|
if base is None:
|
|
base = f"{cls.base},{cls.root_dn}"
|
|
elif "=" not in base:
|
|
base = f"{cls.rdn_attribute}={base},{cls.base},{cls.root_dn}"
|
|
|
|
class_filter = (
|
|
"".join([f"(objectClass={oc})" for oc in cls.object_class])
|
|
if hasattr(cls, "object_class")
|
|
else ""
|
|
)
|
|
arg_filter = ""
|
|
for key, value in kwargs.items():
|
|
if cls.attribute_table:
|
|
key = cls.attribute_table.get(key, key)
|
|
|
|
if not isinstance(value, list):
|
|
escaped_value = ldap.filter.escape_filter_chars(value)
|
|
arg_filter += f"({key}={escaped_value})"
|
|
|
|
elif len(value) == 1:
|
|
escaped_value = ldap.filter.escape_filter_chars(value[0])
|
|
arg_filter += f"({key}={escaped_value})"
|
|
|
|
else:
|
|
values = [ldap.filter.escape_filter_chars(v) for v in value]
|
|
arg_filter += (
|
|
"(|" + "".join([f"({key}={value})" for value in values]) + ")"
|
|
)
|
|
|
|
if not filter:
|
|
filter = ""
|
|
elif not filter.startswith("(") and not filter.endswith(")"):
|
|
filter = f"({filter})"
|
|
|
|
ldapfilter = f"(&{class_filter}{arg_filter}{filter})"
|
|
base = base or f"{cls.base},{cls.root_dn}"
|
|
result = conn.search_s(base, ldap.SCOPE_SUBTREE, ldapfilter or None, ["+", "*"])
|
|
|
|
objects = []
|
|
for _, args in result:
|
|
obj = cls()
|
|
obj.attrs = cls.ldap_attrs_to_python(args)
|
|
objects.append(obj)
|
|
return objects
|
|
|
|
@classmethod
|
|
def update_ldap_attributes(cls):
|
|
all_object_classes = cls.ldap_object_classes()
|
|
this_object_classes = {all_object_classes[name] for name in cls.object_class}
|
|
done = set()
|
|
|
|
cls._may = []
|
|
cls._must = []
|
|
while len(this_object_classes) > 0:
|
|
object_class = this_object_classes.pop()
|
|
done.add(object_class)
|
|
this_object_classes |= {
|
|
all_object_classes[ocsup]
|
|
for ocsup in object_class.sup
|
|
if ocsup not in done
|
|
}
|
|
cls._may.extend(object_class.may)
|
|
cls._must.extend(object_class.must)
|
|
|
|
cls._may = list(set(cls._may))
|
|
cls._must = list(set(cls._must))
|
|
|
|
def reload(self, conn=None):
|
|
conn = conn or self.ldap_connection()
|
|
result = conn.search_s(self.dn, ldap.SCOPE_SUBTREE, None, ["+", "*"])
|
|
self.changes = {}
|
|
self.attrs = self.ldap_attrs_to_python(result[0][1])
|
|
|
|
def save(self, conn=None):
|
|
conn = conn or self.ldap_connection()
|
|
try:
|
|
match = bool(conn.search_s(self.dn, ldap.SCOPE_SUBTREE))
|
|
except ldap.NO_SUCH_OBJECT:
|
|
match = False
|
|
|
|
# Object already exists in the LDAP database
|
|
if match:
|
|
deletions = [
|
|
name
|
|
for name, value in self.changes.items()
|
|
if (value is None or value == [None]) and name in self.attrs
|
|
]
|
|
changes = {
|
|
name: value
|
|
for name, value in self.changes.items()
|
|
if name not in deletions and self.attrs.get(name) != value
|
|
}
|
|
formatted_changes = {
|
|
name: value
|
|
for name, value in self.python_attrs_to_ldap(changes).items()
|
|
if value is not None and value != [None]
|
|
}
|
|
modlist = [(ldap.MOD_DELETE, name, None) for name in deletions] + [
|
|
(ldap.MOD_REPLACE, name, values)
|
|
for name, values in formatted_changes.items()
|
|
]
|
|
conn.modify_s(self.dn, modlist)
|
|
|
|
# Object does not exist yet in the LDAP database
|
|
else:
|
|
changes = {
|
|
name: value
|
|
for name, value in {**self.attrs, **self.changes}.items()
|
|
if value and value[0]
|
|
}
|
|
formatted_changes = {
|
|
name: value
|
|
for name, value in self.python_attrs_to_ldap(changes).items()
|
|
if value is not None and value != None
|
|
}
|
|
attributes = [(name, values) for name, values in formatted_changes.items()]
|
|
conn.add_s(self.dn, attributes)
|
|
|
|
self.attrs = {**self.attrs, **self.changes}
|
|
self.changes = {}
|
|
|
|
def update(self, **kwargs):
|
|
for k, v in kwargs.items():
|
|
self.__setattr__(k, v)
|
|
|
|
def delete(self, conn=None):
|
|
conn = conn or self.ldap_connection()
|
|
conn.delete_s(self.dn)
|
|
|
|
def keys(self):
|
|
ldap_keys = self.must() + self.may()
|
|
inverted_table = {value: key for key, value in self.attribute_table.items()}
|
|
return [inverted_table.get(key, key) for key in ldap_keys]
|