2018-11-26 21:40:10 +00:00
|
|
|
"""passbook SAML IDP Forms"""
|
|
|
|
|
|
|
|
from django import forms
|
|
|
|
|
2019-03-08 11:47:50 +00:00
|
|
|
from passbook.saml_idp.models import (SAMLPropertyMapping, SAMLProvider,
|
|
|
|
get_provider_choices)
|
2018-12-26 16:21:20 +00:00
|
|
|
from passbook.saml_idp.utils import CertificateBuilder
|
2018-11-26 21:40:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SAMLProviderForm(forms.ModelForm):
|
|
|
|
"""SAML Provider form"""
|
|
|
|
|
2018-12-09 22:06:14 +00:00
|
|
|
processor_path = forms.ChoiceField(choices=get_provider_choices(), label='Processor')
|
|
|
|
|
2018-12-26 16:21:20 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
builder = CertificateBuilder()
|
|
|
|
builder.build()
|
|
|
|
self.fields['signing_cert'].initial = builder.certificate
|
|
|
|
self.fields['signing_key'].initial = builder.private_key
|
|
|
|
|
2018-11-26 21:40:10 +00:00
|
|
|
class Meta:
|
|
|
|
|
|
|
|
model = SAMLProvider
|
2019-03-08 11:47:50 +00:00
|
|
|
fields = ['name', 'property_mappings', 'acs_url', 'processor_path', 'issuer',
|
2018-12-09 22:06:14 +00:00
|
|
|
'assertion_valid_for', 'signing', 'signing_cert', 'signing_key', ]
|
|
|
|
labels = {
|
|
|
|
'acs_url': 'ACS URL',
|
|
|
|
'signing_cert': 'Singing Certificate',
|
|
|
|
}
|
|
|
|
widgets = {
|
|
|
|
'name': forms.TextInput(),
|
|
|
|
'issuer': forms.TextInput(),
|
|
|
|
}
|
2019-03-08 11:47:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SAMLPropertyMappingForm(forms.ModelForm):
|
|
|
|
"""SAML Property Mapping form"""
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
|
|
|
model = SAMLPropertyMapping
|
|
|
|
fields = ['name', 'saml_name', 'friendly_name', 'values']
|
|
|
|
widgets = {
|
|
|
|
'name': forms.TextInput(),
|
|
|
|
'saml_name': forms.TextInput(),
|
|
|
|
'friendly_name': forms.TextInput(),
|
|
|
|
}
|