33 lines
949 B
Python
33 lines
949 B
Python
"""passbook SAML SP Forms"""
|
|
|
|
from django import forms
|
|
|
|
from passbook.providers.saml.utils import CertificateBuilder
|
|
from passbook.sources.saml.models import SAMLSource
|
|
|
|
|
|
class SAMLSourceForm(forms.ModelForm):
|
|
"""SAML Provider form"""
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
builder = CertificateBuilder()
|
|
builder.build()
|
|
self.fields['signing_cert'].initial = builder.certificate
|
|
|
|
class Meta:
|
|
|
|
model = SAMLSource
|
|
fields = ['name', 'entity_id', 'idp_url', 'idp_logout_url', 'auto_logout', 'signing_cert']
|
|
labels = {
|
|
'entity_id': 'Entity ID',
|
|
'idp_url': 'IDP URL',
|
|
'idp_logout_url': 'IDP Logout URL',
|
|
}
|
|
widgets = {
|
|
'name': forms.TextInput(),
|
|
'entity_id': forms.TextInput(),
|
|
'idp_url': forms.TextInput(),
|
|
'idp_logout_url': forms.TextInput(),
|
|
}
|