2019-11-07 16:02:56 +00:00
|
|
|
"""passbook SAML SP Forms"""
|
|
|
|
|
|
|
|
from django import forms
|
2020-07-12 15:55:09 +00:00
|
|
|
from django.utils.translation import gettext as _
|
2019-11-07 16:02:56 +00:00
|
|
|
|
2019-11-07 16:28:59 +00:00
|
|
|
from passbook.admin.forms.source import SOURCE_FORM_FIELDS
|
2020-07-12 15:22:26 +00:00
|
|
|
from passbook.crypto.models import CertificateKeyPair
|
2020-07-12 15:55:09 +00:00
|
|
|
from passbook.flows.models import Flow, FlowDesignation
|
2019-11-07 16:02:56 +00:00
|
|
|
from passbook.sources.saml.models import SAMLSource
|
|
|
|
|
|
|
|
|
|
|
|
class SAMLSourceForm(forms.ModelForm):
|
|
|
|
"""SAML Provider form"""
|
|
|
|
|
2020-07-08 12:18:08 +00:00
|
|
|
authentication_flow = forms.ModelChoiceField(
|
|
|
|
queryset=Flow.objects.filter(designation=FlowDesignation.AUTHENTICATION)
|
|
|
|
)
|
|
|
|
enrollment_flow = forms.ModelChoiceField(
|
|
|
|
queryset=Flow.objects.filter(designation=FlowDesignation.ENROLLMENT)
|
|
|
|
)
|
2020-07-12 15:22:26 +00:00
|
|
|
signing_kp = forms.ModelChoiceField(
|
|
|
|
queryset=CertificateKeyPair.objects.filter(
|
2020-07-12 15:55:09 +00:00
|
|
|
certificate_data__isnull=False, key_data__isnull=False,
|
2020-07-12 15:22:26 +00:00
|
|
|
),
|
2020-07-12 15:55:09 +00:00
|
|
|
help_text=_("Certificate used to sign Requests."),
|
2020-07-12 15:22:26 +00:00
|
|
|
)
|
2020-07-08 12:18:08 +00:00
|
|
|
|
2019-11-07 16:02:56 +00:00
|
|
|
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-07-08 14:18:02 +00:00
|
|
|
"name_id_policy",
|
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
|
|
|
}
|