addInput( 'name', 'text', '比赛标题', $contest['name'], function($str) { return ''; }, null ); $time_form->addInput( 'start_time', 'text', '开始时间', $contest['start_time_str'], function($str, &$vdata) { try { $vdata['start_time'] = new DateTime($str); } catch (Exception $e) { return '无效时间格式'; } return ''; }, null ); $time_form->addInput( 'last_min', 'text', '时长(单位:分钟)', $contest['last_min'], function($str) { return !validateUInt($str) ? '必须为一个整数' : ''; }, null ); $time_form->handle = function(&$vdata) { global $contest; $start_time_str = $vdata['start_time']->format('Y-m-d H:i:s'); $purifier = HTML::pruifier(); $esc_name = $_POST['name']; $esc_name = $purifier->purify($esc_name); $esc_name = DB::escape($esc_name); DB::update("update contests set start_time = '$start_time_str', last_min = {$_POST['last_min']}, name = '$esc_name' where id = {$contest['id']}"); }; $managers_form = newAddDelCmdForm('managers', function($username) { if (!validateUsername($username) || !queryUser($username)) { return "不存在名为{$username}的用户"; } return ''; }, function($type, $username) { global $contest; if ($type == '+') { DB::query("insert into contests_permissions (contest_id, username) values (${contest['id']}, '$username')"); } else if ($type == '-') { DB::query("delete from contests_permissions where contest_id = ${contest['id']} and username = '$username'"); } } ); $problems_form = newAddDelCmdForm('problems', function($cmd) { if (!preg_match('/^(\d+)\s*(\[\S+\])?$/', $cmd, $matches)) { return "无效题号"; } $problem_id = $matches[1]; if (!validateUInt($problem_id) || !($problem = queryProblemBrief($problem_id))) { return "不存在题号为{$problem_id}的题"; } if (!hasProblemPermission(Auth::user(), $problem)) { return "无权添加题号为{$problem_id}的题"; } return ''; }, function($type, $cmd) { global $contest; if (!preg_match('/^(\d+)\s*(\[\S+\])?$/', $cmd, $matches)) { return "无效题号"; } $problem_id = $matches[1]; if ($type == '+') { DB::insert("insert into contests_problems (contest_id, problem_id) values ({$contest['id']}, '$problem_id')"); } else if ($type == '-') { DB::delete("delete from contests_problems where contest_id = {$contest['id']} and problem_id = '$problem_id'"); } if (isset($matches[2])) { switch ($matches[2]) { case '[sample]': unset($contest['extra_config']["problem_$problem_id"]); break; case '[full]': $contest['extra_config']["problem_$problem_id"] = 'full'; break; case '[no-details]': $contest['extra_config']["problem_$problem_id"] = 'no-details'; break; } $esc_extra_config = json_encode($contest['extra_config']); $esc_extra_config = DB::escape($esc_extra_config); DB::update("update contests set extra_config = '$esc_extra_config' where id = {$contest['id']}"); } } ); if (isSuperUser($myUser)) { $rating_k_form = new UOJForm('rating_k'); $rating_k_form->addInput('rating_k', 'text', 'rating 变化上限', isset($contest['extra_config']['rating_k']) ? $contest['extra_config']['rating_k'] : 400, function ($x) { if (!validateUInt($x) || $x < 1 || $x > 1000) { return '不合法的上限'; } return ''; }, null ); $rating_k_form->handle = function() { global $contest; $contest['extra_config']['rating_k'] = $_POST['rating_k']; $esc_extra_config = json_encode($contest['extra_config']); $esc_extra_config = DB::escape($esc_extra_config); DB::update("update contests set extra_config = '$esc_extra_config' where id = {$contest['id']}"); }; $rating_k_form->runAtServer(); $rated_form = new UOJForm('rated'); $rated_form->handle = function() { global $contest; if (isset($contest['extra_config']['unrated'])) { unset($contest['extra_config']['unrated']); } else { $contest['extra_config']['unrated'] = ''; } $esc_extra_config = json_encode($contest['extra_config']); $esc_extra_config = DB::escape($esc_extra_config); DB::update("update contests set extra_config = '$esc_extra_config' where id = {$contest['id']}"); }; $rated_form->submit_button_config['class_str'] = 'btn btn-warning btn-block'; $rated_form->submit_button_config['text'] = isset($contest['extra_config']['unrated']) ? '设置比赛为rated' : '设置比赛为unrated'; $rated_form->submit_button_config['smart_confirm'] = ''; $rated_form->runAtServer(); $version_form = new UOJForm('version'); $version_form->addInput('standings_version', 'text', '排名版本', $contest['extra_config']['standings_version'], function ($x) { if (!validateUInt($x) || $x < 1 || $x > 2) { return '不是合法的版本号'; } return ''; }, null ); $version_form->handle = function() { global $contest; $contest['extra_config']['standings_version'] = $_POST['standings_version']; $esc_extra_config = json_encode($contest['extra_config']); $esc_extra_config = DB::escape($esc_extra_config); DB::update("update contests set extra_config = '$esc_extra_config' where id = {$contest['id']}"); }; $version_form->runAtServer(); } $time_form->runAtServer(); $managers_form->runAtServer(); $problems_form->runAtServer(); ?>

管理

printHTML(); ?>
', '', '', ''; } ?>
# 用户名
', $row_id, '', getUserLink($row['username']), '

命令格式:命令一行一个,+mike表示把mike加入管理者,-mike表示把mike从管理者中移除

printHTML(); ?>
', '', '', ''; } ?>
# 试题名
', $problem['id'], '', getProblemLink($problem), ' ', "[$problem_config_str]", '

命令格式:命令一行一个,+233表示把题号为233的试题加入比赛,-233表示把题号为233的试题从比赛中移除

printHTML(); ?>

Rating控制

printHTML(); ?>
printHTML(); ?>

版本控制

printHTML(); ?>