Skip to content
Snippets Groups Projects
Verified Commit 9f97f27a authored by Tom Teichler's avatar Tom Teichler :beers:
Browse files

Allow sync of additional fields

parent a01789a3
No related branches found
No related tags found
1 merge request!2Resolve "Sync additional LDAP fields after login"
......@@ -24,6 +24,14 @@ CONSTANCE_CONFIG = {
_("LDAP sync matching fields"),
"matching-fields-select",
),
"LDAP_SYNC_ADDITIONAL_FIELDS": (True, _("Sync additional fields such as postal address or date of birth."), bool)
"LDAP_SYNC_FIELD_STREET": (None, _("Field for street"), str),
"LDAP_SYNC_FIELD_HOUSENUMBER": (None, _("Field for house number"), str),
"LDAP_SYNC_FIELD_POSTAL_CODE": (None, _("Field for postal code"), str),
"LDAP_SYNC_FIELD_PLACE": (None, _("Field for place"), str),
"LDAP_SYNC_FIELD_PHONE_NUMBER": (None, _("Field for phone number"), str),
"LDAP_SYNC_FIELD_MOBILE_NUMBER": (None, _("Field for mobile number"), str),
"LDAP_SYNC_FIELD_DATE_OF_BIRTH": (None, _("Field for date of birth"), str),
}
CONSTANCE_CONFIG_FIELDSETS = {
"LDAP-Sync settings": (
......@@ -31,5 +39,12 @@ CONSTANCE_CONFIG_FIELDSETS = {
"LDAP_SYNC_CREATE",
"LDAP_SYNC_ON_UPDATE",
"LDAP_MATCHING_FIELDS",
"LDAP_SYNC_FIELD_STREET",
"LDAP_SYNC_FIELD_HOUSENUMBER",
"LDAP_SYNC_FIELD_POSTAL_CODE",
"LDAP_SYNC_FIELD_PLACE",
"LDAP_SYNC_FIELD_PHONE_NUMBER",
"LDAP_SYNC_FIELD_MOBILE_NUMBER",
"LDAP_SYNC_FIELD_DATE_OF_BIRTH",
),
}
......@@ -35,6 +35,17 @@ def ldap_create_user(sender, instance, created, raw, using, update_fields, **kwa
email=instance.email,
)
# Sync additional fields if enabled in config.
if config.LDAP_SYNC_ADDITIONAL_FIELDS:
ldap_user = instance.ldap_user
person.street = ldap_user.attrs.data[config.LDAP_SYNC_FIELD_STREET]
person.housenumber = ldap_user.attrs.data[config.LDAP_SYNC_FIELD_HOUSENUMBER]
person.postal_code = ldap_user.attrs.data[config.LDAP_SYNC_FIELD_POSTAL_CODE]
person.place = ldap_user.attrs.data[config.LDAP_SYNC_FIELD_PLACE]
person.phone_number = ldap_user.attrs.data[config.LDAP_SYNC_FIELD_PHONE_NUMBER]
person.mobile_number = ldap_user.attrs.data[config.LDAP_SYNC_FIELD_MOBILE_NUMBER]
person.date_of_birth = ldap_user.attrs.data[config.LDAP_SYNC_FIELD_DATE_OF_BIRTH]
# Save person if enabled in config or no new person was created.
if config.LDAP_SYNC_CREATE or not created:
person.user = instance
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment