This patch enables catching HttpError exception raised by PSA because of any issue caused at client/server. Further it redirects user to login page with a message about the error. LEARNER-4344
51 lines
2.1 KiB
Python
51 lines
2.1 KiB
Python
"""Middleware classes for third_party_auth."""
|
|
|
|
import urlparse
|
|
|
|
from django.contrib import messages
|
|
from django.shortcuts import redirect
|
|
from django.urls import reverse
|
|
from django.utils.translation import ugettext as _
|
|
from requests import HTTPError
|
|
from social_django.middleware import SocialAuthExceptionMiddleware
|
|
|
|
from student.helpers import get_next_url_for_login_page
|
|
|
|
from . import pipeline
|
|
|
|
|
|
class ExceptionMiddleware(SocialAuthExceptionMiddleware):
|
|
"""Custom middleware that handles conditional redirection."""
|
|
|
|
def get_redirect_uri(self, request, exception):
|
|
# Fall back to django settings's SOCIAL_AUTH_LOGIN_ERROR_URL.
|
|
redirect_uri = super(ExceptionMiddleware, self).get_redirect_uri(request, exception)
|
|
|
|
# Safe because it's already been validated by
|
|
# pipeline.parse_query_params. If that pipeline step ever moves later
|
|
# in the pipeline stack, we'd need to validate this value because it
|
|
# would be an injection point for attacker data.
|
|
auth_entry = request.session.get(pipeline.AUTH_ENTRY_KEY)
|
|
|
|
# Check if we have an auth entry key we can use instead
|
|
if auth_entry and auth_entry in pipeline.AUTH_DISPATCH_URLS:
|
|
redirect_uri = pipeline.AUTH_DISPATCH_URLS[auth_entry]
|
|
|
|
return redirect_uri
|
|
|
|
def process_exception(self, request, exception):
|
|
"""Handles specific exception raised by Python Social Auth eg HTTPError."""
|
|
|
|
referer_url = request.META.get('HTTP_REFERER', '')
|
|
if (referer_url and isinstance(exception, HTTPError) and
|
|
exception.response.status_code == 502):
|
|
referer_url = urlparse.urlparse(referer_url).path
|
|
if referer_url == reverse('signin_user'):
|
|
messages.error(request, _('Unable to connect with the external provider, please try again'),
|
|
extra_tags='social-auth')
|
|
|
|
redirect_url = get_next_url_for_login_page(request)
|
|
return redirect('/login?next=' + redirect_url)
|
|
|
|
return super(ExceptionMiddleware, self).process_exception(request, exception)
|