2019-11-07 16:02:56 +00:00
|
|
|
"""passbook SAML SP Forms"""
|
|
|
|
|
|
|
|
from django import forms
|
|
|
|
|
2019-11-07 16:28:59 +00:00
|
|
|
from passbook.admin.forms.source import SOURCE_FORM_FIELDS
|
2019-11-07 16:02:56 +00:00
|
|
|
from passbook.sources.saml.models import SAMLSource
|
|
|
|
|
|
|
|
|
|
|
|
class SAMLSourceForm(forms.ModelForm):
|
|
|
|
"""SAML Provider form"""
|
|
|
|
|
|
|
|
class Meta:
|
|
|
|
|
|
|
|
model = SAMLSource
|
2019-12-31 11:51:16 +00:00
|
|
|
fields = SOURCE_FORM_FIELDS + [
|
2020-02-20 20:33:45 +00:00
|
|
|
"issuer",
|
2020-06-24 20:27:14 +00:00
|
|
|
"sso_url",
|
2020-06-23 19:49:27 +00:00
|
|
|
"binding_type",
|
2020-06-24 20:27:14 +00:00
|
|
|
"slo_url",
|
|
|
|
"temporary_user_delete_after",
|
2020-03-03 22:35:38 +00:00
|
|
|
"signing_kp",
|
2019-12-31 11:51:16 +00:00
|
|
|
]
|
2019-11-07 16:02:56 +00:00
|
|
|
widgets = {
|
2019-12-31 11:51:16 +00:00
|
|
|
"name": forms.TextInput(),
|
2020-02-20 20:33:45 +00:00
|
|
|
"issuer": forms.TextInput(),
|
2020-06-24 20:27:14 +00:00
|
|
|
"sso_url": forms.TextInput(),
|
|
|
|
"slo_url": forms.TextInput(),
|
|
|
|
"temporary_user_delete_after": forms.TextInput(),
|
2019-11-07 16:02:56 +00:00
|
|
|
}
|