addInput('username', 'text', '用户名', '', function ($username) { if (!validateUsername($username)) { return '用户名不合法'; } if (!queryUser($username)) { return '用户不存在'; } return ''; }, null ); $options = array( 'banneduser' => '设为封禁用户', 'normaluser' => '设为普通用户', 'superuser' => '设为超级用户' ); $user_form->addSelect('op-type', $options, '操作类型', ''); $user_form->handle = function() { global $user_form; $username = $_POST['username']; switch ($_POST['op-type']) { case 'banneduser': DB::update("update user_info set usergroup = 'B' where username = '{$username}'"); break; case 'normaluser': DB::update("update user_info set usergroup = 'U' where username = '{$username}'"); break; case 'superuser': DB::update("update user_info set usergroup = 'S' where username = '{$username}'"); break; } }; $user_form->runAtServer(); $blog_link_contests = new UOJForm('blog_link_contests'); $blog_link_contests->addInput('blog_id', 'text', '博客ID', '', function ($x) { if (!validateUInt($x)) return 'ID不合法'; if (!queryBlog($x)) return '博客不存在'; return ''; }, null ); $blog_link_contests->addInput('contest_id', 'text', '比赛ID', '', function ($x) { if (!validateUInt($x)) return 'ID不合法'; if (!queryContest($x)) return '比赛不存在'; return ''; }, null ); $blog_link_contests->addInput('title', 'text', '标题', '', function ($x) { return ''; }, null ); $options = array( 'add' => '添加', 'del' => '删除' ); $blog_link_contests->addSelect('op-type', $options, '操作类型', ''); $blog_link_contests->handle = function() { $blog_id = $_POST['blog_id']; $contest_id = $_POST['contest_id']; $str = DB::selectFirst(("select * from contests where id='${contest_id}'")); $all_config = json_decode($str['extra_config'], true); $config = $all_config['links']; $n = count($config); if ($_POST['op-type'] == 'add') { $row = array(); $row[0] = $_POST['title']; $row[1] = $blog_id; $config[$n] = $row; } if ($_POST['op-type'] == 'del') { for ($i = 0; $i < $n; $i++) if ($config[$i][1] == $blog_id) { $config[$i] = $config[$n - 1]; unset($config[$n - 1]); break; } } $all_config['links'] = $config; $str = json_encode($all_config); $str = DB::escape($str); DB::query("update contests set extra_config='${str}' where id='${contest_id}'"); }; $blog_link_contests->runAtServer(); $blog_link_index = new UOJForm('blog_link_index'); $blog_link_index->addInput('blog_id2', 'text', '博客ID', '', function ($x) { if (!validateUInt($x)) return 'ID不合法'; if (!queryBlog($x)) return '博客不存在'; return ''; }, null ); $blog_link_index->addInput('blog_level', 'text', '置顶级别(删除不用填)', '0', function ($x) { if (!validateUInt($x)) return '数字不合法'; if ($x > 3) return '该级别不存在'; return ''; }, null ); $options = array( 'add' => '添加', 'del' => '删除' ); $blog_link_index->addSelect('op-type2', $options, '操作类型', ''); $blog_link_index->handle = function() { $blog_id = $_POST['blog_id2']; $blog_level = $_POST['blog_level']; if ($_POST['op-type2'] == 'add') { if (DB::selectFirst("select * from important_blogs where blog_id = {$blog_id}")) { DB::update("update important_blogs set level = {$blog_level} where blog_id = {$blog_id}"); } else { DB::insert("insert into important_blogs (blog_id, level) values ({$blog_id}, {$blog_level})"); } } if ($_POST['op-type2'] == 'del') { DB::delete("delete from important_blogs where blog_id = {$blog_id}"); } }; $blog_link_index->runAtServer(); $blog_deleter = new UOJForm('blog_deleter'); $blog_deleter->addInput('blog_del_id', 'text', '博客ID', '', function ($x) { if (!validateUInt($x)) { return 'ID不合法'; } if (!queryBlog($x)) { return '博客不存在'; } return ''; }, null ); $blog_deleter->handle = function() { deleteBlog($_POST['blog_del_id']); }; $blog_deleter->runAtServer(); $contest_submissions_deleter = new UOJForm('contest_submissions'); $contest_submissions_deleter->addInput('contest_id', 'text', '比赛ID', '', function ($x) { if (!validateUInt($x)) { return 'ID不合法'; } if (!queryContest($x)) { return '博客不存在'; } return ''; }, null ); $contest_submissions_deleter->handle = function() { $contest = queryContest($_POST['contest_id']); genMoreContestInfo($contest); $contest_problems = DB::selectAll("select problem_id from contests_problems where contest_id = {$contest['id']}"); foreach ($contest_problems as $problem) { $submissions = DB::selectAll("select * from submissions where problem_id = {$problem['problem_id']} and submit_time < '{$contest['start_time_str']}'"); foreach ($submissions as $submission) { $content = json_decode($submission['content'], true); unlink(UOJContext::storagePath().$content['file_name']); DB::delete("delete from submissions where id = {$submission['id']}"); updateBestACSubmissions($submission['submitter'], $submission['problem_id']); } } }; $contest_submissions_deleter->runAtServer(); $custom_test_deleter = new UOJForm('custom_test_deleter'); $custom_test_deleter->addInput('last', 'text', '删除末尾记录', '5', function ($x, &$vdata) { if (!validateUInt($x)) { return '不合法'; } $vdata['last'] = $x; return ''; }, null ); $custom_test_deleter->handle = function(&$vdata) { $all = DB::selectAll("select * from custom_test_submissions order by id asc limit {$vdata['last']}"); foreach ($all as $submission) { $content = json_decode($submission['content'], true); unlink(UOJContext::storagePath().$content['file_name']); } DB::delete("delete from custom_test_submissions order by id asc limit {$vdata['last']}"); }; $custom_test_deleter->runAtServer(); $banlist_cols = array('username', 'usergroup'); $banlist_config = array(); $banlist_header_row = << 用户名 EOD; $banlist_print_row = function($row) { $hislink = getUserLink($row['username']); echo << ${hislink} EOD; }; $cur_tab = isset($_GET['tab']) ? $_GET['tab'] : 'users'; $tabs_info = array( 'users' => array( 'name' => '用户操作', 'url' => "/super-manage/users" ), 'blogs' => array( 'name' => '博客管理', 'url' => "/super-manage/blogs" ), 'submissions' => array( 'name' => '提交记录', 'url' => "/super-manage/submissions" ), 'custom-test' => array( 'name' => '自定义测试', 'url' => '/super-manage/custom-test' ), 'click-zan' => array( 'name' => '点赞管理', 'url' => '/super-manage/click-zan' ), 'search' => array( 'name' => '搜索管理', 'url' => '/super-manage/search' ) ); if (!isset($tabs_info[$cur_tab])) { become404Page(); } ?>
printHTML(); ?>

封禁名单

添加到比赛链接

printHTML(); ?>

添加到公告

printHTML(); ?>

删除博客

printHTML(); ?>

删除赛前提交记录

printHTML(); ?>

测评失败的提交记录

''), $myUser); ?>
printHTML() ?> array('*'), 'table_name' => 'custom_test_submissions', 'cond' => '1', 'tail' => 'order by id asc', 'page_len' => 5 )); foreach ($submissions_pag->get() as $submission) { $problem = queryProblemBrief($submission['problem_id']); $submission_result = json_decode($submission['result'], true); echo '
'; echo '
id
'; echo '
', "#{$submission['id']}", '
'; echo '
problem_id
'; echo '
', "#{$submission['problem_id']}", '
'; echo '
submit time
'; echo '
', $submission['submit_time'], '
'; echo '
submitter
'; echo '
', $submission['submitter'], '
'; echo '
judge_time
'; echo '
', $submission['judge_time'], '
'; echo '
'; echoSubmissionContent($submission, getProblemCustomTestRequirement($problem)); echoCustomTestSubmissionDetails($submission_result['details'], "submission-{$submission['id']}-details"); } ?> pagination() ?> 没写好QAQ

一周搜索情况

一月搜索情况

idcreated_atremote_addrtypeq', function($row) { echo ''; echo '', $row['id'], ''; echo '', $row['created_at'], ''; echo '', $row['remote_addr'], ''; echo '', $row['type'], ''; echo '', HTML::escape($row['q']), ''; echo ''; }, array( 'page_len' => 1000 )) ?>