-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_token.py
80 lines (72 loc) · 2.3 KB
/
get_token.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
#!/usr/bin/python
import sys
import requests
import jwt
import time
NON_IAT_VERIFY = {
'verify_iat': False,
}
def main():
payload = {'response_type': 'code', 'client_id': 'plone', 'scope': 'plone'}
r = requests.get(sys.argv[1] + '/get_authorization_code', params=payload)
access_token = r.text
access_token = jwt.decode(
access_token,
'secret',
algorithms=['HS256'],
options=NON_IAT_VERIFY)['auth_code']
print("ACCESS TOKEN " + access_token)
payload = {
'grant_type': 'authorization_code',
'client_id': 'plone',
'client_secret': 'secret',
'code': access_token,
'scope': 'plone'}
r = requests.post(sys.argv[1] + '/get_auth_token', params=payload)
service_token = r.text
service_token = jwt.decode(
service_token,
'secret',
algorithms=['HS256'],
options=NON_IAT_VERIFY)['access_token']
print("SERVICE TOKEN " + service_token)
payload = {
'grant_type': 'password',
'username': '[email protected]',
'password': 'user',
'client_id': 'plone',
'code': service_token,
'scope': 'plone'}
r = requests.post(sys.argv[1] + '/get_auth_token', params=payload)
raw_token = r.text
user_token = jwt.decode(
r.text,
'secret',
algorithms=['HS256'],
options=NON_IAT_VERIFY)
print("EDITOR USER : [email protected] " + user_token['token'])
print("RAW " + raw_token)
expiration_date = time.gmtime(user_token['exp'])
print(" valid until : " +
time.strftime('%Y-%m-%dT%H:%M:%SZ', expiration_date))
payload = {
'grant_type': 'password',
'username': '[email protected]',
'password': 'admin',
'client_id': 'plone',
'code': service_token,
'scope': 'plone'}
r = requests.post(sys.argv[1] + '/get_auth_token', params=payload)
raw_token = r.text
user_token = jwt.decode(
r.text,
'secret',
algorithms=['HS256'],
options=NON_IAT_VERIFY)
print("MANAGER USER : [email protected] " + user_token['token'])
print("RAW " + raw_token)
expiration_date = time.gmtime(user_token['exp'])
print(" valid until : " +
time.strftime('%Y-%m-%dT%H:%M:%SZ', expiration_date))
if __name__ == "__main__":
main()