39 lines
1.5 KiB
Python
39 lines
1.5 KiB
Python
"""
|
|
Extra views required for SSO
|
|
"""
|
|
from django.conf import settings
|
|
from django.core.urlresolvers import reverse
|
|
from django.http import HttpResponse, HttpResponseServerError, Http404
|
|
from django.shortcuts import redirect
|
|
from social.apps.django_app.utils import load_strategy, load_backend
|
|
from .models import SAMLConfiguration
|
|
|
|
|
|
def inactive_user_view(request):
|
|
"""
|
|
A newly registered user has completed the social auth pipeline.
|
|
Their account is not yet activated, but we let them login this once.
|
|
"""
|
|
# 'next' may be set to '/account/finish_auth/.../' if this user needs to be auto-enrolled
|
|
# in a course. Otherwise, just redirect them to the dashboard, which displays a message
|
|
# about activating their account.
|
|
return redirect(request.GET.get('next', 'dashboard'))
|
|
|
|
|
|
def saml_metadata_view(request):
|
|
"""
|
|
Get the Service Provider metadata for this edx-platform instance.
|
|
You must send this XML to any Shibboleth Identity Provider that you wish to use.
|
|
"""
|
|
if not SAMLConfiguration.is_enabled():
|
|
raise Http404
|
|
complete_url = reverse('social:complete', args=("tpa-saml", ))
|
|
if settings.APPEND_SLASH and not complete_url.endswith('/'):
|
|
complete_url = complete_url + '/' # Required for consistency
|
|
saml_backend = load_backend(load_strategy(request), "tpa-saml", redirect_uri=complete_url)
|
|
metadata, errors = saml_backend.generate_metadata_xml()
|
|
|
|
if not errors:
|
|
return HttpResponse(content=metadata, content_type='text/xml')
|
|
return HttpResponseServerError(content=', '.join(errors))
|