mirror of
https://github.com/3288588344/toulu.git
synced 2025-12-16 23:11:00 +08:00
Add files via upload
This commit is contained in:
28
兴攀农场.js
28
兴攀农场.js
@@ -331,7 +331,33 @@ function httpRequest(options, timeout = 1 * 1000) {
|
||||
}, timeout)
|
||||
})
|
||||
}
|
||||
|
||||
//==============================================Debug模式===============================================
|
||||
function debugLog(...args) {
|
||||
if (debug) {
|
||||
console.log(...args);
|
||||
}
|
||||
}
|
||||
//===============================================获取远程通知========================================
|
||||
async function getNotice() {
|
||||
try {
|
||||
const urls = [
|
||||
"https://tfapi.cn/tl.json",
|
||||
|
||||
];
|
||||
let notice = null;
|
||||
for (const url of urls) {
|
||||
const options = { url, headers: { "User-Agent": "" }, };
|
||||
const result = await httpRequest(options);
|
||||
if (result && "notice" in result) {
|
||||
notice = result.notice.replace(/\\n/g, "\n");
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (notice) { $.DoubleLog(notice); }
|
||||
} catch (e) {
|
||||
console.log(e);
|
||||
}
|
||||
}
|
||||
//==============================================获取远程版本=================================================
|
||||
function getVersion(scriptUrl, timeout = 3 * 1000) {
|
||||
return new Promise((resolve) => {
|
||||
|
||||
Reference in New Issue
Block a user