forked from fportantier/vulpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibapi.py
51 lines (37 loc) · 996 Bytes
/
libapi.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
import libuser
import random
import hashlib
import re
import jwt
from time import time
from pathlib import Path
secret = 'MYSUPERSECRETKEY'
not_after = 60 # 1 minute
def keygen(username, password=None, login=True):
if login:
if not libuser.login(username, password):
return None
now = time()
token = jwt.encode({
'username': username,
'nbf': now,
'exp': now + not_after
}, secret, algorithm='HS256').decode()
return token
def authenticate(request):
if 'authorization' not in request.headers:
return None
try:
authtype, token = request.headers['authorization'].split(' ')
except Exception as e:
print(e)
return None
if authtype.lower() != 'bearer':
print('not bearer')
return None
try:
decoded = jwt.decode(token, secret, algorithms=['HS256'])
except Exception as e:
print(e)
return None
return decoded['username']