64 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# """Supervisr Mod LDAP Forms"""
 | 
						|
 | 
						|
# from django import forms
 | 
						|
# from django.utils.translation import ugettext_lazy as _
 | 
						|
 | 
						|
# from supervisr.core.forms.settings import SettingsForm
 | 
						|
 | 
						|
 | 
						|
# class GeneralSettingsForm(SettingsForm):
 | 
						|
#     """general settings form"""
 | 
						|
#     MODE_AUTHENTICATION_BACKEND = 'auth_backend'
 | 
						|
#     MODE_CREATE_USERS = 'create_users'
 | 
						|
#     MODE_CHOICES = (
 | 
						|
#         (MODE_AUTHENTICATION_BACKEND, _('Authentication Backend')),
 | 
						|
#         (MODE_CREATE_USERS, _('Create Users'))
 | 
						|
#     )
 | 
						|
 | 
						|
#     namespace = 'supervisr.mod.auth.ldap'
 | 
						|
#     settings = ['enabled', 'mode']
 | 
						|
 | 
						|
#     widgets = {
 | 
						|
#         'enabled': forms.BooleanField(required=False),
 | 
						|
#         'mode': forms.ChoiceField(widget=forms.RadioSelect, choices=MODE_CHOICES),
 | 
						|
#     }
 | 
						|
 | 
						|
 | 
						|
# class ConnectionSettings(SettingsForm):
 | 
						|
#     """Connection settings form"""
 | 
						|
 | 
						|
#     namespace = 'supervisr.mod.auth.ldap'
 | 
						|
#     settings = ['server', 'server:tls', 'bind:user', 'bind:password', 'domain']
 | 
						|
 | 
						|
#     attrs_map = {
 | 
						|
#         'server': {'placeholder': 'dc1.corp.exmaple.com'},
 | 
						|
#         'bind:user': {'placeholder': 'Administrator'},
 | 
						|
#         'domain': {'placeholder': 'corp.example.com'},
 | 
						|
#     }
 | 
						|
 | 
						|
#     widgets = {
 | 
						|
#         'server:tls': forms.BooleanField(required=False, label=_('Server TLS')),
 | 
						|
#     }
 | 
						|
 | 
						|
 | 
						|
# class AuthenticationBackendSettings(SettingsForm):
 | 
						|
#     """Authentication backend settings"""
 | 
						|
 | 
						|
#     namespace = 'supervisr.mod.auth.ldap'
 | 
						|
#     settings = ['base']
 | 
						|
 | 
						|
#     attrs_map = {
 | 
						|
#         'base': {'placeholder': 'DN in which to search for users'},
 | 
						|
#     }
 | 
						|
 | 
						|
 | 
						|
# class CreateUsersSettings(SettingsForm):
 | 
						|
#     """Create users settings"""
 | 
						|
 | 
						|
#     namespace = 'supervisr.mod.auth.ldap'
 | 
						|
#     settings = ['create_base']
 | 
						|
 | 
						|
#     attrs_map = {
 | 
						|
#         'create_base': {'placeholder': 'DN in which to create users'},
 | 
						|
#     }
 |