forked from yuantuo666/baiduwp-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.php
837 lines (800 loc) · 32.5 KB
/
settings.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
<?php
/**
* PanDownload 网页复刻版,PHP 语言版Settings文件
*
* 设置及后台功能
*
* @author Yuan_Tuo <yuantuo666@gmail.com>
* @link https://imwcr.cn/
* @link https://space.bilibili.com/88197958
*
*/
session_start();
define('init', true);
if (version_compare(PHP_VERSION, '7.0.0', '<')) {
http_response_code(503);
header('Content-Type: text/plain; charset=utf-8');
header('Refresh: 5;url=https://www.php.net/downloads.php');
die("HTTP 503 服务不可用!\r\nPHP 版本过低!无法正常运行程序!\r\n请安装 7.0.0 或以上版本的 PHP!\r\n将在五秒内跳转到 PHP 官方下载页面!");
}
if (!file_exists('functions.php')) {
http_response_code(503);
header('Content-Type: text/plain; charset=utf-8');
header('Refresh: 5;url=https://github.com/yuantuo666/baiduwp-php');
die("HTTP 503 服务不可用!\r\n缺少相关配置和定义文件!无法正常运行程序!\r\n请重新 Clone 项目并配置!\r\n将在五秒内跳转到 GitHub 储存库!");
}
// 导入配置和函数
if (!file_exists('config.php')) {
http_response_code(503);
header('Content-Type: text/plain; charset=utf-8');
header('Refresh: 5;url=install.php');
die("HTTP 503 服务不可用!\r\n暂未安装此程序!\r\n将在五秒内跳转到安装程序!");
} else {
require('config.php');
}
require('functions.php');
// 通用响应头
header('Content-Type: text/html; charset=utf-8');
header('X-UA-Compatible: IE=edge,chrome=1');
// 隐藏错误代码,保护信息安全
if (DEBUG) {
error_reporting(E_ALL);
} else {
error_reporting(0); // 关闭错误报告
}
$method = (!empty($_GET["m"])) ? $_GET["m"] : "";
$is_login = (empty($_SESSION["admin_login"])) ? false : $_SESSION["admin_login"];
if (!$is_login and !empty($_POST["setting_password"])) {
// 开始验证密码
if ($_POST["setting_password"] === ADMIN_PASSWORD) {
// 密码正确
$_SESSION["admin_login"] = true;
$is_login = true;
} else {
// 密码错误
$_SESSION["admin_login"] = false;
$PasswordError = true;
}
}
if ($is_login) connectdb();
?>
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="referrer" content="same-origin" />
<meta name="author" content="Yuan_Tuo" />
<meta name="version" content="<?php echo programVersion; ?>" />
<title><?php echo Sitename; ?> - Settings</title>
<link rel="icon" href="favicon.ico" />
<link rel="stylesheet" href="static/index.css?v=<?php echo programVersion; ?>" />
<link rel="stylesheet" href="https://cdn.staticfile.org/font-awesome/5.8.1/css/all.min.css" />
<link rel="stylesheet" disabled id="ColorMode-Light" href="https://cdn.staticfile.org/twitter-bootstrap/4.1.2/css/bootstrap.min.css" />
<link rel="stylesheet" disabled id="ColorMode-Dark" href="https://cdn.jsdelivr.net/gh/vinorodrigues/bootstrap-dark@0.0.9/dist/bootstrap-dark.min.css" />
<link rel="stylesheet" disabled id="Swal2-Dark" href="https://cdn.jsdelivr.net/npm/@sweetalert2/theme-dark@4.0.2/dark.min.css" />
<link rel="stylesheet" disabled id="Swal2-Light" href="https://cdn.jsdelivr.net/npm/@sweetalert2/theme-default@4.0.2/default.min.css" />
<script src="https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdn.staticfile.org/popper.js/1.12.5/umd/popper.min.js"></script>
<script src="https://cdn.staticfile.org/twitter-bootstrap/4.1.2/js/bootstrap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@10.14.0/dist/sweetalert2.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/jquery-form@4.3.0/dist/jquery.form.min.js"></script>
<script src="static/color.js?v=<?php echo programVersion; ?>"></script>
<script>
async function getAPI(method) { // 获取 API 数据
try {
const response = await fetch(`api.php?m=${method}`, { // fetch API
credentials: 'same-origin' // 发送验证信息 (cookies)
});
if (response.ok) { // 判断是否出现 HTTP 异常
return {
success: true,
data: await response.json() // 如果正常,则获取 JSON 数据
}
} else { // 若不正常,返回异常信息
return {
success: false,
msg: `服务器返回异常 HTTP 状态码:HTTP ${response.status} ${response.statusText}.`
};
}
} catch (reason) { // 若与服务器连接异常
return {
success: false,
msg: '连接服务器过程中出现异常,消息:' + reason.message
};
}
}
getAPI('CheckUpdate').then(function(response) {
if (response.success) {
console.log('检查更新信息:');
console.log(response);
const data = response.data;
if (data.code === 0) {
if (data.have_update) {
const div = document.createElement('div');
div.id = 'CheckUpdate';
div.style.margin = '0.3rem 1rem';
div.style.display = 'none';
div.innerHTML = `Baiduwp-PHP 项目有新的版本:${data.version}(${data.isPreRelease ? '此版本为预发行版本,' : ''}当前版本为${data.now_version})!请联系站长更新!
<a href="${data.page_url}" target="_blank">发行版页面</a> <a href="${data.file_url}" target="_blank">下载程序文件</a><div style="float: right;"><a href="javascript:SetUpdateTip(false);">不再提示</a></div>`;
document.body.insertAdjacentElement('beforeBegin', div);
if (localStorage.getItem('UpdateTip') != "false")
$('#CheckUpdate').show(1500);
}
} else if (data.code === 2) {
const div = document.createElement('div');
div.id = 'CheckUpdate';
div.style.margin = '0.3rem 1rem';
div.style.display = 'none';
div.innerHTML = `Baiduwp-PHP 项目版本异常!当前版本:${data.now_version},项目最新版本为:${data.version}${data.isPreRelease ? '(预发行版本)' : ''}!
<a href="${data.page_url}" target="_blank">发行版页面</a> <a href="${data.file_url}" target="_blank">下载程序文件</a><div style="float: right;"><a href="javascript:SetUpdateTip(false);">不再提示</a></div>`;
document.body.insertAdjacentElement('beforeBegin', div);
if (localStorage.getItem('UpdateTip') != "false")
$('#CheckUpdate').show(1500);
} else if (data.code === 1) {
console.log('服务器获取更新失败!详细信息:');
console.log(data);
} else {
console.log('服务器获取更新失败,且错误码不在支持列表中!详细信息:');
console.log(data);
}
} else {
console.log('检查更新失败!详细信息:');
console.log(response);
}
});
function SetUpdateTip(value) {
localStorage.setItem('UpdateTip', `${value}`); // 不知为啥,只能用string类型
if (value) $('#CheckUpdate').show(2000);
else $('#CheckUpdate').hide(2000);
}
</script>
</head>
<body>
<div class="container">
<div class="row justify-content-center">
<?php
if (!$is_login) { ?>
<!-- 登录 -->
<div class="col-lg-6 col-md-9 mx-auto mb-5 input-card">
<div class="card">
<div class="card-header bg-dark text-light">Pandownload复刻版 - 后台登录</div>
<div class="card-body">
<form id="form1" method="post">
<div class="form-group my-2">
<input type="text" class="form-control" name="setting_password" placeholder="Password">
<small class="form-text text-right">忘记密码可进入<b>config.php</b>中查看~</small>
</div>
<button onclick="Sumbitform()" class="mt-4 mb-3 form-control btn btn-success btn-block">登录</button>
</form>
<script>
<?php if (isset($PasswordError) and $PasswordError) echo "Swal.fire('管理员密码错误','如果忘记管理员密码请进入 config.php 查看','error');"; ?>
function Sumbitform() {
Swal.fire("正在登录,请稍等");
Swal.showLoading();
$("#form1").submit();
}
</script>
</div>
</div>
</div>
<?php } else {
// 登录后操作
?>
<div class="col-md-12 col-sm-12 col-12">
<?php if ($method == "analyse") { ?>
<nav>
<ol class="breadcrumb my-4">
<li class="breadcrumb-item"><a href="index.php">baiduwp-php</a></li>
<li class="breadcrumb-item"><a href="settings.php">后台管理</a></li>
<li class="breadcrumb-item">数据分析</li>
</ol>
</nav>
<div class="card">
<div class="card-header">
数据分析
</div>
<div class="card-body">
<h5 class="card-title">最近解析</h5>
<div style="overflow:scroll;">
<table id="AnalyseTable" class="table table-striped" style="min-width:1400px;" page=1>
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">操作</th>
<th scope="col">用户ip</th>
<th scope="col">文件名</th>
<th scope="col">文件大小</th>
<!-- <th scope="col">文件效验码</th> -->
<th scope="col">文件路径</th>
<!-- <th scope="col">文件创建时间</th> -->
<th scope="col">文件下载地址</th>
<th scope="col">解析时间</th>
<th scope="col">解析账号</th>
<!-- 新增解析账号:ALTER TABLE `bdwp` ADD `paccount` INT NOT NULL COMMENT '解析账号id' AFTER `ptime`; -->
</tr>
</thead>
<tbody>
<?php
echo GetAnalyseTablePage(1);
?>
</tbody>
</table>
</div>
<br />
<a href="javascript:AnalyseLoadmore();" class="btn btn-primary">加载更多</a>
<script>
function AnalyseLoadmore() {
Swal.fire("正在加载,请稍等");
Swal.showLoading();
newpage = Number($("#AnalyseTable").attr("page")) + 1;
$.get(`api.php?m=ADMINAPI&act=AnalyseGetTable&page=${newpage}`, function(data, status) {
if (status == "success") {
$("#AnalyseTable").append(data);
$("#AnalyseTable").attr("page", newpage);
Swal.close();
} else {
Swal.fire("请求错误,请检查网络是否正常");
}
});
}
</script>
</div>
</div>
<?php } elseif ($method == "svip") { ?>
<nav>
<ol class="breadcrumb my-4">
<li class="breadcrumb-item"><a href="index.php">baiduwp-php</a></li>
<li class="breadcrumb-item"><a href="settings.php">后台管理</a></li>
<li class="breadcrumb-item">会员账号</li>
</ol>
</nav>
<!-- SVIP -->
<div class="card">
<div class="card-header">
SVIP账号管理
</div>
<div class="card-body">
<h5 class="card-title">默认账号</h5>
<?php
$sql = "SELECT * FROM `" . $dbtable . "_svip` WHERE `state`!=-1 ORDER BY `is_using` DESC LIMIT 0,1"; // 时间倒序输出第一项未被限速账号
$Result = mysqli_query($conn, $sql);
if ($Result = mysqli_fetch_assoc($Result)) {
$id = $Result["id"];
$name = $Result["name"];
$add_time = $Result["add_time"];
$is_using = $Result["is_using"];
$state = ($Result["state"] == -1) ? "限速" : "正常";
$sql = "SELECT count(`id`) as AllCount,sum(`size`) as AllSize FROM `$dbtable` WHERE `paccount`=$id"; // 时间倒序输出第一项未被限速账号
$Result = mysqli_query($conn, $sql);
if ($Result = mysqli_fetch_assoc($Result)) {
$AllCount = $Result["AllCount"];
$AllSize = ($AllCount == "0") ? "无数据" : formatSize((float)$Result["AllSize"]); // 格式化获取到的文件大小
$ParseCountMsg = "累计解析次数:$AllCount 个<br />累计解析大小:$AllSize";
}
echo "<p>ID:$id<br />";
echo "名称:$name<br />";
echo "启用时间:$add_time<br />";
echo "是否使用(最新时间将被用于解析):$is_using<br />";
echo "状态:$state<br />";
echo "$ParseCountMsg</p>";
} else echo "<p>Error!当前没有可用账户,正使用本地解析。</p>";
?>
<br>
<h5 class="card-title">所有账号</h5>
<div style="overflow:scroll;">
<table id="SvipTable" class="table table-striped" style="min-width:1400px;" page=1>
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">操作</th>
<th scope="col">是否正在使用</th>
<th scope="col">账号名称</th>
<th scope="col">会员状态</th>
<th scope="col">添加时间</th>
<th scope="col">会员bduss</th>
<th scope="col">会员stoken</th>
</thead>
<tbody>
<?php
echo GetSvipTablePage(1);
?>
</tbody>
</table>
</div>
<br />
<a href="javascript:SvipLoadmore();" class="btn btn-primary">加载更多</a>
<script>
function SvipLoadmore() {
Swal.fire("正在加载,请稍等");
Swal.showLoading();
newpage = Number($("#SvipTable").attr("page")) + 1;
$.get(`api.php?m=ADMINAPI&act=SvipGetTable&page=${newpage}`, function(data, status) {
if (status == "success") {
$("#SvipTable").append(data);
$("#SvipTable").attr("page", newpage);
Swal.close();
} else {
Swal.fire("请求错误,请检查网络是否正常");
}
});
}
function SettingFirstAccount(id) {
Swal.fire("正在设置,请稍等");
Swal.showLoading();
$.get(`api.php?m=ADMINAPI&act=SvipSettingFirstAccount&id=${id}`, function(data, status) {
if (status == "success") {
var json = JSON.parse(data);
Swal.fire(json.msg);
if (json.refresh == true) setTimeout("location.reload();", 3000);
} else {
Swal.fire("请求错误,请检查网络是否正常");
}
});
}
function SettingNormalAccount(id) {
Swal.fire("正在设置,请稍等");
Swal.showLoading();
$.get(`api.php?m=ADMINAPI&act=SvipSettingNormalAccount&id=${id}`, function(data, status) {
if (status == "success") {
var json = JSON.parse(data);
Swal.fire(json.msg);
if (json.refresh == true) setTimeout("location.reload();", 3000);
} else {
Swal.fire("请求错误,请检查网络是否正常");
}
});
}
</script>
<br><br><br>
<!-- 新增会员数据 -->
<h5 class="card-title">新增会员数据</h5>
<form class="ajaxform" action="api.php?m=ADMINAPI&act=singleBDUSS">
<div class="form-group">
<label>账号名称</label>
<input type="text" class="form-control form-control-sm" name="name">
</div>
<div class="form-group">
<label>BDUSS</label>
<input type="text" class="form-control form-control-sm" name="BDUSS">
</div>
<div class="form-group">
<label>STOKEN</label>
<input type="text" class="form-control form-control-sm" name="STOKEN">
</div>
<button type="submit" class="btn btn-primary">提交</button>
</form>
<!-- 新增会员数据 -->
<br><br>
<h5 class="card-title">批量导入svip</h5>
<form class="ajaxform" action="api.php?m=ADMINAPI&act=multiBDUSS">
<div class="form-group">
<label>账号名称</label>
<input type="text" class="form-control form-control-sm" name="name">
</div>
<div class="form-group">
<label>MULTI BDUSS</label>
<textarea type="text" class="form-control form-control-sm" name="MULTI_BDUSS" style="height: 200px;" placeholder="liMlp3bFN1NWpVM0FrVzRYRTkyWH……----0c27e6ebdb50252b……----百度网盘账号 liMlp3bFN1NWpVM0FrVzRYRTkyWH……----0c27e6ebdb50252b……----百度网盘账号"></textarea>
<small>每行设置一个账号,每行格式:BDUSS----STOKEN----账号名称<br />如账号名称为空,则将使用上方设置的统一账号名称</small>
</div>
<button type="submit" class="btn btn-primary">提交</button>
</form>
</div>
</div>
<?php } elseif ($method == "iplist") { ?>
<nav>
<ol class="breadcrumb my-4">
<li class="breadcrumb-item"><a href="index.php">baiduwp-php</a></li>
<li class="breadcrumb-item"><a href="settings.php">后台管理</a></li>
<li class="breadcrumb-item">IP黑/白名单</li>
</ol>
</nav>
<!-- IP地址 -->
<div class="card">
<div class="card-header">
黑/白名单管理
</div>
<div class="card-body">
<h5 class="card-title">所有IP</h5>
<div style="overflow:scroll;">
<table id="IPTable" class="table table-striped" style="min-width:600px;" page=1>
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">操作</th>
<th scope="col">IP</th>
<th scope="col">账号状态</th>
<th scope="col">备注</th>
<th scope="col">添加时间</th>
</thead>
<tbody>
<?php
echo GetIPTablePage(1);
?>
</tbody>
</table>
</div>
<br />
<a href="javascript:IPLoadmore();" class="btn btn-primary">加载更多</a>
<script>
function IPLoadmore() {
Swal.fire("正在加载,请稍等");
Swal.showLoading();
newpage = Number($("#IPTable").attr("page")) + 1;
$.get(`api.php?m=ADMINAPI&act=IPGetTable&page=${newpage}`, function(data, status) {
if (status == "success") {
$("#IPTable").append(data);
$("#IPTable").attr("page", newpage);
Swal.close();
} else {
Swal.fire("请求错误,请检查网络是否正常");
}
});
}
</script>
<br><br><br>
<!-- 新增IP -->
<h5 class="card-title">新增IP</h5>
<form class="ajaxform" action="api.php?m=ADMINAPI&act=NewIp">
<div class="form-group">
<label>IP地址</label>
<input type="text" class="form-control form-control-sm" name="ip">
<small>现在已经支持对 IP 地址进行模糊匹配,您可以使用“%”代替任意个字符,“_”代替单个字符,更多使用方法请自行搜索 <a href="https://cn.bing.com/search?q=SQL+%E9%80%9A%E9%85%8D%E7%AC%A6" target="_blank" title="SQL 通配符 - 国内版 Bing">SQL 通配符</a>。</small>
</div>
<div class="form-group">
<label>备注</label>
<input type="text" class="form-control form-control-sm" name="remark">
</div>
<div class="form-group">
<label>账号种类</label>
<select class="form-control form-control-sm" name="type">
<option value="0">白名单</option>
<option value="-1">黑名单</option>
</select>
</div>
<button type="submit" class="btn btn-primary">提交</button>
</form>
</div>
</div>
<?php } elseif ($method == "DownloadTimes") { ?>
<nav>
<ol class="breadcrumb my-4">
<li class="breadcrumb-item"><a href="index.php">baiduwp-php</a></li>
<li class="breadcrumb-item"><a href="settings.php">后台管理</a></li>
<li class="breadcrumb-item">下载次数限制修改</li>
</ol>
</nav>
<!-- 下载次数限制修改 -->
<div class="card">
<div class="card-header">
下载次数限制修改
</div>
<div class="card-body">
<h5 class="card-title">下载次数限制修改</h5>
<?php
echo "当前设置的下载次数:" . DownloadTimes;
?>
<br>
注意!此功能需要修改config.php的信息,请小心使用。
<br><br><br>
<!-- 修改下载次数 -->
<h5 class="card-title">修改下载次数</h5>
<form class="ajaxform" action="api.php?m=ADMINAPI&act=setDownloadTimes">
<div class="form-group">
<label>下载次数</label>
<input type="text" class="form-control form-control-sm" name="DownloadTimes">
</div>
<button type="submit" class="btn btn-primary">提交</button>
</form>
</div>
</div>
<?php } elseif ($method == "SVIPSwitchMod") { ?>
<nav>
<ol class="breadcrumb my-4">
<li class="breadcrumb-item"><a href="index.php">baiduwp-php</a></li>
<li class="breadcrumb-item"><a href="settings.php">后台管理</a></li>
<li class="breadcrumb-item">会员账号切换模式</li>
</ol>
</nav>
<!-- 会员账号切换模式 -->
<div class="card">
<div class="card-header">
会员账号切换模式
</div>
<div class="card-body">
<h5 class="card-title">会员账号切换模式</h5>
<?php
switch (SVIPSwitchMod) {
case '0':
$Mod = "本地模式";
break;
case '1':
$Mod = "顺序模式";
break;
case '2':
$Mod = "轮换模式";
break;
case '3':
$Mod = "手动模式";
break;
default:
$Mod = "未知模式";
break;
}
echo "当前设置的会员账号切换模式:$Mod <br />";
?>
本地模式:不管是否限速,一直使用本地账号解析。<br />
顺序模式:一直使用设置的账号解析,用到会员账号失效切换下一账号;当数据库中会员账号失效后,会使用本地账号解析。<br />
会员账号轮换模式:解析一次就切换一次账号,只使用会员账号;当数据库中会员账号失效后,会使用本地账号解析。<br />
所有账号轮换模式:解析一次就切换一次账号,无视是否限速。<br />
手动模式:不管是否限速,一直使用数据库中设置的账号。
<br>
注意!此功能需要修改config.php的信息,请小心使用。
<br><br>
<!-- 修改会员账号切换模式 -->
<h5 class="card-title">修改会员账号切换模式</h5>
<form class="ajaxform" action="api.php?m=ADMINAPI&act=setSVIPSwitchMod">
<div class="form-group">
<label>会员账号切换模式</label>
<select class="form-control" id="SVIPSwitchMod" name="SVIPSwitchMod">
<option value="0" <?php if (SVIPSwitchMod == "0") echo "selected=\"selected\""; ?>>本地模式</option>
<option value="1" <?php if (SVIPSwitchMod == "1") echo "selected=\"selected\""; ?>>顺序模式</option>
<option value="2" <?php if (SVIPSwitchMod == "2") echo "selected=\"selected\""; ?>>会员账号轮换模式</option>
<option value="4" <?php if (SVIPSwitchMod == "4") echo "selected=\"selected\""; ?>>所有账号轮换模式</option>
<option value="3" <?php if (SVIPSwitchMod == "3") echo "selected=\"selected\""; ?>>手动模式</option>
</select>
</div>
<button type="submit" class="btn btn-primary">提交</button>
</form>
</div>
</div>
<?php } else { ?>
<nav>
<ol class="breadcrumb my-4">
<li class="breadcrumb-item"><a href="index.php">baiduwp-php</a></li>
<li class="breadcrumb-item"><a href="settings.php">后台管理</a></li>
<li class="breadcrumb-item">概览</li>
</ol>
</nav>
<!-- 概览 -->
<div class="card">
<div class="card-header">账号状态检测</div>
<div class="card-body">
<div class="row">
<div class="col-md-6 col-sm-12 card-item">
<h5>普通账号状态</h5>
<p class="card-text">
<?php
$Status = AccountStatus(BDUSS, STOKEN);
if ($Status[0] == 0) {
//正常
$AccountName = $Status[2];
echo "账号名称:$AccountName<br />";
if ($Status[3] == 1)
echo "登录状态:<span class=\"text-success\">正常</span><br />";
else
echo "登录状态:<span class=\"text-danger\">异常</span><br />";
$AccountVIP = ["普通账号", "普通会员", "超级会员"][$Status[1]];
echo "会员状态:$AccountVIP<br />";
if ($Status[4] != 0) {
$AccountTime = time2Units($Status[4]);
if ($Status[4] <= 60480)
echo "剩余时间:<span class=\"text-danger\">$AccountTime</span><br />";
else
echo "剩余时间:$AccountTime<br />";
}
} elseif ($Status[0] == -6) {
echo "id为 $id 的SVIP账号已经失效<br />";
} else {
echo "出现位置错误代码:" . $Status[0] . "<br />";
}
?>
</p>
<br />
</div>
<div class="col-md-6 col-sm-12 card-item">
<h5>会员账号状态</h5>
<p class="card-text">
<?php
// 获取对应BDUSS
$DBSVIP = GetDBBDUSS();
$SVIP_BDUSS = $DBSVIP[0];
$id = $DBSVIP[1];
$SVIP_STOKEN = $DBSVIP[2];
if ($SVIP_STOKEN == "") {
echo "id为 $id 的SVIP账号没有设置对应STOKEN,无法检测<br />";
} else {
$Status = AccountStatus($SVIP_BDUSS, $SVIP_STOKEN);
if ($Status[0] == 0) {
$AccountName = $Status[2];
echo "账号名称:$AccountName<br />";
if ($Status[3] == 1)
echo "登录状态:<span class=\"text-success\">正常</span><br />";
else
echo "登录状态:<span class=\"text-danger\">异常</span><br />";
$AccountVIP = ["普通账号", "普通会员", "超级会员"][$Status[1]];
echo "会员状态:$AccountVIP<br />";
if ($Status[4] != 0) {
$AccountTime = time2Units($Status[4]);
if ($Status[4] <= 60480)
echo "剩余时间:<span class=\"text-danger\">$AccountTime</span><br />";
else
echo "剩余时间:$AccountTime<br />";
}
} elseif ($Status[0] == -6) {
echo "id为 $id 的SVIP账号已经失效<br />";
} else {
echo "出现位置错误代码:" . $Status[0] . "<br />";
}
}
?>
</p>
<br />
</div>
</div>
</div>
</div>
<br />
<div class="card">
<div class="card-header">
概览
</div>
<div class="card-body">
<div class="row">
<div class="col-md-6 col-sm-12">
<h5 class="card-title">使用统计</h5>
<p class="card-text">
<?php
$sql = "SELECT count(`id`) as AllCount,sum(`size`) as AllSize FROM `$dbtable`";
$Result = mysqli_fetch_assoc(mysqli_query($conn, $sql));
// 存在数据
$AllCount = $Result["AllCount"];
$AllSize = formatSize((float)$Result["AllSize"]); // 格式化获取到的文件大小
echo "累计解析 $AllCount 个,共 $AllSize";
?>
<br />
<?php
$sql = "SELECT count(`id`) as AllCount,sum(`size`) as AllSize FROM `$dbtable` WHERE date(`ptime`)=date(now());"; // 获取今天的解析量
$Result = mysqli_fetch_assoc(mysqli_query($conn, $sql));
// 存在数据
$AllCount = $Result["AllCount"];
$AllSize = formatSize((float)$Result["AllSize"]); // 格式化获取到的文件大小
echo "今日解析 $AllCount 个,共 $AllSize";
?>
</p>
<a href="?m=analyse" class="btn btn-primary">查看详细情况</a>
<br><br>
</div>
<div class="col-md-6 col-sm-12">
<h5 class="card-title">SVIP账号</h5>
<p class="card-text">
<?php
$sql = "SELECT count(`id`) as AllCount FROM `" . $dbtable . "_svip`";
$Result = mysqli_fetch_assoc(mysqli_query($conn, $sql));
$AllCount = $Result["AllCount"];
$SvipCountMsg = "数据库中共 $AllCount 个账号";
$sql = "SELECT count(`id`) as AllCount FROM `" . $dbtable . "_svip` WHERE `state`=-1";
$Result = mysqli_fetch_assoc(mysqli_query($conn, $sql));
$AllCount = $Result["AllCount"];
$SvipFailCountMsg = "有 $AllCount 个账号已被限速";
echo $SvipCountMsg . "<br />" . $SvipFailCountMsg;
?>
</p>
<a href="?m=svip" class="btn btn-primary">查看详细情况</a>
<br><br>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-12">
<h5 class="card-title">黑/白名单</h5>
<p class="card-text">
<?php
$sql = "SELECT count(`id`) as AllCount FROM `" . $dbtable . "_ip`";
$Result = mysqli_fetch_assoc(mysqli_query($conn, $sql));
$AllCount = $Result["AllCount"];
$SvipCountMsg = "数据库中共 $AllCount 个ip";
if ($AllCount != 0) {
$sql = "SELECT count(`id`) as AllCount FROM `" . $dbtable . "_ip` WHERE `type`=-1";
$Result = mysqli_fetch_assoc(mysqli_query($conn, $sql));
$AllCount = $Result["AllCount"];
$SvipFailCountMsg = "有 $AllCount 个黑名单";
$sql = "SELECT count(`id`) as AllCount FROM `" . $dbtable . "_ip` WHERE `type`=0";
$Result = mysqli_fetch_assoc(mysqli_query($conn, $sql));
$AllCount = $Result["AllCount"];
$SvipSuccCountMsg = "有 $AllCount 个白名单";
} else $SvipFailCountMsg = $SvipSuccCountMsg = "";
echo $SvipCountMsg . "<br />" . $SvipFailCountMsg . "<br />" . $SvipSuccCountMsg;
?>
</p>
<a href="?m=iplist" class="btn btn-primary">查看详细情况</a>
<br><br>
</div>
<div class="col-md-6 col-sm-12">
<h5 class="card-title">下载次数限制修改</h5>
<p class="card-text">
<?php
echo "当前设置的下载次数:" . DownloadTimes;
?>
</p>
<a href="?m=DownloadTimes" class="btn btn-primary">查看详细情况</a>
<br><br>
</div>
</div>
<div class="row">
<div class="col-md-6 col-sm-12">
<h5 class="card-title">会员账号切换模式</h5>
<p class="card-text">
<?php
switch (SVIPSwitchMod) {
case '0':
$Mod = "本地模式";
break;
case '1':
$Mod = "顺序模式";
break;
case '2':
$Mod = "会员账号轮换模式";
break;
case '3':
$Mod = "手动模式";
break;
case '4':
$Mod = "所有账号轮换模式";
break;
default:
$Mod = "未知模式";
break;
}
echo "当前设置的会员账号切换模式:$Mod";
?>
</p>
<a href="?m=SVIPSwitchMod" class="btn btn-primary">查看详细情况</a>
<br><br>
</div>
</div>
</div>
</div>
</div>
<?php } ?>
</div>
<?php
} ?>
</div>
<script>
function DeleteById(Type, Id) {
Swal.fire("正在提交删除请求,请稍等");
Swal.showLoading();
$.get(`api.php?m=ADMINAPI&act=DeleteById&id=${Id}&type=${Type}`, function(data, status) {
if (status == "success") {
var json = JSON.parse(data);
Swal.fire(json.msg);
if (json.refresh == true) setTimeout("location.reload();", 3000);
} else {
Swal.fire("请求错误,请检查网络是否正常");
}
});
}
$('form.ajaxform').ajaxForm({
type: 'post',
dataType: 'json',
beforeSubmit: function() {
Swal.fire("正在提交数据,请稍等");
Swal.showLoading();
},
success: function(data, success, xhr, $form) {
if (data.error === 0) {
Swal.fire(`${data.msg}`, data.detail, 'success');
if (data.refresh == true) setTimeout("location.reload();", 3000);
} else {
Swal.fire(`${data.msg}`, data.detail, 'error');
}
},
error: function(xhr, error, text, $form) {
console.log(xhr);
console.log(`${error}: ${text}`);
console.log($form);
Swal.fire('添加失败', '发生错误,添加失败!<br />详细信息请见控制台!', 'error');
}
});
</script>
</body>
</html>