23 lines
787 B
Python
23 lines
787 B
Python
|
"""Dispatch OAuth views to respective views"""
|
||
|
from django.http import Http404
|
||
|
from django.shortcuts import get_object_or_404
|
||
|
from django.views import View
|
||
|
|
||
|
from passbook.oauth_client.models import OAuthSource
|
||
|
from passbook.oauth_client.source_types.manager import MANAGER, RequestKind
|
||
|
|
||
|
|
||
|
class DispatcherView(View):
|
||
|
"""Dispatch OAuth Redirect/Callback views to their proper class based on URL parameters"""
|
||
|
|
||
|
kind = ''
|
||
|
|
||
|
def dispatch(self, *args, **kwargs):
|
||
|
"""Find Source by slug and forward request"""
|
||
|
slug = kwargs.get('source_slug', None)
|
||
|
if not slug:
|
||
|
raise Http404
|
||
|
source = get_object_or_404(OAuthSource, slug=slug)
|
||
|
view = MANAGER.find(source, kind=RequestKind(self.kind))
|
||
|
return view.as_view()(*args, **kwargs)
|