Add archiveButton to enable send archive request

This commit is contained in:
Ovler 2024-01-27 15:13:40 +08:00 committed by GitHub
parent 1d18433317
commit b72a32a5a7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,6 +13,7 @@
'use strict';
const initialState = unsafeWindow.__INITIAL_STATE__;
const BASEURL = ""; // 运行API的地址不包括 /archive/ 部分
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
@ -139,9 +140,20 @@
copyBV();
});
var archiveButton = document.createElement("button");
archiveButton.textContent = "Archive Video";
archiveButton.style.marginTop = "10px";
archiveButton.style.padding = "5px";
archiveButton.style.margin = "auto";
archiveButton.style.display = "block"; // initially hidden
archiveButton.addEventListener("click", function () {
archiveVideo();
});
popup.appendChild(text);
popup.appendChild(status);
popup.appendChild(copyButton);
popup.appendChild(archiveButton);
document.body.appendChild(popup);
}
@ -196,6 +208,24 @@
}
}
async function archiveVideo() {
var bvNumber = getBVNumber();
var url = `${BASEURL}/archive/${bvNumber}`;
console.log("Archive URL:", url);
showPopup("正在发送存档请求", "#f3d9a6");
GM_xmlhttpRequest({
method: "PUT",
url: url,
onload: function (response) {
if (response.status === 200) {
showPopup("存档请求已发送", "#bdf8bd");
} else {
showPopup("存档请求失败", "#fac7c7");
}
}
});
}
async function main() {
var url = null;