-
Notifications
You must be signed in to change notification settings - Fork 0
/
auth.py
58 lines (52 loc) · 2.64 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
from setup import *
def generateToken(username, password):
nonce = uuid.uuid4()
timestamp = int(time.time())
method = "POST"
url = f'https://api.letterboxd.com/api/v0/auth/token?apikey={apikey}&nonce={nonce}×tamp={timestamp}'
body = f'grant_type=password&username={username}&password={password}'
bytestring = b"\x00".join(
[str.encode(method), str.encode(url), str.encode(body)]
)
signature = hmac.new(
str.encode(apisecret), bytestring, digestmod=hashlib.sha256
)
signature = signature.hexdigest()
r = requests.post(f'https://api.letterboxd.com/api/v0/auth/token?apikey={apikey}&nonce={nonce}×tamp={timestamp}&signature={signature}', headers={'Content-Type': 'application/x-www-form-urlencoded', 'Accept': 'application/json'}, data=f'grant_type=password&username={username}&password={password}', verify=False)
resultJSON = r.json()
accesstoken = resultJSON['access_token']
refreshtoken = resultJSON['refresh_token']
tokens = [accesstoken, refreshtoken]
return tokens
def refreshToken():
nonce = uuid.uuid4()
timestamp = int(time.time())
method = "POST"
url = f'https://api.letterboxd.com/api/v0/auth/token?apikey={apikey}&nonce={nonce}×tamp={timestamp}'
body = f'grant_type=refresh_token&refresh_token={refreshtoken}'
bytestring = b"\x00".join(
[str.encode(method), str.encode(url), str.encode(body)]
)
signature = hmac.new(
str.encode(apisecret), bytestring, digestmod=hashlib.sha256
)
signature = signature.hexdigest()
r = requests.post(f'https://api.letterboxd.com/api/v0/auth/token?apikey={apikey}&nonce={nonce}×tamp={timestamp}&signature={signature}', headers={'Content-Type': 'application/x-www-form-urlencoded', 'Accept': 'application/json'}, data=f'grant_type=refresh_token&refresh_token={refreshtoken}', verify=False)
resultJSON = r.json()
return resultJSON
def checkUsername(username):
username = username.replace(" ", "%20")
nonce = uuid.uuid4()
timestamp = int(time.time())
method = "GET"
url = f'https://api.letterboxd.com/api/v0/auth/username-check?username={username}&apikey={apikey}&nonce={nonce}×tamp={timestamp}'
bytestring = b"\x00".join(
[str.encode(method), str.encode(url), str.encode("")]
)
signature = hmac.new(
str.encode(apisecret), bytestring, digestmod=hashlib.sha256
)
signature = signature.hexdigest()
r = requests.get(f'https://api.letterboxd.com/api/v0/auth/username-check?username={username}&apikey={apikey}&nonce={nonce}×tamp={timestamp}&signature={signature}', verify=False)
resultJSON = r.json()
return resultJSON