-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver_main.py
132 lines (128 loc) · 3.35 KB
/
server_main.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
import typing
import os
import json
from levelformat import read_file, write_file, format_level
def delete_file(name: str):
data = json.loads(read_file("levels/" + name))
data["deleted"] = True
write_file("levels/" + name, format_level(data))
class HttpResponse(typing.TypedDict):
status: int
headers: dict[str, str]
content: str | bytes
def get(path: str) -> HttpResponse:
qpath = path.split("?")[0]
if qpath == "/":
return {
"status": 200,
"headers": {
"Content-Type": "text/html"
},
"content": read_file("index.html")
}
elif (qpath.startswith("/assets/") or qpath.startswith("/common/") or qpath.startswith("/editor/") or qpath.startswith("/game/") or qpath.startswith("/home/") or qpath.startswith("/levels/")) and os.path.exists("." + qpath):
return {
"status": 200,
"headers": {
"Content-Type": {
"html": "text/html",
"js": "text/javascript",
"css": "text/css",
"svg": "image/svg+xml",
"png": "image/png",
"json": "application/json"
}[qpath.split(".")[-1]]
},
"content": read_file(qpath[1:])
}
elif path == "/level_list/published":
data: list[dict[str, typing.Any]] = []
for name in os.listdir("levels/published"):
contents = json.loads(read_file("levels/published/" + name))
if contents["deleted"] == True: continue
data.append({
"name": name,
"contents": contents
})
return {
"status": 200,
"headers": {
"Content-Type": "text/html"
},
"content": json.dumps(data)
}
elif path == "/level_list/user":
data = []
for name in os.listdir("levels/user"):
contents = json.loads(read_file("levels/user/" + name))
if contents["deleted"] == True: continue
data.append({
"name": name,
"contents": contents
})
return {
"status": 200,
"headers": {
"Content-Type": "text/html"
},
"content": json.dumps(data)
}
else: # 404 page
return {
"status": 404,
"headers": {
"Content-Type": "text/html"
},
"content": f""
}
def post(path: str, body: bytes) -> HttpResponse:
if path == "/verify":
data = json.loads(body)
file = json.loads(read_file("levels/" + data["level"]).decode("UTF-8"))
file["completion"]["percentage"] = max(file["completion"]["percentage"], data["completion"])
if data["completion"] == 100:
for i in range(len(file["completion"]["coins"])):
file["completion"]["coins"][i] = file["completion"]["coins"][i] or data["coins"][i]
write_file("levels/" + data["level"], format_level(file))
return {
"status": 200,
"headers": {
"Content-Type": "text/html"
},
"content": f""
}
elif path == "/save_user":
data = json.loads(body)
formatted = format_level(data["level"])
name: str = data["name"].replace("user/", "")
write_file("levels/user/" + name, formatted)
return {
"status": 200,
"headers": {
"Content-Type": "text/html"
},
"content": name
}
elif path == "/publish":
data = json.loads(body)
formatted = format_level(data["level"])
name: str = data["name"].replace("user/", "")
while os.path.exists("levels/published/" + name):
delete_file(name)
name = name.replace(".json", "_.json")
write_file("levels/published/" + name, formatted)
return {
"status": 200,
"headers": {
"Content-Type": "text/html"
},
"content": name
}
else:
return {
"status": 404,
"headers": {
"Content-Type": "text/html"
},
"content": f""
}