-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrequest.py
104 lines (103 loc) · 3.61 KB
/
request.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
import requests
import json
class dx:
def __init__(self):
self.base_url=f'https://api.dispatch.eu.org/api/v2/'
self.uname, self.oauth_key = None, None
def ping(self, route: str, params: dict):
url=self.base_url+route
response=requests.get(url, params)
return response.json()
def new_user(self, uname: str, password: str):
res=self.ping('/users/new', {"user": uname, "password": password})
if "code" in res:
match res["code"]:
case 409:
return "already_exists"
case 422:
return "bad_format"
case _:
return "all_good"
return "all_good"
def login(self, uname: str, password: str):
res=self.ping(f'/user/{uname}/auth', {"password": password})
if "code" in res:
match res['code']:
case 401:
return "bad_credentials"
case _:
self.uname=uname
self.oauth_key=res['key']
return "all_good"
else:
return "bad_response"
def new_room(self, alias: str, users: str):
res=self.ping("/rooms/create", {"alias": alias, "users": users, "user": self.uname, "oauth_key": self.oauth_key})
if "code" in res:
match res["code"]:
case 422:
return "profanity"
case 401:
return "bad_credentials"
case _:
return "bad_response"
else:
return "all_good"
def list_rooms(self):
res=self.ping(f'/user/{self.uname}/rooms', {"oauth_key": self.oauth_key})
if "code" in res:
return "bad_credentials"
else:
return res
def post(self, uuid, msg):
res=self.ping(f'/rooms/{uuid}/post', {"user": self.uname, "oauth_key": self.oauth_key, "msg": msg})
if "code" in res:
match res["code"]:
case 401:
return "bad_credentials"
case 404:
return "no_such_room"
case 422:
return "profanity"
case 200:
return "success"
case _:
return "bad_response"
else:
return "bad_response"
def list_messages(self, uuid):
res=self.ping(f'/rooms/{uuid}/messages', {"user": self.uname, "oauth_key": self.oauth_key, "timestamp": 0})
if "code" in res:
match res["code"]:
case 401:
return "bad_credentials"
case 200:
return res
case _:
return "bad_response"
else:
return "bad_response"
def user_info(self, user):
res=self.ping(f'/user/{user}', {})
if "code" in res:
match res["code"]:
case 404:
return "no_such_user"
case 200:
return res
case _:
return "bad_response"
else:
return "bad_response"
def set_status(self, status):
res=self.ping(f'/user/{self.uname}/status', {"oauth_key": self.oauth_key, "status": status})
if "code" in res:
match res["code"]:
case 200:
return "all_good"
case 422:
return "profanity"
case _:
return "bad_response"
else:
return "bad_response"