ios_rule_script/script/tieba/tieba_checkin.js

162 lines
22 KiB
JavaScript
Raw Normal View History

2021-04-09 19:34:05 +08:00
/*
百度贴吧签到增加重试机制减少签到失败的情况
脚本为串行执行通过设定batchSize的值<int>实现每批多少个贴吧并行签到一次
*/
const scirptName = "百度贴吧";
const batchSize = 20;
const retries = 10; // 签到失败重试次数
const interval = 5000; // 每次重试间隔
const tiebaCookieKey = "tieba_checkin_cookie";
const tiebeGetCookieRegex1 = /https?:\/\/(c\.tieba\.baidu\.com|180\.97\.\d+\.\d+)\/c\/s\/login/;
const tiebeGetCookieRegex2 = /^https?:\/\/c\.tieba\.baidu\.com\/c\/s\/channelIconConfig/;
const tiebeGetCookieRegex3 = /https?:\/\/tiebac\.baidu\.com\/c\/u\/follow\/getFoldedMessageUserInfo/;
let magicJS = MagicJS(scirptName, "DEBUG");
magicJS.unifiedPushUrl = magicJS.read("tieba_unified_push_url") || magicJS.read("magicjs_unified_push_url");
2021-04-09 19:34:05 +08:00
let getTiebaListOptions = {
url: "https://tieba.baidu.com/mo/q/newmoindex",
headers: {
2021-04-09 19:34:05 +08:00
"Content-Type": "application/octet-stream",
"Referer": "https://tieba.baidu.com/index/tbwise/forum",
"Cookie": "",
"User-Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 12_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/16A366",
2021-04-09 19:34:05 +08:00
},
body: "",
};
2021-04-09 19:34:05 +08:00
let tiebaCheckInOptions = {
url: "https://tieba.baidu.com/sign/add",
2021-04-09 19:34:05 +08:00
headers: {
"Accept": "application/json, text/javascript, */*; q=0.01",
"Accept-Encoding": "gzip,deflate,br",
"Accept-Language": "zh-CN,zh;q=0.9,en;q=0.8,en-GB;q=0.7,en-US;q=0.6",
"Connection": "keep-alive",
"Cookie": "",
"Host": "tieba.baidu.com",
"Referer": "https://tieba.baidu.com/",
"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.135 Safari/537.36 Edg/84.0.522.63",
2021-04-09 19:34:05 +08:00
},
body: "",
};
2021-04-09 19:34:05 +08:00
function GetTieBaList(cookie) {
return new Promise((resolve, reject) => {
2021-04-09 19:34:05 +08:00
getTiebaListOptions.headers.Cookie = cookie;
magicJS.get(getTiebaListOptions, (err, resp, data) => {
if (err) {
2021-04-09 19:34:05 +08:00
magicJS.logError(`获取贴吧列表失败,请求异常:${err}`);
reject(err);
} else {
try {
2021-04-09 19:34:05 +08:00
let obj = JSON.parse(data);
if (obj.error === "success") {
resolve([obj.data.tbs, obj.data.like_forum]);
} else {
2021-04-09 19:34:05 +08:00
magicJS.logWarning(`获取贴吧列表失败,接口响应不合法:${data}`);
reject("获取贴吧列表失败");
2021-04-09 19:34:05 +08:00
}
} catch (err) {
2021-04-09 19:34:05 +08:00
magicJS.logError(`获取贴吧列表失败,执行异常:${err}`);
reject(err);
}
}
});
});
2021-04-09 19:34:05 +08:00
}
function TiebaCheckIn(cookie, tbs, tieba) {
return new Promise((resolve, reject) => {
let kw = tieba["forum_name"];
if (tieba["is_sign"] === 1) {
2021-04-09 19:34:05 +08:00
resolve(`[${kw}] 重复签到`);
} else {
2021-04-09 19:34:05 +08:00
tiebaCheckInOptions.headers.Cookie = cookie;
tiebaCheckInOptions.body = `tbs=${tbs}&kw=${kw}&ie=utf-8`;
magicJS.post(tiebaCheckInOptions, (err, resp, data) => {
if (err) {
2021-04-09 19:34:05 +08:00
magicJS.logError(`[${kw}] 签到失败,请求异常:${err}`);
reject(err);
} else {
try {
2021-04-09 19:34:05 +08:00
let obj = JSON.parse(data);
if (obj.data.errmsg === "success" && obj.data.errno === 0 && obj.data.uinfo.is_sign_in === 1) {
2021-04-09 19:34:05 +08:00
let msg = `[${kw}] 签到成功 排名 ${obj.data.uinfo.user_sign_rank} 积分 ${obj.data.uinfo.cont_sign_num}`;
magicJS.logInfo(msg);
resolve(msg);
} else if (obj.no === 2150040) {
magicJS.logDebug(`[${kw}] need vcode接口响应${data}`);
2021-04-09 19:34:05 +08:00
reject(`[${kw}] 签到失败need vcode`);
} else if (obj.no === 1011) {
2021-04-09 19:34:05 +08:00
magicJS.logDebug(`[${kw}] 未加入此吧或等级不够,接口响应:${data}`);
reject(`[${kw}] 未加入此吧或等级不够`);
} else if (obj.no === 1102) {
2021-04-09 19:34:05 +08:00
magicJS.logDebug(`[${kw}] 签到过快,接口响应:${data}`);
reject(`[${kw}] 签到过快`);
} else if (obj.no === 1101) {
2021-04-09 19:34:05 +08:00
magicJS.logDebug(`[${kw}] 重复签到,接口响应:${data}`);
resolve(`[${kw}] 重复签到`);
} else {
2021-04-09 19:34:05 +08:00
magicJS.logWarning(`[${kw}] 签到失败,接口响应不合法:${data}`);
reject(`[${kw}] 签到失败`);
}
} catch (err) {
2021-04-09 19:34:05 +08:00
magicJS.logError(`${kw} 签到失败,执行异常:${err}`);
reject(`[${kw}] 执行异常`);
}
}
});
2021-04-09 19:34:05 +08:00
}
});
2021-04-09 19:34:05 +08:00
}
(async () => {
if (magicJS.isRequest && (tiebeGetCookieRegex1.test(magicJS.request.url) ||
tiebeGetCookieRegex2.test(magicJS.request.url) ||
tiebeGetCookieRegex3.test(magicJS.request.url))) {
2021-04-09 19:34:05 +08:00
let cookie = magicJS.request.headers.Cookie;
let hisCookie = magicJS.read(tiebaCookieKey);
magicJS.logDebug(`当前贴吧Cookie\n${cookie}\n历史贴吧Cookie\n${hisCookie}`);
if (!!cookie && cookie === hisCookie) {
2021-04-09 19:34:05 +08:00
magicJS.logInfo(`贴吧Cookie没有变化无需更新。`);
} else if (!!cookie && cookie !== hisCookie) {
2021-04-09 19:34:05 +08:00
magicJS.write(tiebaCookieKey, cookie);
magicJS.notify(`🎈获取贴吧Cookie成功`);
} else {
magicJS.notify(`❌获取贴吧Cookie出现异常`);
2021-04-09 19:34:05 +08:00
}
} else {
2021-04-09 19:34:05 +08:00
let cookie = magicJS.read(tiebaCookieKey);
let content = "🥺很遗憾,以下贴吧签到失败:";
if (!!cookie === false) {
magicJS.notify("❓请先获取有效的贴吧Cookie");
} else {
let [tbs, tiebaList] = await magicJS.retry(GetTieBaList, retries, interval)(cookie);
2021-04-09 19:34:05 +08:00
let tiebaCount = tiebaList.length;
let cycleNumber = Math.ceil(tiebaList.length / batchSize);
let [success, failed] = [0, 0];
for (let i = 0; i < cycleNumber; i++) {
2021-04-09 19:34:05 +08:00
let batchTiebaPromise = [];
let batchTiebaList = tiebaList.splice(0, batchSize);
for (let tieba of batchTiebaList) {
2021-04-09 19:34:05 +08:00
batchTiebaPromise.push(magicJS.attempt(magicJS.retry(TiebaCheckIn, retries, interval)(cookie, tbs, tieba)));
}
await Promise.all(batchTiebaPromise).then((result) => {
result.forEach((element) => {
if (element[0] !== null) {
2021-04-09 19:34:05 +08:00
failed += 1;
content += `\n${element[0]}`;
} else {
2021-04-09 19:34:05 +08:00
success += 1;
}
});
});
2021-04-09 19:34:05 +08:00
}
magicJS.notify(scirptName, `签到${tiebaCount}个,成功${success}个,失败${failed}`, !!failed > 0 ? content : "🎉恭喜,所有贴吧签到成功!!");
2021-04-09 19:34:05 +08:00
}
}
magicJS.done();
})();
2021-04-09 19:34:05 +08:00
// prettier-ignore
function MagicJS(scriptName = "MagicJS", logLevel = "INFO") { return new class { constructor() { if (this.version = "2.2.3.3", this.scriptName = scriptName, this.logLevels = { DEBUG: 5, INFO: 4, NOTIFY: 3, WARNING: 2, ERROR: 1, CRITICAL: 0, NONE: -1 }, this.isLoon = "undefined" != typeof $loon, this.isQuanX = "undefined" != typeof $task, this.isJSBox = "undefined" != typeof $drive, this.isNode = "undefined" != typeof module && !this.isJSBox, this.isSurge = "undefined" != typeof $httpClient && !this.isLoon, this.node = { request: void 0, fs: void 0, data: {} }, this.iOSUserAgent = "Mozilla/5.0 (iPhone; CPU iPhone OS 13_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.5 Mobile/15E148 Safari/604.1", this.pcUserAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.125 Safari/537.36 Edg/84.0.522.59", this.logLevel = logLevel, this._barkUrl = "", this.isNode) { this.node.fs = require("fs"), this.node.request = require("request"); try { this.node.fs.accessSync("./magic.json", this.node.fs.constants.R_OK | this.node.fs.constants.W_OK) } catch (err) { this.node.fs.writeFileSync("./magic.json", "{}", { encoding: "utf8" }) } this.node.data = require("./magic.json") } else this.isJSBox && ($file.exists("drive://MagicJS") || $file.mkdir("drive://MagicJS"), $file.exists("drive://MagicJS/magic.json") || $file.write({ data: $data({ string: "{}" }), path: "drive://MagicJS/magic.json" })) } set barkUrl(url) { this._barkUrl = url.replace(/\/+$/g, "") } set logLevel(level) { this._logLevel = "string" == typeof level ? level.toUpperCase() : "DEBUG" } get logLevel() { return this._logLevel } get isRequest() { return "undefined" != typeof $request && "undefined" == typeof $response } get isResponse() { return "undefined" != typeof $response } get request() { return "undefined" != typeof $request ? $request : void 0 } get response() { return "undefined" != typeof $response ? ($response.hasOwnProperty("status") && ($response.statusCode = $response.status), $response.hasOwnProperty("statusCode") && ($response.status = $response.statusCode), $response) : void 0 } get platform() { return this.isSurge ? "Surge" : this.isQuanX ? "Quantumult X" : this.isLoon ? "Loon" : this.isJSBox ? "JSBox" : this.isNode ? "Node.js" : "Unknown" } read(key, session = "") { let val = ""; this.isSurge || this.isLoon ? val = $persistentStore.read(key) : this.isQuanX ? val = $prefs.valueForKey(key) : this.isNode ? val = this.node.data : this.isJSBox && (val = $file.read("drive://MagicJS/magic.json").string); try { this.isNode && (val = val[key]), this.isJSBox && (val = JSON.parse(val)[key]), session && ("string" == typeof val && (val = JSON.parse(val)), val = val && "object" == typeof val ? val[session] : null) } catch (err) { this.logError(err), val = session ? {} : null, this.del(key) } void 0 === val && (val = null); try { val && "string" == typeof val && (val = JSON.parse(val)) } catch (err) { } return this.logDebug(`READ DATA [${key}]${session ? `[${session}]` : ""}(${typeof val})\n${JSON.stringify(val)}`), val } write(key, val, session = "") { let data = session ? {} : ""; if (session && (this.isSurge || this.isLoon) ? data = $persistentStore.read(key) : session && this.isQuanX ? data = $prefs.valueForKey(key) : this.isNode ? data = this.node.data : this.isJSBox && (data = JSON.parse($file.read("drive://MagicJS/magic.json").string)), session) { try { "string" == typeof data && (data = JSON.parse(data)), data = "object" == typeof data && data ? data : {} } catch (err) { this.logError(err), this.del(key), data = {} } this.isJSBox || this.isNode ? (data[key] && "object" == typeof data[key] || (data[key] = {}), data[key].hasOwnProperty(session) || (data[key][session] = null), void 0 === val ? delete data[key][session] : data[key][session] = val) : void 0 === val ? delete data[session] : data[session] = val } else this.isNode || this.isJSBox ? void 0 === val ? delete data[key] : data[key] = val : data = void 0 === val ? null : val; "object" == typeof data && (data = JSON.stringify(data)), this.