-
Notifications
You must be signed in to change notification settings - Fork 0
/
auth.py
130 lines (109 loc) · 3.45 KB
/
auth.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
import json
import os
from flask import request, _request_ctx_stack
from functools import wraps
from jose import jwt
from urllib.request import urlopen
AUTH0_DOMAIN = os.environ['AUTH0_D']
ALGORITHMS = [os.environ['AUTH0_ALGO']]
API_AUDIENCE = os.environ['AUTH0_API']
# AuthError Exception
'''
AuthError Exception
'''
class AuthError(Exception):
def __init__(self, error, status_code):
self.error = error
self.status_code = status_code
# Auth Header
def get_token_auth_header():
if "Authorization" in request.headers:
auth_header = request.headers["Authorization"]
if auth_header:
bearer_token_array = auth_header.split(' ')
if bearer_token_array[0] and bearer_token_array[0].lower(
) == "bearer" and bearer_token_array[1]:
return bearer_token_array[1]
raise AuthError({
'success': False,
'message': 'JWT not found',
'error': 401
}, 401)
'''
It will check if the required permission is in payload or not
'''
def check_permissions(permission, payload):
if "permissions" in payload:
if permission in payload['permissions']:
return True
raise AuthError({
'success': False,
'message': 'Permission not found in JWT',
'error': 401
}, 401)
def verify_decode_jwt(token):
# GET THE PUBLIC KEY FROM AUTH0
jsonurl = urlopen(f'http://{AUTH0_DOMAIN}/.well-known/jwks.json')
jwks = json.loads(jsonurl.read())
# GET THE DATA IN THE HEADER
unverified_header = jwt.get_unverified_header(token)
# CHOOSE OUR KEY
rsa_key = {}
if 'kid' not in unverified_header:
raise AuthError({
'success': False,
'message': 'Authorization malformed',
'error': 401,
}, 401)
for key in jwks['keys']:
if key['kid'] == unverified_header['kid']:
rsa_key = {
'kty': key['kty'],
'kid': key['kid'],
'use': key['use'],
'n': key['n'],
'e': key['e']
}
if rsa_key:
try:
payload = jwt.decode(
token,
rsa_key,
algorithms=ALGORITHMS,
audience=API_AUDIENCE,
issuer='https://' + AUTH0_DOMAIN + '/'
)
return payload
except jwt.ExpiredSignatureError:
raise AuthError({
'success': False,
'message': 'Token expired',
'error': 401,
}, 401)
except jwt.JWTClaimsError:
raise AuthError({
'success': False,
'message': 'Incorrect claims. Please, check the audience and issuer',
'error': 401,
}, 401)
except Exception:
raise AuthError({
'success': False,
'message': 'Unable to parse authentication token',
'error': 400,
}, 400)
raise AuthError({
'success': False,
'message': 'Unable to find the appropriate key',
'error': 400,
}, 400)
def requires_auth(permission=''):
def requires_auth_decorator(f):
@wraps(f)
def wrapper(*args, **kwargs):
token = get_token_auth_header()
payload = verify_decode_jwt(token)
check_permissions(permission, payload)
return f(*args, **kwargs)
return wrapper
return requires_auth_decorator