forked from hjdhnx/drpy-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (114 loc) · 4.86 KB
/
index.html
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
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Cookie管理</title>
<link rel="stylesheet" href="./static/css/style.css"/>
<link rel="stylesheet" href="./static/css/daisyui.min.css"/>
<script src="./static/js/tailwindcss.min.js"></script>
<script src="./static/js/axios.min.js"></script>
<script src="./static/js/qrcode.min.js"></script>
<script src="./static/js/core.js"></script>
<script src="./static/js/cookie.js"></script>
</head>
<body class="bg-gray-100 font-sans">
<div class="artboard phone-2 box p-4">
<!-- Navigation Menu -->
<ul class="menu menu-horizontal lg:menu-horizontal bg-base-200 rounded-box mb-4">
<li><a class="btn-scan" data-platform="ali">阿里</a></li>
<li><a class="btn-scan" data-platform="quark">夸克</a></li>
<li><a class="btn-scan" data-platform="uc">UC</a></li>
<li><a class="btn-scan" data-platform="bili">哔哩哔哩</a></li>
</ul>
<!-- QR Code -->
<div class="qrcode-container text-center mb-4">
<img id="qrcode" src="./static/img/qrcode_expired.jpg" alt="二维码" class="mx-auto"/>
</div>
<!-- Divider -->
<div class="divider divider-neutral mb-4">请使用手机APP扫码登录</div>
<!-- Textarea with improved styling -->
<textarea
id="cookie-res"
class="textarea textarea-bordered w-full h-40 p-4 bg-white border-2 border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500"
placeholder="扫码确认后将在此处展示cookie"
></textarea>
<!-- Buttons with improved design -->
<div class="flex justify-center gap-4 mt-4">
<button
id="copy-btn"
class="btn btn-primary w-28 py-2 rounded-lg text-white shadow-lg transform transition-all duration-200 hover:bg-blue-600 hover:scale-105"
onclick="copyToClipboard()"
>
复制
</button>
<button
id="store-btn"
class="btn btn-success w-28 py-2 rounded-lg text-white shadow-lg transform transition-all duration-200 hover:bg-green-600 hover:scale-105"
onclick="storeCookie()"
>
入库
</button>
</div>
</div>
<!-- Toast notification -->
<div class="toast toast-top toast-end">
<div class="toast-content" id="toast" style="display: none;">
<span id="toast-content"></span>
</div>
</div>
<script>
// Copy text to clipboard
function copyToClipboard() {
const textArea = document.getElementById("cookie-res");
textArea.select();
document.execCommand("copy");
// Show success message
const toast = document.getElementById("toast");
const toastContent = document.getElementById("toast-content");
toastContent.textContent = "内容已复制到剪切板";
toast.style.display = "block";
// Hide toast after 2 seconds
setTimeout(() => {
toast.style.display = "none";
}, 2000);
}
// Store cookie (just an alert for now)
function storeCookie() {
// 获取当前激活的 li
const activeLi = document.querySelector("ul.menu a.active");
if (activeLi) {
const textValue = document.getElementById("cookie-res").value || '';
const active_name = activeLi.textContent.trim();
const active_key = activeLi.getAttribute('data-platform').trim();
const save_key = active_key === 'ali' ? active_key + '_token' : active_key + '_cookie';
console.log(`准备入库cookie:${active_name} ${save_key},值为:${textValue}`);
const cookie_auth_code = prompt('cookie入库功能需要管理员授权码,请你正确输入后继续');
if (cookie_auth_code) {
// 使用 axios 发送 POST 请求
axios.post('/admin/cookie-set', {
cookie_auth_code: cookie_auth_code,
key: save_key,
value: textValue.trim().replaceAll('\n', '')
})
.then(response => {
if (response.data.success) {
alert(`Cookie 入库成功:${active_name} (${save_key})`);
} else {
alert(`入库失败:${response.data.message}`);
}
})
.catch(error => {
console.error('请求失败:', error);
alert(`入库失败,服务器出现问题,请稍后再试。\n${error.response.data.message}`);
});
}
} else {
alert('至少选中一个cookie入库项目');
}
}
// Initialize the page
initializePage();
</script>
</body>
</html>