mirror of
https://github.com/renbaoshuo/S2OJ.git
synced 2024-11-10 10:38:43 +00:00
96d4a3ecf7
Due to historical reasons, the code is in subfolder "1". With SVN removal, we place the code back and remove the annoying "1" folder.
36 lines
650 B
PHP
36 lines
650 B
PHP
<?php
|
|
|
|
if (!Auth::check()) {
|
|
become403Page();
|
|
}
|
|
|
|
if (!is_array($_GET['get'])) {
|
|
become404Page();
|
|
}
|
|
|
|
$res = [];
|
|
|
|
foreach ($_GET['get'] as $id) {
|
|
if (!validateUInt($id)) {
|
|
become404Page();
|
|
}
|
|
$submission = querySubmission($id);
|
|
if ($submission['submitter'] !== Auth::id()) {
|
|
become403Page();
|
|
}
|
|
|
|
$problem = queryProblemBrief($submission['problem_id']);
|
|
if (!isSubmissionVisibleToUser($submission, $problem, Auth::user())) {
|
|
become403Page();
|
|
}
|
|
|
|
$out_status = explode(', ', $submission['status'])[0];
|
|
|
|
$res[] = [
|
|
'judged' => $out_status == 'Judged',
|
|
'html' => getSubmissionStatusDetails($submission)
|
|
];
|
|
}
|
|
|
|
die(json_encode($res));
|