This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/passbook/sources/ldap/migrations/0003_auto_20191011_0825.py

34 lines
1.0 KiB
Python
Raw Normal View History

# Generated by Django 2.2.6 on 2019-10-11 08:25
from django.apps.registry import Apps
from django.db import migrations
def create_default_ad_property_mappings(apps: Apps, schema_editor):
2019-12-31 11:51:16 +00:00
LDAPPropertyMapping = apps.get_model("passbook_sources_ldap", "LDAPPropertyMapping")
mapping = {
2019-12-31 11:51:16 +00:00
"name": "name",
"givenName": "first_name",
"sn": "last_name",
"sAMAccountName": "username",
"mail": "email",
}
db_alias = schema_editor.connection.alias
for ldap_property, object_field in mapping.items():
LDAPPropertyMapping.objects.using(db_alias).get_or_create(
ldap_property=ldap_property,
object_field=object_field,
defaults={
2019-12-31 11:51:16 +00:00
"name": f"Autogenerated LDAP Mapping: {ldap_property} -> {object_field}"
},
)
class Migration(migrations.Migration):
dependencies = [
2019-12-31 11:51:16 +00:00
("passbook_sources_ldap", "0002_auto_20191011_0825"),
]
2019-12-31 11:51:16 +00:00
operations = [migrations.RunPython(create_default_ad_property_mappings)]