-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
263 lines (215 loc) · 7.94 KB
/
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
from fastapi import FastAPI, WebSocket, WebSocketDisconnect
from fastapi.middleware.cors import CORSMiddleware
import request
from utils import base64_decode, random_ascii_letters, file2blob, dict2blob
import zipstream
from fastapi.responses import StreamingResponse, JSONResponse, HTMLResponse
from io import BytesIO
from typing import Optional
import threading
import asyncio
from urllib.parse import quote
app = FastAPI()
app.add_middleware(
CORSMiddleware,
allow_origins=['*'],
allow_credentials=True,
allow_methods=["*"],
allow_headers=["*"],
)
sockets = {}
@app.websocket('/ws')
async def websocket_endpoint(socket: WebSocket):
await socket.accept()
token = random_ascii_letters(16)
sockets[token] = socket
await socket.send_json({
'type': 'init',
'data': token
})
try:
while True:
await socket.receive_text()
except WebSocketDisconnect:
del sockets[token]
@app.get('/')
def index():
return HTMLResponse(open('pages/index.html').read())
@app.get('/contests')
def get_contests():
contests = request.get('/api/v4/contests')
contests = [{
'id': contest['id'],
'name': contest['name'],
} for contest in contests]
return contests
@app.get('/contests/{contest_id}')
def get_contest(contest_id: int):
contests = get_contests()
for contest in contests:
if int(contest['id']) == contest_id:
submissions = request.get(f'/api/v4/contests/{contest_id}/submissions')
contest['submission_length'] = len(submissions)
return contest
return None
async def run_get_contest_source_code(
contest, teams, problems, languages, judgements, submissions, socket, groupType
):
zip = zipstream.ZipFile()
for i in range(len(submissions)):
submission = submissions[i]
id = submission['id']
team = teams[submission['team_id']]
name = team[0]
if team[1]:
name += '_' + team[1]
problem = problems[submission['problem_id']]
extension = languages[submission['language_id']]
judge_type = judgements[submission['id']]
source = base64_decode(
request.get(f'/api/v4/contests/{contest["id"]}/submissions/{submission["id"]}/source-code')[0]['source']
)
if type(source) != bytes:
source = source.encode()
if groupType == "team":
path = f'{name}/{id}_{problem}_{judge_type}.{extension}'
filename = f'{contest["name"]}_by_team'
else:
path = f'{problem}/{id}_{name}_{judge_type}.{extension}'
filename = f'{contest["name"]}_by_problem'
zip.writestr(path, source)
if socket:
try:
await socket.send_json({
'type': 'processing',
'data': i + 1
})
except:
return {}
zip_file = BytesIO()
for zip_data in zip:
zip_file.write(zip_data)
zip.close()
zip_file.seek(0)
if socket:
await socket.send_json({
'type': 'success',
'data': 'data:application/zip;base64,' + file2blob(zip_file)
})
return
return StreamingResponse(zip_file, headers={
'Content-Disposition': f'attachment; filename={quote(filename)}.zip',
'Content-Type': 'application/zip'
})
@app.get('/contests/{contest_id}/sources')
async def get_contest_source_code(contest_id: int, program_id: Optional[str] = '', groupType: Optional[str] = ''):
socket = sockets.get(program_id, None)
contest = get_contest(contest_id)
if contest is None:
return JSONResponse({
'message': 'The contest not found.'
}, 404)
default_extensions = {
'python3': 'py'
}
teams = request.get(f'/api/v4/contests/{contest_id}/teams')
teams = {team['id']: [team['name'], team['display_name']] for team in teams}
problems = request.get(f'/api/v4/contests/{contest_id}/problems')
problems = {problem['id']: problem['name'] for problem in problems}
languages = request.get(f'/api/v4/contests/{contest_id}/languages')
languages = {
**{lang['id']: lang['extensions'][0] for lang in languages},
**default_extensions
}
judgements = request.get(f'/api/v4/contests/{contest_id}/judgements')
judgements = {
judgement['submission_id']: judgement['judgement_type_id']
for judgement in judgements if judgement['judgement_type_id']
}
submissions = request.get(f'/api/v4/contests/{contest_id}/submissions')
if (len(submissions) == 0):
return JSONResponse({
'message': 'No submission record for this contest.'
}, 404)
args = (contest, teams, problems, languages, judgements, submissions, socket, groupType)
if socket:
thread = threading.Thread(target=asyncio.run, args=(run_get_contest_source_code(*args),))
thread.start()
else:
return await run_get_contest_source_code(*args)
async def run_get_contest_source_code_json(
contest, teams, problems, languages, judgements, submissions, socket
):
output = []
for i in range(len(submissions)):
submission = submissions[i]
id = submission['id']
team = teams[submission['team_id']]
name = team[0]
if team[1]:
name += '_' + team[1]
problem = problems[submission['problem_id']]
extension = languages[submission['language_id']]
judge_type = judgements[submission['id']]
source = request.get(f'/api/v4/contests/{contest["id"]}/submissions/{submission["id"]}/source-code')[0][
'source']
output.append({
'id': id,
'name': name,
'problem': problem,
'extension': extension,
'judge_type': judge_type['type'],
'runtime': judge_type['runtime'],
'source': source
})
if socket:
try:
await socket.send_json({
'type': 'processing',
'data': i + 1
})
except:
return {}
if socket:
await socket.send_json({
'type': 'success',
'data': 'data:application/json;base64,' + dict2blob(output)
})
return
return JSONResponse(output)
@app.get('/contests/{contest_id}/sources/json')
async def get_contest_source_code(contest_id: int, program_id: Optional[str] = ''):
socket = sockets.get(program_id, None)
contest = get_contest(contest_id)
if contest is None:
return JSONResponse({
'message': 'The contest not found.'
}, 404)
default_extensions = {
'python3': 'py'
}
teams = request.get(f'/api/v4/contests/{contest_id}/teams')
teams = {team['id']: [team['name'], team['display_name']] for team in teams}
problems = request.get(f'/api/v4/contests/{contest_id}/problems')
problems = {problem['id']: problem['name'] for problem in problems}
languages = request.get(f'/api/v4/contests/{contest_id}/languages')
languages = {
**{lang['id']: lang['extensions'][0] for lang in languages},
**default_extensions
}
judgements = request.get(f'/api/v4/contests/{contest_id}/judgements')
judgements = {
judgement['submission_id']: {'type': judgement['judgement_type_id'], 'runtime': judgement['max_run_time']}
for judgement in judgements if judgement['judgement_type_id']
}
submissions = request.get(f'/api/v4/contests/{contest_id}/submissions')
if (len(submissions) == 0):
return JSONResponse({
'message': 'No submission record for this contest.'
}, 404)
args = (contest, teams, problems, languages, judgements, submissions, socket)
if socket:
thread = threading.Thread(target=asyncio.run, args=(run_get_contest_source_code_json(*args),))
thread.start()
else:
return await run_get_contest_source_code_json(*args)