forked from mengzonefire/baidupan-rapidupload
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmultisave.html
128 lines (122 loc) · 6.04 KB
/
multisave.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
127
128
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>百度网盘秒传链接批量转存</title>
<meta name="description" content="百度网盘秒传链接在线转存/生成/转换,支持iOS/Android/PC and more">
<link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/5.2.0/css/bootstrap.min.css">
</head>
<body>
<div class="container">
<div class="row">
<div class="col-sm-8 offset-sm-2 col-md-6 offset-md-3 text-center">
<h1>百度网盘秒传链接批量转存</h1>
<p id="version">v1.5 mengzonefire version</p>
<p><b>请先阅读 <a href="./manual.html" target="_blank">使用教程</b></a><br></p>
<p><a href="./index.html">秒传转存</a> <a href="./gen.html">秒传生成</a> <a href="./convert.html">秒传转换</a>
</p>
<p>
<b>批量转存必读</b>
<br>
<b>请允许本站弹出多个窗口以实现批量请求</b><br>
<img src="https://pic.rmb.bdstatic.com/bjh/a91b96929b4c335f6d0a9d206c9b24d4.png" height="212">
</p>
</div>
<div class="col-sm-8 offset-sm-2 col-md-6 offset-md-3 text-center">
<p>1. 若转存显示 <b>{"errno":-6,"request_id":...}:</b></p>
<p>-> 请在此浏览器<b>打开或刷新</b><a href="https://pan.baidu.com/" target="_blank">度盘页面</a>(若未登陆请登陆)再重试</p>
<p>2. 若转存显示 <b>{"errno":-6} 或 {"errno":2,"request_id":...}:</b></p>
<p>-> 请填写<b>bdstoken</b>: <b><a href="https://pan.baidu.com/api/gettemplatevariable?fields=[%22bdstoken%22]"
target=_blank>登录度盘网页版后点我获取bdstoken</a></b></p>
</div>
<div id="body" class="col-sm-8 offset-sm-2 col-md-6 offset-md-3 text-center">
<div id="api">
<p>秒传转存接口:
<label class="checkbox-inline" style="cursor:pointer; margin-left: 10px;">
<input type="radio" name="inlineRadioOptions" value="api2" checked> 备用接口
</label>
<label class="checkbox-inline" style="cursor:pointer; margin-left: 6px;">
<input type="radio" name="inlineRadioOptions" value="api1" disabled> <del>常规接口</del>(已失效)
</label>
</p>
</div>
<div>
<label for="bdstoken">bdstoken(可选)</label>
<p><input name="bdstoken" class="form-control" id="bdstoken" placeholder="32位字母数字, 转存出现上述报错时填写"></p>
</div>
<div>
<label for="savePath">转存路径</label>
<p><input name="savePath" class="form-control" id="savePath"
placeholder="不能含有字符\":*?<>|, 示例: /GTA5/, 留空保存在根目录"></p>
</div>
<div>
<label for="link">秒传链接</label>
<p><textarea name="link" id="link" class="form-control"
placeholder="换行分隔, 一行一条 支持: 一键秒传链接/PanDL/游侠/标准码/PCS-GO" rows="6"></textarea></p>
</div>
<p><button onclick="submitLink()" class="btn btn-primary">解析链接并转存</button></p>
</div>
<div id="footer" class="col-sm-8 offset-sm-2 col-md-6 offset-md-3 text-center">
<p>转存后弹窗显示的"errno"(错误码)即转存结果:<br>{"errno":0} 为转存成功, 其余转存失败的errno请参考文档: <a
href="https://mengzonefire.code.misakanet.cn/rapid-upload-userscript-doc/document/FAQ/错误代码(网页工具).html"
rel="noopener noreferrer" target="_blank">载点1</a> <a
href="https://xtsat.github.io/rapid-upload-userscript-doc/document/FAQ/错误代码(网页工具).html"
rel="noopener noreferrer" target="_blank">载点2</a><br><b>所有请求在用户端进行,服务器不保存任何数据</b>
</p>
</div>
</div>
</div>
<script src="https://cdn.staticfile.org/twitter-bootstrap/5.2.0/js/bootstrap.min.js"></script>
<script src="https://cdn.staticfile.org/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/base64.js"></script>
<script src="./common/Tools.js?version=1.5"></script>
<script>
function inital() {
$('#bdstoken').val(localStorage.getItem('Blink_bdstoken'));
$('#savePath').val(localStorage.getItem('Blink_savePath'));
$('#link').on('input', event => {
const result = parseQueryLink(event.target.value);
if (DuParser.parse(result).length) event.target.value = result;
}); // 绑定输入框事件, 输入一键秒传后尝试转换为普通秒传
checkUpdate();
}
function submitLink() {
let savePath = $('#savePath').val();
let bdstoken = $('#bdstoken').val().trim();
if (!(checkBdstoken(bdstoken) && checkPath(savePath))) return;
if (savePath.charAt(savePath.length - 1) !== '/') savePath += '/';
const api = $('#api input:radio:checked').val();
const data = DuParser.parse($('#link').val())
if (!data.length) {
alert('未检测到有效的秒传链接, 请参考页面上方的 "使用教程" -> "支持格式"');
return;
}
data.forEach(file => {
if (api === 'api1' && file.md5s && file.size <= 21474836480) {
saveFile(
file.md5,
file.md5s,
file.size,
savePath + file.path.replace(illegalPathPattern, "_")
);
} else if (api === 'api2' || !file.md5s || file.size > 21474836480) {
saveFile2(
file.md5,
file.size,
savePath + file.path.replace(illegalPathPattern, "_")
);
}
});
}
function main() {
Base64.extendString();
const result = parseQueryLink(window.location.href);
const linkNum = DuParser.parse(result).length
if (linkNum) $('#link').val(result);
window.addEventListener('DOMContentLoaded', inital);
}
main()
</script>
</body>
</html>