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/ldap/forms.py

51 lines
1.5 KiB
Python
Raw Normal View History

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
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-03-10 18:45:16 +00:00
from passbook.core.forms.policies import GENERAL_FIELDS
from passbook.ldap.models import LDAPGroupMembershipPolicy, 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
fields = SOURCE_FORM_FIELDS + ['server_uri', 'bind_cn', 'bind_password',
'type', 'domain', 'base_dn', 'create_user',
2019-02-21 15:06:57 +00:00
'reset_password']
2018-11-26 21:09:04 +00:00
widgets = {
'name': forms.TextInput(),
'server_uri': forms.TextInput(),
'bind_cn': forms.TextInput(),
'bind_password': forms.TextInput(),
'domain': forms.TextInput(),
'base_dn': forms.TextInput(),
'policies': FilteredSelectMultiple(_('policies'), False)
2018-11-26 21:09:04 +00:00
}
2019-02-21 15:06:57 +00:00
labels = {
'server_uri': _('Server URI'),
'bind_cn': _('Bind CN'),
'base_dn': _('Base DN'),
}
2018-11-26 17:22:38 +00:00
2018-11-11 12:41:48 +00:00
2019-03-10 18:45:16 +00:00
class LDAPGroupMembershipPolicyForm(forms.ModelForm):
"""LDAPGroupMembershipPolicy Form"""
2018-11-11 12:41:48 +00:00
2019-03-10 18:45:16 +00:00
class Meta:
2018-11-11 12:41:48 +00:00
2019-03-10 18:45:16 +00:00
model = LDAPGroupMembershipPolicy
fields = GENERAL_FIELDS + ['dn', ]
widgets = {
'name': forms.TextInput(),
'dn': forms.TextInput(),
}
labels = {
'dn': _('DN')
}