core: make autosubmit_form generic template
This commit is contained in:
parent
1e57926603
commit
d831599608
|
@ -4,9 +4,7 @@
|
|||
{% load i18n %}
|
||||
|
||||
{% block title %}
|
||||
{% blocktrans with app=application.name %}
|
||||
Redirecting to {{ app }}...
|
||||
{% endblocktrans %}
|
||||
{{ title }}
|
||||
{% endblock %}
|
||||
|
||||
{% block card %}
|
|
@ -7,6 +7,7 @@ from django.http import HttpRequest, HttpResponse
|
|||
from django.shortcuts import get_object_or_404, redirect, render, reverse
|
||||
from django.utils.decorators import method_decorator
|
||||
from django.utils.http import urlencode
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
from django.views import View
|
||||
from django.views.decorators.csrf import csrf_exempt
|
||||
from signxml.util import strip_pem_header
|
||||
|
@ -190,10 +191,10 @@ class SAMLFlowFinalView(StageView):
|
|||
if provider.sp_binding == SAMLBindings.POST:
|
||||
return render(
|
||||
self.request,
|
||||
"providers/saml/autosubmit_form.html",
|
||||
"generic/autosubmit_form.html",
|
||||
{
|
||||
"url": response.acs_url,
|
||||
"application": application,
|
||||
"title": _("Redirecting to %(app)s..." % {"app": application.name}),
|
||||
"attrs": {
|
||||
"ACSUrl": response.acs_url,
|
||||
SESSION_KEY_SAML_RESPONSE: response.saml_response,
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
|
||||
from django import forms
|
||||
|
||||
from passbook.flows.models import Flow, FlowDesignation
|
||||
from passbook.admin.forms.source import SOURCE_FORM_FIELDS
|
||||
from passbook.flows.models import Flow, FlowDesignation
|
||||
from passbook.sources.saml.models import SAMLSource
|
||||
|
||||
|
||||
|
|
|
@ -6,13 +6,21 @@ from django.db import migrations, models
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('passbook_sources_saml', '0003_auto_20200624_1957'),
|
||||
("passbook_sources_saml", "0003_auto_20200624_1957"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='samlsource',
|
||||
name='binding_type',
|
||||
field=models.CharField(choices=[('REDIRECT', 'Redirect Binding'), ('POST', 'POST Binding'), ('POST_AUTO', 'POST Binding with auto-confirmation')], default='REDIRECT', max_length=100),
|
||||
model_name="samlsource",
|
||||
name="binding_type",
|
||||
field=models.CharField(
|
||||
choices=[
|
||||
("REDIRECT", "Redirect Binding"),
|
||||
("POST", "POST Binding"),
|
||||
("POST_AUTO", "POST Binding with auto-confirmation"),
|
||||
],
|
||||
default="REDIRECT",
|
||||
max_length=100,
|
||||
),
|
||||
),
|
||||
]
|
||||
|
|
|
@ -5,6 +5,7 @@ from django.http import Http404, HttpRequest, HttpResponse
|
|||
from django.shortcuts import get_object_or_404, redirect, render
|
||||
from django.utils.decorators import method_decorator
|
||||
from django.utils.http import urlencode
|
||||
from django.utils.translation import gettext_lazy as _
|
||||
from django.views import View
|
||||
from django.views.decorators.csrf import csrf_exempt
|
||||
from signxml import InvalidSignature
|
||||
|
@ -64,13 +65,10 @@ class InitiateView(View):
|
|||
if source.binding_type == SAMLBindingTypes.POST_AUTO:
|
||||
return render(
|
||||
request,
|
||||
"providers/saml/autosubmit_form.html",
|
||||
"generic/autosubmit_form.html",
|
||||
{
|
||||
"application": source,
|
||||
"attrs": {
|
||||
"SAMLRequest": _request,
|
||||
"RelayState": relay_state,
|
||||
},
|
||||
"title": _("Redirecting to %(app)s..." % {"app": source.name}),
|
||||
"attrs": {"SAMLRequest": _request, "RelayState": relay_state},
|
||||
"url": source.sso_url,
|
||||
},
|
||||
)
|
||||
|
|
|
@ -6511,6 +6511,7 @@ definitions:
|
|||
enum:
|
||||
- REDIRECT
|
||||
- POST
|
||||
- POST_AUTO
|
||||
slo_url:
|
||||
title: SLO URL
|
||||
description: Optional URL if your IDP supports Single-Logout.
|
||||
|
|
Reference in New Issue