-
Notifications
You must be signed in to change notification settings - Fork 3
/
codeflow.py
73 lines (57 loc) · 2.05 KB
/
codeflow.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
import random
import socket
import sys
import json
import praw
import os
def auth():
scopes = ['read']
reddit = praw.Reddit(
redirect_uri="http://localhost:8080",
user_agent="obtain_refresh_token/v0 by u/bboe",
client_id="LYQy5q5ICwT-QaTY2hcCow",
client_secret="uvk6k7CGGgVIRqg40AfGlB_EC0FOtQ",
)
state = str(random.randint(0, 65000))
if os.path.isfile('token.json'):
with open('token.json', 'r') as file:
token = json.loads(file.read())
return token
else:
url = reddit.auth.url(scopes, state, "permanent")
print(f"Now open this url in your browser: {url}")
client = receive_connection()
data = client.recv(1024).decode("utf-8")
param_tokens = data.split(" ", 2)[1].split("?", 1)[1].split("&")
params = {
key: value for (key, value) in [token.split("=") for token in param_tokens]
}
refresh_token = reddit.auth.authorize(params["code"])
refresh_token_dict = {'token': refresh_token}
send_message(
client, f"<b> YOU CAN CLOSE THIS WINDOW</b> Refresh token: {refresh_token}")
# write to file
with open('token.json', 'w') as file:
file.write(json.dumps(refresh_token_dict))
file.close()
with open('token.json', 'r') as file:
token = json.loads(file.read())
return token
def receive_connection():
"""Wait for and then return a connected socket..
Opens a TCP connection on port 8080, and waits for a single client.
"""
server = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
server.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
server.bind(("localhost", 8080))
server.listen(1)
client = server.accept()[0]
server.close()
return client
def send_message(client, message):
"""Send message to client and close the connection."""
print(message)
client.send(f"HTTP/1.1 200 OK\r\n\r\n{message}".encode("utf-8"))
client.close()
if __name__ == "__main__":
sys.exit(main())