ios_rule_script/script/tieba/tieba_checkin.js

174 lines
18 KiB
JavaScript
Raw Normal View History

2021-04-09 19:34:05 +08:00
/*
百度贴吧签到增加重试机制减少签到失败的情况
脚本为串行执行通过设定batchSize的值<int>实现每批多少个贴吧并行签到一次
*/
const scirptName = '百度贴吧';
const batchSize = 20;
const retries = 5; // 签到失败重试次数
const interval = 2000; // 每次重试间隔
const tiebaCookieKey = 'tieba_checkin_cookie';
2021-04-09 19:34:05 +08:00
const tiebeGetCookieRegex = /https?:\/\/c\.tieba\.baidu\.com\/c\/s\/login/;
let magicJS = MagicJS(scirptName, "INFO");
magicJS.unifiedPushUrl = magicJS.read('tieba_unified_push_url') || magicJS.read('magicjs_unified_push_url');
let getTiebaListOptions = {
url: 'https://tieba.baidu.com/mo/q/newmoindex',
headers:{
"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"
},
body: ''
}
let tiebaCheckInOptions = {
url: 'https://tieba.baidu.com/sign/add',
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"
},
body: ''
}
function GetTieBaList(cookie){
return new Promise((resolve, reject) =>{
getTiebaListOptions.headers.Cookie = cookie;
magicJS.get(getTiebaListOptions, (err, resp, data) =>{
if (err){
magicJS.logError(`获取贴吧列表失败,请求异常:${err}`);
reject(err);
}
else{
try{
let obj = JSON.parse(data);
if (obj.error === 'success'){
resolve([obj.data.tbs,obj.data.like_forum]);
}
else{
magicJS.logWarning(`获取贴吧列表失败,接口响应不合法:${data}`);
reject('获取贴吧列表失败');
}
}
catch (err){
magicJS.logError(`获取贴吧列表失败,执行异常:${err}`);
reject(err);
}
}
})
})
}
function TiebaCheckIn(cookie, tbs, tieba){
return new Promise((resolve, reject) =>{
let kw = tieba['forum_name'];
if (tieba['is_sign'] === 1){
resolve(`[${kw}] 重复签到`);
}
else{
tiebaCheckInOptions.headers.Cookie = cookie;
tiebaCheckInOptions.body = `tbs=${tbs}&kw=${kw}&ie=utf-8`;
magicJS.post(tiebaCheckInOptions, (err, resp, data)=>{
if (err){
magicJS.logError(`[${kw}] 签到失败,请求异常:${err}`);
reject(err);
}
else{
try{
let obj = JSON.parse(data);
if (obj.data.errmsg === 'success' && obj.data.errno === 0 && obj.data.uinfo.is_sign_in === 1){
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}`)
reject(`[${kw}] 签到失败need vcode`);
}
else if (obj.no === 1011){
magicJS.logDebug(`[${kw}] 未加入此吧或等级不够,接口响应:${data}`);
reject(`[${kw}] 未加入此吧或等级不够`);
}
else if (obj.no === 1102){
magicJS.logDebug(`[${kw}] 签到过快,接口响应:${data}`);
reject(`[${kw}] 签到过快`);
}
else if (obj.no === 1101){
magicJS.logDebug(`[${kw}] 重复签到,接口响应:${data}`);
resolve(`[${kw}] 重复签到`);
}
else{
magicJS.logWarning(`[${kw}] 签到失败,接口响应不合法:${data}`);
reject(`[${kw}] 签到失败`);
}
}
catch (err){
magicJS.logError(`${kw} 签到失败,执行异常:${err}`);
reject(`[${kw}] 执行异常`);
}
}
})
}
})
}
async function Main(){
if (magicJS.isRequest && tiebeGetCookieRegex.test(magicJS.request.url)){
let cookie = magicJS.request.headers.Cookie;
let hisCookie = magicJS.read(tiebaCookieKey);
magicJS.logDebug(`当前贴吧Cookie\n${cookie}\n历史贴吧Cookie\n${hisCookie}`);
if (!!cookie && cookie === hisCookie){
magicJS.logInfo(`贴吧Cookie没有变化无需更新。`);
}
else if (!!cookie && cookie !== hisCookie){
magicJS.write(tiebaCookieKey, cookie);
magicJS.notify(`🎈获取贴吧Cookie成功`)
}
else{
magicJS.notify(`❌获取贴吧Cookie出现异常`)
}
}
else{
let cookie = magicJS.read(tiebaCookieKey);
let content = '🥺很遗憾,以下贴吧签到失败:';
if (!!cookie === false){
content = '❓请先获取有效的贴吧Cookie';
}
else{
let [tbs,tiebaList] = await magicJS.retry(GetTieBaList, retries, interval)(cookie);
let tiebaCount = tiebaList.length;
let cycleNumber = Math.ceil(tiebaList.length / batchSize);
let [success,failed] = [0,0];
for(let i=0; i<cycleNumber; i++){
let batchTiebaPromise = [];
let batchTiebaList = tiebaList.splice(0, batchSize);
for (let tieba of batchTiebaList){
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){
failed += 1;
content += `\n${element[0]}`;
}
else{
success += 1;
}
});
})
}
magicJS.notify(scirptName, `签到${tiebaCount}个,成功${success}个,失败${failed}`, !!failed>0? content : '🎉恭喜,所有贴吧签到成功!!');
}
}
magicJS.done();
}
Main();
function MagicJS(e="MagicJS",t="INFO"){const s={accept:"Accept","accept-ch":"Accept-CH","accept-charset":"Accept-Charset","accept-features":"Accept-Features","accept-encoding":"Accept-Encoding","accept-language":"Accept-Language","accept-ranges":"Accept-Ranges","access-control-allow-credentials":"Access-Control-Allow-Credentials","access-control-allow-origin":"Access-Control-Allow-Origin","access-control-allow-methods":"Access-Control-Allow-Methods","access-control-allow-headers":"Access-Control-Allow-Headers","access-control-max-age":"Access-Control-Max-Age","access-control-expose-headers":"Access-Control-Expose-Headers","access-control-request-method":"Access-Control-Request-Method","access-control-request-headers":"Access-Control-Request-Headers",age:"Age",allow:"Allow",alternates:"Alternates",authorization:"Authorization","cache-control":"Cache-Control",connection:"Connection","content-encoding":"Content-Encoding","content-language":"Content-Language","content-length":"Content-Length","content-location":"Content-Location","content-md5":"Content-MD5","content-range":"Content-Range","content-security-policy":"Content-Security-Policy","content-type":"Content-Type",cookie:"Cookie",dnt:"DNT",date:"Date",etag:"ETag",expect:"Expect",expires:"Expires",from:"From",host:"Host","if-match":"If-Match","if-modified-since":"If-Modified-Since","if-none-match":"If-None-Match","if-range":"If-Range","if-unmodified-since":"If-Unmodified-Since","last-event-id":"Last-Event-ID","last-modified":"Last-Modified",link:"Link",location:"Location","max-forwards":"Max-Forwards",negotiate:"Negotiate",origin:"Origin",pragma:"Pragma","proxy-authenticate":"Proxy-Authenticate","proxy-authorization":"Proxy-Authorization",range:"Range",referer:"Referer","retry-after":"Retry-After","sec-websocket-extensions":"Sec-Websocket-Extensions","sec-websocket-key":"Sec-Websocket-Key","sec-websocket-origin":"Sec-Websocket-Origin","sec-websocket-protocol":"Sec-Websocket-Protocol","sec-websocket-version":"Sec-Websocket-Version",server:"Server","set-cookie":"Set-Cookie","set-cookie2":"Set-Cookie2","strict-transport-security":"Strict-Transport-Security",tcn:"TCN",te:"TE",trailer:"Trailer","transfer-encoding":"Transfer-Encoding",upgrade:"Upgrade","user-agent":"User-Agent","variant-vary":"Variant-Vary",vary:"Vary",via:"Via",warning:"Warning","www-authenticate":"WWW-Authenticate","x-content-duration":"X-Content-Duration","x-content-security-policy":"X-Content-Security-Policy","x-dnsprefetch-control":"X-DNSPrefetch-Control","x-frame-options":"X-Frame-Options","x-requested-with":"X-Requested-With","x-surge-skip-scripting":"X-Surge-Skip-Scripting"};return new class{constructor(){this.version="2.2.3.3";this.scriptName=e;this.logLevels={DEBUG:5,INFO:4,NOTIFY:3,WARNING:2,ERROR:1,CRITICAL:0,NONE:-1};this.isLoon=typeof $loon!=="undefined";this.isQuanX=typeof $task!=="undefined";this.isJSBox=typeof $drive!=="undefined";this.isNode=typeof module!=="undefined"&&!this.isJSBox;this.isSurge=typeof $httpClient!=="undefined"&&!this.isLoon;this.platform=this.getPlatform();this.node={request:undefined,fs:undefined,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=t;this._unifiedPushUrl="";if(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(e){this.node.fs.writeFileSync("./magic.json","{}",{encoding:"utf8"})}this.node.data=require("./magic.json")}else if(this.isJSBox){if(!$file.exists("drive://MagicJS")){$file.mkdir("drive://MagicJS")}if(!$file.exists("drive://MagicJS/magic.json")){$file.write({data:$data({string:"{}"}),path:"drive://MagicJS/magic.json"})}}}set unifiedPushUrl(e){this._unifiedPushUrl=!!e?e.replace(/\/+$/g,""):""}set logLevel(e){this._logLevel=typeof e==="string"?e.