forked from swirlai/swirl-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware.py
49 lines (43 loc) · 2.37 KB
/
middleware.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from rest_framework.authtoken.models import Token
from django.http import HttpResponseForbidden
from swirl.models import SearchProvider
from swirl.authenticators import *
import jwt
import logging as logger
class TokenMiddleware:
def __init__(self, get_response):
self.get_response = get_response
def __call__(self, request):
if (request.path == '/swirl/login/' or request.path == '/swirl/oidc_authenticate/' or '/sapi/' not in request.path) and request.path != '/swirl/logout/':
return self.get_response(request)
if 'Authorization' not in request.headers:
return HttpResponseForbidden()
auth_header = request.headers['Authorization']
token = auth_header.split(' ')[1]
try:
token_obj = Token.objects.get(key=token)
request.user = token_obj.user
except Token.DoesNotExist:
return HttpResponseForbidden()
return self.get_response(request)
class SpyglassAuthenticatorsMiddleware:
def __init__(self, get_response):
self.get_response = get_response
def __call__(self, request):
logger.debug(f'SpyglassAuthenticatorsMiddleware: {request.path}')
if request.path == '/swirl/sapi/search/' or request.path == '/api/swirl/sapi/search/':
logger.debug(f'SpyglassAuthenticatorsMiddleware - in the sapi path')
for authenticator in SWIRL_AUTHENTICATORS_DISPATCH.keys():
logger.debug(f'SpyglassAuthenticatorsMiddleware - {authenticator}')
if f'{authenticator}-Authorization' in request.headers:
logger.debug(f'SpyglassAuthenticatorsMiddleware - one we care about')
token = request.headers[f'{authenticator}-Authorization']
expires_in = int(jwt.decode(token, options={"verify_signature": False}, algorithms=["RS256"])['exp'])
## Do we need refresh token ?
SWIRL_AUTHENTICATORS_DISPATCH.get(authenticator)().set_session_data(request, token, '', expires_in)
else:
logger.debug(f'SpyglassAuthenticatorsMiddleware - call set session data NULL TOKEN')
SWIRL_AUTHENTICATORS_DISPATCH.get(authenticator)().set_session_data(request, '', '', 0)
else:
logger.debug(f'SpyglassAuthenticatorsMiddleware - No action')
return self.get_response(request)