Skip to content

Commit

Permalink
Merge pull request #15 from Ovler-Young/patch-1
Browse files Browse the repository at this point in the history
Add archiveButton to enable send archive request
  • Loading branch information
yzqzss authored Jan 29, 2024
2 parents 1d18433 + a844c68 commit 588df3c
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions bilibili-archive-checker.user.js
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down Expand Up @@ -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);
}
Expand Down Expand Up @@ -196,6 +208,28 @@
}
}

async function archiveVideo() {
var bvNumber = getBVNumber();
if (BASEURL === "") {
alert("请先设置存档服务器地址");
return;
}
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;
Expand Down

0 comments on commit 588df3c

Please sign in to comment.