2018-11-26 21:40:10 +00:00
|
|
|
"""passbook SAML IDP Forms"""
|
|
|
|
|
|
|
|
from django import forms
|
2019-03-10 17:34:09 +00:00
|
|
|
from django.contrib.admin.widgets import FilteredSelectMultiple
|
|
|
|
from django.utils.translation import gettext as _
|
2018-11-26 21:40:10 +00:00
|
|
|
|
2019-12-31 11:51:16 +00:00
|
|
|
from passbook.providers.saml.models import (
|
|
|
|
SAMLPropertyMapping,
|
|
|
|
SAMLProvider,
|
|
|
|
get_provider_choices,
|
|
|
|
)
|
2018-11-26 21:40:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SAMLProviderForm(forms.ModelForm):
|
|
|
|
"""SAML Provider form"""
|
|
|
|
|
2019-12-31 11:51:16 +00:00
|
|
|
processor_path = forms.ChoiceField(
|
|
|
|
choices=get_provider_choices(), label="Processor"
|
|
|
|
)
|
2018-12-09 22:06:14 +00:00
|
|
|
|
2018-11-26 21:40:10 +00:00
|
|
|
class Meta:
|
|
|
|
|
|
|
|
model = SAMLProvider
|
2019-12-31 11:51:16 +00:00
|
|
|
fields = [
|
|
|
|
"name",
|
2020-02-14 14:19:48 +00:00
|
|
|
"processor_path",
|
2019-12-31 11:51:16 +00:00
|
|
|
"acs_url",
|
|
|
|
"audience",
|
|
|
|
"issuer",
|
2020-02-14 14:19:48 +00:00
|
|
|
"assertion_valid_not_before",
|
|
|
|
"assertion_valid_not_on_or_after",
|
|
|
|
"session_valid_not_on_or_after",
|
|
|
|
"property_mappings",
|
2020-02-17 15:28:18 +00:00
|
|
|
"digest_algorithm",
|
2020-05-06 16:03:12 +00:00
|
|
|
"require_signing",
|
2020-02-17 15:28:18 +00:00
|
|
|
"signature_algorithm",
|
2020-03-05 16:09:08 +00:00
|
|
|
"signing_kp",
|
2019-12-31 11:51:16 +00:00
|
|
|
]
|
2018-12-09 22:06:14 +00:00
|
|
|
widgets = {
|
2019-12-31 11:51:16 +00:00
|
|
|
"name": forms.TextInput(),
|
|
|
|
"audience": forms.TextInput(),
|
|
|
|
"issuer": forms.TextInput(),
|
2020-02-14 14:19:48 +00:00
|
|
|
"assertion_valid_not_before": forms.TextInput(),
|
|
|
|
"assertion_valid_not_on_or_after": forms.TextInput(),
|
|
|
|
"session_valid_not_on_or_after": forms.TextInput(),
|
2019-12-31 11:51:16 +00:00
|
|
|
"property_mappings": FilteredSelectMultiple(_("Property Mappings"), False),
|
2018-12-09 22:06:14 +00:00
|
|
|
}
|
2019-03-08 11:47:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SAMLPropertyMappingForm(forms.ModelForm):
|
|
|
|
"""SAML Property Mapping form"""
|
|
|
|
|
2020-02-17 19:30:14 +00:00
|
|
|
template_name = "saml/idp/property_mapping_form.html"
|
|
|
|
|
2019-03-08 11:47:50 +00:00
|
|
|
class Meta:
|
|
|
|
|
|
|
|
model = SAMLPropertyMapping
|
2020-02-17 19:38:14 +00:00
|
|
|
fields = ["name", "saml_name", "friendly_name", "expression"]
|
2019-03-08 11:47:50 +00:00
|
|
|
widgets = {
|
2019-12-31 11:51:16 +00:00
|
|
|
"name": forms.TextInput(),
|
|
|
|
"saml_name": forms.TextInput(),
|
|
|
|
"friendly_name": forms.TextInput(),
|
2019-03-08 14:11:01 +00:00
|
|
|
}
|