Skip to content

Commit 015a73d

Browse files
authored
Merge pull request #683 from lan894734188/master
添加清理功能
2 parents 435d87a + ec0dc57 commit 015a73d

File tree

4 files changed

+140
-8
lines changed

4 files changed

+140
-8
lines changed

app/Controllers/AdminController.php

+29
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
use App\Models\CheckInLog;
66
use App\Models\InviteCode;
77
use App\Models\TrafficLog;
8+
use App\Models\NodeInfoLog;
9+
use App\Models\NodeOnlineLog;
810
use App\Services\Analytics;
911
use App\Services\DbConfig;
1012
use App\Utils\Tools;
@@ -98,5 +100,32 @@ public function updateConfig($request, $response, $args)
98100
$res['msg'] = "更新成功";
99101
return $response->getBody()->write(json_encode($res));
100102
}
103+
public function cleanNodelog($request, $response, $args)
104+
{
105+
if($clean = NodeInfoLog::TRUNCATE()){
106+
$res['ret'] = 1;
107+
return $response->getBody()->write(json_encode($res));
108+
}
109+
$res['ret'] = 0;
110+
return $response->getBody()->write(json_encode($res));
111+
}
112+
public function cleanOnlinelog($request, $response, $args)
113+
{
114+
if($clean = NodeOnlineLog::TRUNCATE()){
115+
$res['ret'] = 1;
116+
return $response->getBody()->write(json_encode($res));
117+
}
118+
$res['ret'] = 0;
119+
return $response->getBody()->write(json_encode($res));
120+
}
121+
public function cleantrafficlog($request, $response, $args)
122+
{
123+
if($clean = TrafficLog::TRUNCATE()){
124+
$res['ret'] = 1;
125+
return $response->getBody()->write(json_encode($res));
126+
}
127+
$res['ret'] = 0;
128+
return $response->getBody()->write(json_encode($res));
129+
}
101130

102131
}

app/routes.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,12 @@
8080
$app->group('/admin', function () {
8181
$this->get('', 'App\Controllers\AdminController:index');
8282
$this->get('/', 'App\Controllers\AdminController:index');
83+
$this->get('/sys', 'App\Controllers\AdminController:sysinfo');
8384
$this->get('/trafficlog', 'App\Controllers\AdminController:trafficLog');
8485
$this->get('/checkinlog', 'App\Controllers\AdminController:checkinLog');
86+
$this->post('/cleannodelog', 'App\Controllers\AdminController:cleanNodelog');
87+
$this->post('/cleanonlinelog', 'App\Controllers\AdminController:cleanOnlinelog');
88+
$this->post('/cleantrafficlog', 'App\Controllers\AdminController:cleantrafficlog');
8589
// app config
8690
$this->get('/config', 'App\Controllers\AdminController:config');
8791
$this->put('/config', 'App\Controllers\AdminController:updateConfig');
@@ -108,7 +112,6 @@
108112
$this->get('/profile', 'App\Controllers\AdminController:profile');
109113
$this->get('/invite', 'App\Controllers\AdminController:invite');
110114
$this->post('/invite', 'App\Controllers\AdminController:addInvite');
111-
$this->get('/sys', 'App\Controllers\AdminController:sys');
112115
$this->get('/logout', 'App\Controllers\AdminController:logout');
113116
})->add(new Admin());
114117

resources/views/default/admin/main.tpl

+6
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,12 @@
128128
<i class="fa fa-history"></i> <span>流量记录</span>
129129
</a>
130130
</li>
131+
132+
<li>
133+
<a href="/admin/sys">
134+
<i class="fa fa-cog"></i> <span>系统维护</span>
135+
</a>
136+
</li>
131137

132138
<li>
133139
<a href="/admin/checkinlog">

resources/views/default/admin/sys.tpl

+101-7
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,118 @@
33
<div class="content-wrapper">
44
<section class="content-header">
55
<h1>
6-
统计信息
7-
<small>A</small>
6+
系统维护
87
</h1>
98
</section>
109
<!-- Main content -->
1110
<!-- Main content -->
1211
<section class="content">
1312
<div class="row">
14-
<!-- left column -->
1513
<div class="col-md-6">
16-
<!-- general form elements -->
1714
<div class="box box-primary">
15+
<div class="box-header">
16+
<h3 class="box-title">节点状态信息清理</h3>
17+
</div>
1818
<div class="box-body">
19-
<p>Coming soon...</p>
20-
</div><!-- /.box -->
19+
<p>该信息包括节点在线时间和负载</p>
20+
</div>
21+
<div class="box-footer">
22+
<button id="info" type="submit" name="action" class="btn btn-primary">确认清理</button>
23+
</div>
24+
</div>
25+
</div>
26+
<div class="col-md-6">
27+
<div class="box box-primary">
28+
<div class="box-header">
29+
<h3 class="box-title">节点在线信息清理</h3>
30+
</div>
31+
<div class="box-body">
32+
<p>该信息包括节点在线人数的历史信息</p>
33+
</div>
34+
<div class="box-footer">
35+
<button id="online" type="submit" name="action" class="btn btn-primary">确认清理</button>
36+
</div>
37+
</div>
38+
</div>
39+
<div class="col-md-6">
40+
<div class="box box-primary">
41+
<div class="box-header">
42+
<h3 class="box-title">流量历史记录清理</h3>
43+
</div>
44+
<div class="box-body">
45+
<p>该信息包括所有用户的使用流量信息,流量结算信息,使用节点</p>
46+
<span>该选项不会清零用户流量 但可能会导致一次流量结算不准确</span>
47+
<span>同时节点产生流量数据也将重置</span>
48+
</div>
49+
<div class="box-footer">
50+
<button id="traffic" type="submit" name="action" class="btn btn-primary">确认清理</button>
51+
</div>
2152
</div>
2253
</div>
2354
</div>
2455
</section><!-- /.content -->
2556
</div><!-- /.content-wrapper -->
26-
{include file='admin/footer.tpl'}
57+
<script>
58+
$(document).ready(function () {
59+
$("#info").click(function () {
60+
$.ajax({
61+
type: "POST",
62+
url: "/admin/cleannodelog",
63+
dataType: "json",
64+
success: function (data) {
65+
if (data.ret==1) {
66+
alert("清理成功");
67+
}else{
68+
alert("发生错误");
69+
}
70+
},
71+
error: function (jqXHR) {
72+
alert("发生错误:" + jqXHR.status);
73+
}
74+
})
75+
})
76+
})
77+
</script>
78+
<script>
79+
$(document).ready(function () {
80+
$("#online").click(function () {
81+
$.ajax({
82+
type: "POST",
83+
url: "/admin/cleanonlinelog",
84+
dataType: "json",
85+
success: function (data) {
86+
if (data.ret==1) {
87+
alert("清理成功");
88+
}else{
89+
alert("发生错误");
90+
}
91+
},
92+
error: function (jqXHR) {
93+
alert("发生错误:" + jqXHR.status);
94+
}
95+
})
96+
})
97+
})
98+
</script>
99+
<script>
100+
$(document).ready(function () {
101+
$("#traffic").click(function () {
102+
$.ajax({
103+
type: "POST",
104+
url: "/admin/cleantrafficlog",
105+
dataType: "json",
106+
success: function (data) {
107+
if (data.ret==1) {
108+
alert("清理成功");
109+
}else{
110+
alert("发生错误");
111+
}
112+
},
113+
error: function (jqXHR) {
114+
alert("发生错误:" + jqXHR.status);
115+
}
116+
})
117+
})
118+
})
119+
</script>
120+
{include file='admin/footer.tpl'}

0 commit comments

Comments
 (0)