-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.py
196 lines (164 loc) · 5.33 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
# Standard library imports
from functools import wraps
from urllib.request import urlopen
import json
# Third party imports
from flask import request
from jose import jwt
# Application imports
from config import auth0
# Auth0 Vars
AUTH0_DOMAIN = auth0.get('auth0_domain')
AUTH0_ISSUER = f'https://{AUTH0_DOMAIN}/'
ALGORITHMS = auth0.get('algorithms')
API_AUDIENCE = auth0.get('api_audience')
'''
AuthError Exception
A standardized way to communicate auth failure modes
'''
class AuthError(Exception):
def __init__(self, error, status_code):
self.error = error
self.status_code = status_code
'''
it should attempt to get the header from the request
it should raise an AuthError if no header is present
it should attempt to split bearer and the token
it should raise an AuthError if the header is malformed
return the token part of the header
'''
def get_token_auth_header():
auth_header = request.headers.get('Authorization', None)
if auth_header is None:
raise AuthError(
{
'code': 'unauthorized',
'description': 'auth header is missing'
}, 401
)
auth_header_parts = auth_header.split(' ')
if len(auth_header_parts) != 2 or auth_header_parts[0].lower() != 'bearer':
raise AuthError(
{
'code': 'unauthorized',
'description': 'auth header is malformed'
}, 401
)
return auth_header_parts[1]
'''
@INPUTS
permission: string permission (i.e. 'post:drink')
payload: decoded jwt payload
it should raise an AuthError if permissions are not included in the payload
it should raise an AuthError if the requested permission string is not in the payload permissions array
return true otherwise
'''
def check_permissions(permission, payload):
permissions = payload.get('permissions', None)
if permissions is None:
raise AuthError(
{
'code': 'unauthorized',
'description': 'permissions are not included in the payload'
}, 401
)
if permission not in permissions:
raise AuthError(
{
'code': 'unauthorized',
'description': 'requested permission is not in the payload permissions array'
}, 401
)
return True
'''
@INPUTS
token: a json web token (string)
it should be an Auth0 token with key id (kid)
it should verify the token using Auth0 /.well-known/jwks.json
it should decode the payload from the token
it should validate the claims
return the decoded payload
'''
def verify_decode_jwt(token):
try:
unverified_headers = jwt.get_unverified_headers(token)
kid = unverified_headers.get('kid', None)
except:
raise AuthError(
{
'code': 'unauthorized',
'description': 'it should be an Auth0 token with key id (kid)'
}, 401
)
if kid is None:
raise AuthError(
{
'code': 'unauthorized',
'description': 'it should be an Auth0 token with key id (kid)'
}, 401
)
jwks_json = urlopen(f'https://{AUTH0_DOMAIN}/.well-known/jwks.json')
jwks = json.loads(jwks_json.read())
rsa_key = {}
for jwk in jwks['keys']:
if jwk['kid'] == kid:
rsa_key['kty'] = jwk['kty']
rsa_key['kid'] = jwk['kid']
rsa_key['use'] = jwk['use']
rsa_key['n'] = jwk['n']
rsa_key['e'] = jwk['e']
if rsa_key:
try:
payload = jwt.decode(
token=token,
key=rsa_key,
algorithms=ALGORITHMS,
audience=API_AUDIENCE,
issuer=AUTH0_ISSUER,
)
return payload
except jwt.JWTClaimsError:
raise AuthError(
{
'code': 'unauthorized',
'description': 'claims error check audience and issuer'
}, 401
)
except jwt.ExpiredSignatureError:
raise AuthError(
{
'code': 'unauthorized',
'description': 'expired signature'
}, 401
)
except Exception:
raise AuthError(
{
'code': 'invalid_header',
'description': 'can not parese the token'
}, 400
)
raise AuthError(
{
'code': 'invalid_header',
'description': 'can not find the appropriate key'
}, 401
)
'''
@INPUTS
permission: string permission (i.e. 'post:drink')
it should use the get_token_auth_header method to get the token
it should use the verify_decode_jwt method to decode the jwt
it should use the check_permissions method validate claims and check the requested permission
return the decorator which passes the decoded payload to the decorated method
'''
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