-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmethods.py
52 lines (40 loc) · 1.55 KB
/
methods.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
from http import HTTPStatus
from http.server import CGIHTTPRequestHandler
from controllers import Controllers
controllers = Controllers
def get_route_and_query_param(url):
if url.find("?") != -1:
return url.split("?")[0], url.split("?")[1]
else:
return url, None
class RequestHandler(CGIHTTPRequestHandler):
def do_GET(self):
self.path, query_param = get_route_and_query_param(self.path)
if self.path == "/":
controllers.get_user(self, query_param)
elif self.path == "/listmails":
controllers.list_mails(self, query_param)
elif self.path == "/openmail":
controllers.open_mail(self, query_param)
def do_POST(self):
if self.path == "/":
controllers.save_user(self)
elif self.path == "/sendmail":
controllers.send_mail(self)
def do_PUT(self):
if self.path == "/replymail":
controllers.replay_mail(self)
elif self.path == "/forwardmail":
controllers.forward_mail(self)
def do_DELETE(self):
self.path, query_param = get_route_and_query_param(self.path)
if self.path == "/deletemail":
controllers.delete_mail(self, query_param)
def do_OPTIONS(self):
self.send_response(HTTPStatus.NO_CONTENT)
self.send_header("Access-Control-Allow-Origin", "*")
self.send_header(
"Access-Control-Allow-Methods", "GET, POST, PUT, DELETE"
)
self.send_header("Access-Control-Allow-Headers", "content-type")
self.end_headers()