-
Notifications
You must be signed in to change notification settings - Fork 1
/
Admin.php
169 lines (142 loc) · 6.32 KB
/
Admin.php
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
<!DOCTYPE html>
<html lang="zh-cn">
<?php require_once('Php/HTML_Head.php') ?>
<?php
if (!isset($LandUser)) {
header('Location: /Message.php?Msg=您没有登陆,无权访问');
die();
}
if (!is_admin()) {
header('Location: /Message.php?Msg=您不是管理员,无权访问');
die();
}
?>
<body>
<?php require_once('Php/Page_Header.php') ?>
<div class="container animated fadeInRight">
<?php if (is_admin_max()) { ?>
<script>
function set_user_jurisdiction(user) {
var juri = prompt("请输入权限标号", "");
if (juri) {
if (confirm('确定要赋予该用户' + juri + '权限吗?')) {
$.get('/Php/SetUserJurisdiction.php?jur=' + juri + '&user=' + user, function(msg) {
var obj = eval('(' + msg + ')');
if (obj.status === 0) {
location.reload();
} else {
alert("赋予权限时发生异常。")
}
});
}
}
}
function set_maintain() {
$.get("/Php/SetMaintain.php", function(msg) {
var obj = eval('(' + msg + ')');
if (obj.status === 0) {
location.reload();
} else {
alert('设置失败!');
}
});
}
</script>
<div class="panel panel-default">
<div class="panel-body">
<a style="margin-top:10px;" class="btn btn-warning" href="/admin_phpmyadmin/">进入Mysql数据库</a>
<a style="margin-top:10px;" class="btn btn-danger" href="/admin_opcache/opcache.php">查看opcache缓存</a>
<a style="margin-top:10px;" class="btn btn-default" href="javascript:set_maintain()"><?php echo $Maintain == 1 ? '退出维护' : '进入维护' ?></a>
</div>
</div>
<?php } ?>
<div class="panel panel-default">
<div class="panel-body">
<a style="margin-top:10px;" class="btn btn-info" href="/NewProblem.php">新建题目</a>
<a style="margin-top:10px;" class="btn btn-success" href="/NewContest.php">新建比赛</a>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading">管理员列表</div>
<div class="panel-body">
<div class="panel panel-default">
<table class="table table-striped table-hover">
<thead>
<tr>
<th>用户名</th>
<th>权限</th>
<?php if (is_admin_max()) { ?><th>操作</th><?php } ?>
</tr>
</thead>
<tbody>
<?php
function jur_tag($jur)
{
$all_jur_text = array('查看测试点', '编辑题目', '编辑比赛', '查看日志', '查看代码', '管理员', '高级管理员');
$res = '';
for ($i = 0; $i <= 6; $i++) {
if ($jur & (1 << $i)) {
$res .= '<a class="label label-info">' . $all_jur_text[$i] . '</a> ';
}
}
return $res;
}
$sql = "SELECT `name`,`jurisdiction` FROM `oj_user` WHERE `jurisdiction` > 0";
$res = oj_mysql_query($sql);
while ($allUser = oj_mysql_fetch_array($res)) {
echo '<tr>';
echo '<td><a href="/OtherUser.php?User=' . $allUser['name'] . '">' . $allUser['name'] . '</a></td>';
echo '<td>' . jur_tag($allUser['jurisdiction']) . '</td>';
if (is_admin_max()) {
echo '<td> <a class="label label-success" href="javascript:set_user_jurisdiction(\'' . $allUser['name'] . '\');">编辑权限</a> </td>';
}
echo '</tr>';
}
?>
</tbody>
</table>
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-body">
<pre class="SlateFix">
管理员需知:
1.如需'修改'题目的测试点,请手动删除评测机中的测试点文件或新增一个测试点ID进行编辑并删除原错误的测试点ID。
2.数据库中每个测试点最多存储4294967295个字节 (2^32-1),如果无法存下请直接在judge的data目录中保存测试点
3.没有提供删除题目/比赛的功能,如果有不需要的题目/比赛请隐藏
4.只能通过更改数据库的方式删除题目/比赛
5.请勿尝试使用管理员权限对网站进行注入等攻击行为
如有其它操作(如修改测试点,删除题目/比赛,赋予管理员权限等),请联系:
Setiuo: QQ:751255159
<?php if (is_admin_max()) { ?>
管理员权限标号:
(0) 普通用户 0
(1<<0) 查看测试点 1
(1<<1) 编辑题目 2
(1<<2) 编辑比赛 4
(1<<3) 查看日志 8
(1<<4) 查看他人代码 16
(1<<5) 基本管理员 32
(1<<6) 最高管理员 64
<?php } ?>
</pre>
</div>
</div>
<div class="panel panel-default">
<div class="panel-body">
<pre class="SlateFix">
星の力を秘めし鍵よ。
真の姿を我の前に示せ。
契約のもと <?php echo $LandUser ?> が命じる。
封印解除(レリーズ)!
</pre>
</div>
</div>
</div>
<?php
$PageActive = '#admin';
require_once('Php/Page_Footer.php');
?>
</body>
</html>