2018-11-26 17:22:38 +00:00
|
|
|
"""passbook LDAP Forms"""
|
2018-11-11 12:41:48 +00:00
|
|
|
|
2018-11-26 17:22:38 +00:00
|
|
|
from django import forms
|
2019-03-10 17:34:09 +00:00
|
|
|
from django.contrib.admin.widgets import FilteredSelectMultiple
|
2019-02-21 15:06:57 +00:00
|
|
|
from django.utils.translation import gettext_lazy as _
|
2018-11-11 12:41:48 +00:00
|
|
|
|
2018-11-26 17:22:38 +00:00
|
|
|
from passbook.admin.forms.source import SOURCE_FORM_FIELDS
|
2019-10-11 10:53:48 +00:00
|
|
|
from passbook.sources.ldap.models import LDAPPropertyMapping, LDAPSource
|
2018-11-11 12:41:48 +00:00
|
|
|
|
|
|
|
|
2018-11-26 17:22:38 +00:00
|
|
|
class LDAPSourceForm(forms.ModelForm):
|
|
|
|
"""LDAPSource Form"""
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
|
|
|
model = LDAPSource
|
2019-10-10 15:36:09 +00:00
|
|
|
fields = SOURCE_FORM_FIELDS + [
|
2019-12-31 11:51:16 +00:00
|
|
|
"server_uri",
|
|
|
|
"bind_cn",
|
|
|
|
"bind_password",
|
|
|
|
"start_tls",
|
|
|
|
"base_dn",
|
|
|
|
"additional_user_dn",
|
|
|
|
"additional_group_dn",
|
|
|
|
"user_object_filter",
|
|
|
|
"group_object_filter",
|
|
|
|
"user_group_membership_field",
|
|
|
|
"object_uniqueness_field",
|
|
|
|
"sync_groups",
|
|
|
|
"sync_parent_group",
|
|
|
|
"property_mappings",
|
2019-10-10 15:36:09 +00:00
|
|
|
]
|
2018-11-26 21:09:04 +00:00
|
|
|
widgets = {
|
2019-12-31 11:51:16 +00:00
|
|
|
"name": forms.TextInput(),
|
|
|
|
"server_uri": forms.TextInput(),
|
|
|
|
"bind_cn": forms.TextInput(),
|
|
|
|
"bind_password": forms.TextInput(),
|
|
|
|
"base_dn": forms.TextInput(),
|
|
|
|
"additional_user_dn": forms.TextInput(),
|
|
|
|
"additional_group_dn": forms.TextInput(),
|
|
|
|
"user_object_filter": forms.TextInput(),
|
|
|
|
"group_object_filter": forms.TextInput(),
|
|
|
|
"user_group_membership_field": forms.TextInput(),
|
|
|
|
"object_uniqueness_field": forms.TextInput(),
|
|
|
|
"property_mappings": FilteredSelectMultiple(_("Property Mappings"), False),
|
2018-11-26 21:09:04 +00:00
|
|
|
}
|
2019-10-11 10:53:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
class LDAPPropertyMappingForm(forms.ModelForm):
|
|
|
|
"""LDAP Property Mapping form"""
|
|
|
|
|
2020-02-17 19:30:14 +00:00
|
|
|
template_name = "ldap/property_mapping_form.html"
|
|
|
|
|
2019-10-11 10:53:48 +00:00
|
|
|
class Meta:
|
|
|
|
|
|
|
|
model = LDAPPropertyMapping
|
2020-02-17 19:38:14 +00:00
|
|
|
fields = ["name", "object_field", "expression"]
|
2019-10-11 10:53:48 +00:00
|
|
|
widgets = {
|
2019-12-31 11:51:16 +00:00
|
|
|
"name": forms.TextInput(),
|
|
|
|
"ldap_property": forms.TextInput(),
|
|
|
|
"object_field": forms.TextInput(),
|
2019-10-11 10:53:48 +00:00
|
|
|
}
|