$id] ]); if (!$info) { return null; } return new UOJHack($info); } public function __construct($info) { $this->info = $info; } public function setSubmission(array $cfg = []) { $cfg += ['submission' => 'auto']; $submission = $cfg['submission'] === 'auto' ? UOJSubmission::query($this->info['submission_id']) : $cfg['submission']; if (!($submission instanceof UOJSubmission && $submission->info['id'] == $this->info['submission_id'])) { return false; } $this->submission = $submission; return true; } public function userIsSubmitter(array $user = null) { return $user && $this->info['owner'] === $user['username']; } public function getUri() { return "/hack/{$this->info['id']}"; } public function viewerCanSeeComponents(array $user = null) { // assert($this->userCanView($user)); $pec = $this->problem->getExtraConfig(); $perm = ['manager_view' => $this->userCanManageProblemOrContest($user)]; if ($perm['manager_view']) { $user = UOJUser::query($this->info['owner']); } if ($this->submission && $this->submission->info['hide_score_to_others']) { $perm['score'] = $this->userIsSubmitter($user); } else { $perm['score'] = true; } $perm['content'] = $this->userPermissionCodeCheck($user, $pec['view_content_type']); $perm['high_level_details'] = $this->userPermissionCodeCheck($user, $pec['view_all_details_type']); $perm['low_level_details'] = $perm['high_level_details'] && $this->userPermissionCodeCheck($user, $pec['view_details_type']); if ($this->submission) { foreach ($this->problem->additionalSubmissionComponentsCannotBeSeenByUser($user, $this->submission) as $com) { $perm[$com] = false; } } return $perm; } public function userCanReview(array $user = null) { if (!$this->info['success']) { return false; } if ($this->info['status'] !== 'Judged, WaitingM') { return false; } return $this->problem->userCanManage($user); } public function echoStatusBarTD($name, array $cfg) { switch ($name) { case 'submission': if ($this->submission) { echo $this->submission->getLink(); } else { echo '?'; } break; case 'result': if ($this->hasJudged()) { if ($this->info['success']) { echo 'Success!'; } else { echo 'Failed.'; } } else { echo '', $this->publicStatus(), ''; } break; default: $this->echoStatusBarTDBase($name, $cfg); break; } } public function echoStatusTableRow(array $cfg, array $viewer = null) { echo ''; $cols = ['id', 'submission', 'problem', 'hacker', 'owner', 'result', 'submit_time', 'judge_time']; foreach ($cols as $name) { if (!isset($cfg["{$name}_hidden"])) { echo ''; $this->echoStatusBarTD($name, $cfg); echo ''; } } echo ''; } }