This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/passbook/providers/saml/forms.py

63 lines
1.7 KiB
Python
Raw Normal View History

2018-11-26 21:40:10 +00:00
"""passbook SAML IDP Forms"""
from django import forms
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-11-26 21:40:10 +00:00
class Meta:
model = SAMLProvider
2019-12-31 11:51:16 +00:00
fields = [
"name",
"processor_path",
2019-12-31 11:51:16 +00:00
"acs_url",
"audience",
"issuer",
"assertion_valid_not_before",
"assertion_valid_not_on_or_after",
"session_valid_not_on_or_after",
"property_mappings",
"digest_algorithm",
"signature_algorithm",
2020-03-03 22:35:50 +00:00
"singing_kp",
2019-12-31 11:51:16 +00:00
]
widgets = {
2019-12-31 11:51:16 +00:00
"name": forms.TextInput(),
"audience": forms.TextInput(),
"issuer": forms.TextInput(),
"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),
}
class SAMLPropertyMappingForm(forms.ModelForm):
"""SAML Property Mapping form"""
template_name = "saml/idp/property_mapping_form.html"
class Meta:
model = SAMLPropertyMapping
fields = ["name", "saml_name", "friendly_name", "expression"]
widgets = {
2019-12-31 11:51:16 +00:00
"name": forms.TextInput(),
"saml_name": forms.TextInput(),
"friendly_name": forms.TextInput(),
}