From fcfe4d2273982149fe6d3c35fb690109e9d65eb8 Mon Sep 17 00:00:00 2001 From: xiaoge131313 <2381919454@qq.com> Date: Mon, 24 Apr 2023 14:45:13 +0800 Subject: [PATCH] =?UTF-8?q?=E7=AC=9B=E6=9D=A8=E6=96=B0=E9=97=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dyxw.js | 796 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 796 insertions(+) create mode 100644 dyxw.js diff --git a/dyxw.js b/dyxw.js new file mode 100644 index 0000000..5af3658 --- /dev/null +++ b/dyxw.js @@ -0,0 +1,796 @@ +/* +APP:https://console.csp.chinamcloud.com/frontcommon/invitationCodeShare.html?downloadLink=https%3A%2F%2Fapi.csp.chinamcloud.com%2Fappapi%2Fdownload%2Fapp%3Ftenantid%3D3283eba9fbb2be252ff95aa8df491a9e%26app_id%3D1&appName=%E7%AC%9B%E6%89%AC%E6%96%B0%E9%97%BB&invitationCode=198888&phoneNumber=&share=true +邀请码:198888 +域名:api.csp.chinamcloud.com +随便刷新下新闻 请求连接 +变量:export dyxwhd='token&userid&username' +*/ +const $ = new Env('笛扬新闻'); +const axios = require('axios'); +let request = require("request"); +const JSEncrypt = require('node-jsencrypt'); +request = request.defaults({ + jar: true +}); +const { + log +} = console; +const Notify = 1; //0为关闭通知,1为打开通知,默认为1 +const debug = 0; //0为关闭调试,1为打开调试,默认为0 + +let dyxwhd = ($.isNode() ? process.env.dyxwhd : $.getdata("dyxwhd")) || "" +let dyxwhdArr = []; +let data = ''; +let msg = ''; +var hours = new Date().getMonth(); + +var timestamp = Math.round(new Date().getTime()).toString(); +!(async () => { + if (typeof $request !== "undefined") { + await GetRewrite(); + } else { + if (!(await Envs())) + return; + else { + + log(`\n\n============================================= \n脚本执行 - 北京时间(UTC+8):${new Date( + new Date().getTime() + new Date().getTimezoneOffset() * 60 * 1000 + + 8 * 60 * 60 * 1000).toLocaleString()} \n=============================================\n`); + + + + log(`\n============ 微信公众号:柠檬玩机交流 ============`) + log(`\n=================== 共找到 ${dyxwhdArr.length} 个账号 ===================`) + if (debug) { + log(`【debug】 这是你的全部账号数组:\n ${dyxwhdArr}`); + } + for (let index = 0; index < dyxwhdArr.length; index++) { + + let num = index + 1 + addNotifyStr(`\n==== 开始【第 ${num} 个账号】====\n`, true) + + dyxwhd = dyxwhdArr[index]; + token = dyxwhd.split('&')[0] + userid = dyxwhd.split('&')[1] + username = dyxwhd.split('&')[2] + +await autologin() +await sign() +await contentlist() +await tasklist() +} + await SendMsg(msg); + } + } +})() +.catch((e) => log(e)) + .finally(() => $.done()) + +async function tasklist() { + return new Promise((resolve) => { + signs = MD5('api_version2.1.52app_id1app_version3.6.61clientandroidcms_app_id166integral_type1tenantid3283eba9fbb2be252ff95aa8df491a9etoken'+token+'user_id'+userid+'username'+username+'88874b30c99625421396da114467f9ac') + var options = { + method: 'GET', + url: 'http://api.csp.chinamcloud.com/appapi/api/integral/task?app_version=3.6.61&user_id='+userid+'&integral_type=1&tenantid=3283eba9fbb2be252ff95aa8df491a9e&sign='+signs+'&client=android&cms_app_id=166&api_version=2.1.52&app_id=1&token='+token+'&username='+username, + headers: { +'Content-Type': 'application/x-www-form-urlencoded', +'Host': 'api.csp.chinamcloud.com', +'Connection': 'Keep-Alive', +'Accept-Encoding': 'gzip', +'User-Agent':' okhttp/3.14.9', + }, + +}; + if (debug) { + log(`\n【debug】=============== 这是 请求 url ===============`); + log(JSON.stringify(options)); + } + axios.request(options).then(async function(response) { + + try { + data = response.data; + if (debug) { + log(`\n\n【debug】===============这是 返回data==============`); + log(JSON.stringify(response.data)); + } + if(data.state == true){ + log('integral:'+data.integral) + msg += '\n【'+nickname+'】'+'\nintegral:'+data.integral + }else + log(data.message) + + + + } catch (e) { + log(``) + } + }).catch(function(error) { + console.error(error); + }).then(res => { + //这里处理正确返回 + resolve(); + }); + }) + +} +async function sign() { + return new Promise((resolve) => { + signs = MD5('action1api_version2.1.52app_id1app_version3.6.61clientandroidcms_app_id166integral_type1tenantid3283eba9fbb2be252ff95aa8df491a9etoken'+token+'user_id'+userid+'88874b30c99625421396da114467f9ac') + var options = { + method: 'POST', + url: 'http://api.csp.chinamcloud.com/appapi/api/integral/sign', //https://api.csp.chinamcloud.com/appapi/api/integral/sign + headers: { +'Content-Type': 'application/x-www-form-urlencoded', +'Host': 'api.csp.chinamcloud.com', +'Connection': 'Keep-Alive', +'Accept-Encoding': 'gzip', +'User-Agent':' okhttp/3.14.9', + }, +data:'app_version=3.6.61&user_id='+userid+'&integral_type=1&tenantid=3283eba9fbb2be252ff95aa8df491a9e&sign='+signs+'&action=1&client=android&cms_app_id=166&api_version=2.1.52&app_id=1&token='+token +}; + if (debug) { + log(`\n【debug】=============== 这是 请求 url ===============`); + log(JSON.stringify(options)); + } + axios.request(options).then(async function(response) { + + try { + data = response.data; + if (debug) { + log(`\n\n【debug】===============这是 返回data==============`); + log(JSON.stringify(response.data)); + } + if(data.state == true){ + if(data.is_sign == 1){ + log(data.data.description) + }else + log(data.data.description) + + }else + log(data.message) + + + + } catch (e) { + log(`异常:${data},原因:${data.message}`) + } + }).catch(function(error) { + console.error(error); + }).then(res => { + //这里处理正确返回 + resolve(); + }); + }) + +} +async function integral(action,source_id) { + return new Promise((resolve) => { + signs = MD5('action'+action+'api_version2.1.52app_id1app_version3.6.61clientandroidcms_app_id166isStudyContent0source_id'+source_id+'tenantid3283eba9fbb2be252ff95aa8df491a9etoken'+token+'user_id'+userid+'88874b30c99625421396da114467f9ac') + var options = { + method: 'POST', + url: 'http://api.csp.chinamcloud.com/appapi/api/integral/add-integral', + headers: { +'Content-Type': 'application/x-www-form-urlencoded', +'Host': 'api.csp.chinamcloud.com', +'Connection': 'Keep-Alive', +'Accept-Encoding': 'gzip', +'User-Agent':' okhttp/3.14.9', + }, +data:'app_version=3.6.61&sign='+signs+'&cms_app_id=166&api_version=2.1.52&isStudyContent=0&token='+token+'&user_id='+userid+'&tenantid=3283eba9fbb2be252ff95aa8df491a9e&action='+action+'&client=android&source_id='+source_id+'&app_id=1' +}; + if (debug) { + log(`\n【debug】=============== 这是 请求 url ===============`); + log(JSON.stringify(options)); + } + axios.request(options).then(async function(response) { + + try { + data = response.data; + if (debug) { + log(`\n\n【debug】===============这是 返回data==============`); + log(JSON.stringify(response.data)); + } + if(data.state == true){ + log(data) + + }else + log(data.error.description) + + + + } catch (e) { + log(`异常:${data},原因:${data.message}`) + } + }).catch(function(error) { + console.error(error); + }).then(res => { + //这里处理正确返回 + resolve(); + }); + }) + +} +async function contentlist() { + return new Promise((resolve) => { + signs = MD5('api_version2.1.52app_id1app_version3.6.61clientandroidcms_app_id166page2perPage15tenantid3283eba9fbb2be252ff95aa8df491a9e88874b30c99625421396da114467f9ac') + var options = { + method: 'GET', + url: 'http://api.csp.chinamcloud.com/appapi/api/content/list/1272?perPage=15&app_version=3.6.61&tenantid=3283eba9fbb2be252ff95aa8df491a9e&sign='+signs+'&client=android&cms_app_id=166&page=2&api_version=2.1.52&app_id=1', + headers: { +'Content-Type': 'application/x-www-form-urlencoded', +'Host': 'api.csp.chinamcloud.com', +'Connection': 'Keep-Alive', +'Accept-Encoding': 'gzip', +'User-Agent':' okhttp/3.14.9', + }, + +}; + if (debug) { + log(`\n【debug】=============== 这是 请求 url ===============`); + log(JSON.stringify(options)); + } + axios.request(options).then(async function(response) { + + try { + data = response.data; + if (debug) { + log(`\n\n【debug】===============这是 返回data==============`); + log(JSON.stringify(response.data)); + } + if(data.state == true){ + reclist = data.data.meta + for(i in reclist){ + log(reclist[i].title) + await integral(2,reclist[i].id) + await integral(3,reclist[i].id) + await integral(4,reclist[i].id) + //await integral(16,reclist[i].id) + } + + }else + log(data.message) + + + + } catch (e) { + log(`异常:${data},原因:${data.message}`) + } + }).catch(function(error) { + console.error(error); + }).then(res => { + //这里处理正确返回 + resolve(); + }); + }) + +} + +async function autologin() { + +var options = { + + url: 'https://api.csp.chinamcloud.com/appapi/yjf/integral/auto-login?tenantid=3283eba9fbb2be252ff95aa8df491a9e&app_id=1&uid='+userid+'&credits=100', + headers: { +'Host': 'api.csp.chinamcloud.com', +'Connection': 'keep-alive', +'Upgrade-Insecure-Requests': 1, +'User-Agent': 'Mozilla/5.0 (Linux; Android 10; PCAM00 Build/QKQ1.190918.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/77.0.3865.92 Mobile Safari/537.36', +'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3', +'X-Requested-With': 'com.chinamcloud.wangjie.a3283eba9fbb2be252ff95aa8df491a9e', +'Accept-Encoding': 'gzip, deflate', +'Accept-Language': 'zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7', + + }, + +}; + if (debug) { + log(`\n【debug】=============== 这是 请求 url ===============`); + log(JSON.stringify(options)); + } + return new Promise((resolve) => { + request.get(options, async (error, response, data) =>{ + try { + + if (debug) { + log(`\n\n【debug】===============这是 返回result==============`); + log(data) + } +cookie = response.request.headers.cookie +await checkin() + + + + + } catch (e) { + log(`异常,原因:${e},返回:${data}`) + } finally { + resolve(); + } + }) + }) +} +async function checkin() { + return new Promise((resolve) => { + + var options = { + method: 'POST', + url: 'https://credits.codeboxes.cn/c/p/tu6fv4wp/checkin/checkin', + headers: { +'Host': 'credits.codeboxes.cn', +'Connection': 'keep-alive', +'Upgrade-Insecure-Requests': 1, +'Content-Type':' application/json', +'User-Agent': 'Mozilla/5.0 (Linux; Android 10; PCAM00 Build/QKQ1.190918.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/77.0.3865.92 Mobile Safari/537.36', +'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3', +'X-Requested-With': 'com.chinamcloud.wangjie.a3283eba9fbb2be252ff95aa8df491a9e', +'Accept-Encoding': 'gzip, deflate', +'Accept-Language': 'zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7', +'Origin': 'https://credits.codeboxes.cn', + 'Cookie':cookie + }, +data:`{"checkInTime":"${new Date().toISOString()}"}` +}; + if (debug) { + log(`\n【debug】=============== 这是 请求 url ===============`); + log(JSON.stringify(options)); + } + axios.request(options).then(async function(response) { + + try { + data = response.data; + if (debug) { + log(`\n\n【debug】===============这是 返回data==============`); + log(JSON.stringify(response.data)); + } + if(data.code == 000000){ + log(data.data.prize.name) + + }else + log(data.message) + + + + } catch (e) { + log(`异常:${data},原因:${data.message}`) + } + }).catch(function(error) { + console.error(error); + }).then(res => { + //这里处理正确返回 + resolve(); + }); + }) + +} +async function Envs() { + if (dyxwhd) { + if (dyxwhd.indexOf("@") != -1) { + dyxwhd.split("@").forEach((item) => { + + dyxwhdArr.push(item); + }); + } else if (dyxwhd.indexOf("\n") != -1) { + dyxwhd.split("\n").forEach((item) => { + dyxwhdArr.push(item); + }); + } else { + dyxwhdArr.push(dyxwhd); + } + } else { + log(`\n 【${$.name}】:未填写变量 dyxwhd`) + return; + } + + return true; +} +function addNotifyStr(str, is_log = true) { + if (is_log) { + log(`${str}\n`) + } + msg += `${str}\n` +} + +// ============================================发送消息============================================ \\ +async function SendMsg(message) { + if (!message) + return; + + if (Notify > 0) { + if ($.isNode()) { + var notify = require('./sendNotify'); + await notify.sendNotify($.name, message); + } else { + $.msg(message); + } + } else { + log(message); + } +} +var MD5=function(string){function RotateLeft(lValue,iShiftBits){return(lValue<>>(32-iShiftBits));}function AddUnsigned(lX,lY){var lX4,lY4,lX8,lY8,lResult;lX8=(lX&0x80000000);lY8=(lY&0x80000000);lX4=(lX&0x40000000);lY4=(lY&0x40000000);lResult=(lX&0x3FFFFFFF)+(lY&0x3FFFFFFF);if(lX4&lY4){return(lResult^0x80000000^lX8^lY8);}if(lX4|lY4){if(lResult&0x40000000){return(lResult^0xC0000000^lX8^lY8);}else{return(lResult^0x40000000^lX8^lY8);}}else{return(lResult^lX8^lY8);}}function F(x,y,z){return(x&y)|((~x)&z);}function G(x,y,z){return(x&z)|(y&(~z));}function H(x,y,z){return(x^y^z);}function I(x,y,z){return(y^(x|(~z)));}function FF(a,b,c,d,x,s,ac){a=AddUnsigned(a,AddUnsigned(AddUnsigned(F(b,c,d),x),ac));return AddUnsigned(RotateLeft(a,s),b);}function GG(a,b,c,d,x,s,ac){a=AddUnsigned(a,AddUnsigned(AddUnsigned(G(b,c,d),x),ac));return AddUnsigned(RotateLeft(a,s),b);}function HH(a,b,c,d,x,s,ac){a=AddUnsigned(a,AddUnsigned(AddUnsigned(H(b,c,d),x),ac));return AddUnsigned(RotateLeft(a,s),b);}function II(a,b,c,d,x,s,ac){a=AddUnsigned(a,AddUnsigned(AddUnsigned(I(b,c,d),x),ac));return AddUnsigned(RotateLeft(a,s),b);}function ConvertToWordArray(string){var lWordCount;var lMessageLength=string.length;var lNumberOfWords_temp1=lMessageLength+8;var lNumberOfWords_temp2=(lNumberOfWords_temp1-(lNumberOfWords_temp1%64))/64;var lNumberOfWords=(lNumberOfWords_temp2+1)*16;var lWordArray=Array(lNumberOfWords-1);var lBytePosition=0;var lByteCount=0;while(lByteCount>>29;return lWordArray;}function WordToHex(lValue){var WordToHexValue="",WordToHexValue_temp="",lByte,lCount;for(lCount=0;lCount<=3;lCount++){lByte=(lValue>>>(lCount*8))&255;WordToHexValue_temp="0"+lByte.toString(16);WordToHexValue=WordToHexValue+WordToHexValue_temp.substr(WordToHexValue_temp.length-2,2);}return WordToHexValue;}function Utf8Encode(string){string=string.replace(/\r\n/g,"\n");var utftext="";for(var n=0;n127)&&(c<2048)){utftext+=String.fromCharCode((c>>6)|192);utftext+=String.fromCharCode((c&63)|128);}else{utftext+=String.fromCharCode((c>>12)|224);utftext+=String.fromCharCode(((c>>6)&63)|128);utftext+=String.fromCharCode((c&63)|128);}}return utftext;}var x=Array();var k,AA,BB,CC,DD,a,b,c,d;var S11=7,S12=12,S13=17,S14=22;var S21=5,S22=9,S23=14,S24=20;var S31=4,S32=11,S33=16,S34=23;var S41=6,S42=10,S43=15,S44=21;string=Utf8Encode(string);x=ConvertToWordArray(string);a=0x67452301;b=0xEFCDAB89;c=0x98BADCFE;d=0x10325476;for(k=0;k 0 && void 0 !== m ? m : 21, t = ""; t.length < e;) t += Math.random().toString(36).slice(2); + return t.slice(0, e) +} +function randomnum(e) { + e = e || 32; + var t = "1234567890", + a = t.length, + n = ""; + for (i = 0; i < e; i++) + n += t.charAt(Math.floor(Math.random() * a)); + return n +} +function Env(t, e) { + "undefined" != typeof process && JSON.stringify(process.env).indexOf("GITHUB") > -1 && process.exit(0); + + class s { + constructor(t) { + this.env = t + } + + send(t, e = "GET") { + t = "string" == typeof t ? { + url: t + } : t; + let s = this.get; + return "POST" === e && (s = this.post), new Promise((e, i) => { + s.call(this, t, (t, s, r) => { + t ? i(t) : e(s) + }) + }) + } + + get(t) { + return this.send.call(this.env, t) + } + + post(t) { + return this.send.call(this.env, t, "POST") + } + } + + return new class { + constructor(t, e) { + this.name = t, this.http = new s(this), this.data = null, this.dataFile = "box.dat", this.logs = [], this.isMute = !1, this.isNeedRewrite = !1, this.logSeparator = "\n", this.startTime = (new Date).getTime(), Object.assign(this, e), this.log("", `🔔${this.name}, 开始!`) + } + + isNode() { + return "undefined" != typeof module && !!module.exports + } + + isQuanX() { + return "undefined" != typeof $task + } + + isSurge() { + return "undefined" != typeof $httpClient && "undefined" == typeof $loon + } + + isLoon() { + return "undefined" != typeof $loon + } + + toObj(t, e = null) { + try { + return JSON.parse(t) + } catch { + return e + } + } + + toStr(t, e = null) { + try { + return JSON.stringify(t) + } catch { + return e + } + } + + getjson(t, e) { + let s = e; + const i = this.getdata(t); + if (i) try { + s = JSON.parse(this.getdata(t)) + } catch {} + return s + } + + setjson(t, e) { + try { + return this.setdata(JSON.stringify(t), e) + } catch { + return !1 + } + } + + getScript(t) { + return new Promise(e => { + this.get({ + url: t + }, (t, s, i) => e(i)) + }) + } + + runScript(t, e) { + return new Promise(s => { + let i = this.getdata("@chavy_boxjs_userCfgs.httpapi"); + i = i ? i.replace(/\n/g, "").trim() : i; + let r = this.getdata("@chavy_boxjs_userCfgs.httpapi_timeout"); + r = r ? 1 * r : 20, r = e && e.timeout ? e.timeout : r; + const [o, h] = i.split("@"), n = { + url: `http://${h}/v1/scripting/evaluate`, + body: { + script_text: t, + mock_type: "cron", + timeout: r + }, + headers: { + "X-Key": o, + Accept: "*/*" + } + }; + this.post(n, (t, e, i) => s(i)) + }).catch(t => this.logErr(t)) + } + + loaddata() { + if (!this.isNode()) return {}; { + this.fs = this.fs ? this.fs : require("fs"), this.path = this.path ? this.path : require("path"); + const t = this.path.resolve(this.dataFile), + e = this.path.resolve(process.cwd(), this.dataFile), + s = this.fs.existsSync(t), + i = !s && this.fs.existsSync(e); + if (!s && !i) return {}; { + const i = s ? t : e; + try { + return JSON.parse(this.fs.readFileSync(i)) + } catch (t) { + return {} + } + } + } + } + + writedata() { + if (this.isNode()) { + this.fs = this.fs ? this.fs : require("fs"), this.path = this.path ? this.path : require("path"); + const t = this.path.resolve(this.dataFile), + e = this.path.resolve(process.cwd(), this.dataFile), + s = this.fs.existsSync(t), + i = !s && this.fs.existsSync(e), + r = JSON.stringify(this.data); + s ? this.fs.writeFileSync(t, r) : i ? this.fs.writeFileSync(e, r) : this.fs.writeFileSync(t, r) + } + } + + lodash_get(t, e, s) { + const i = e.replace(/\[(\d+)\]/g, ".$1").split("."); + let r = t; + for (const t of i) + if (r = Object(r)[t], void 0 === r) return s; + return r + } + + lodash_set(t, e, s) { + return Object(t) !== t ? t : (Array.isArray(e) || (e = e.toString().match(/[^.[\]]+/g) || []), e.slice(0, -1).reduce((t, s, i) => Object(t[s]) === t[s] ? t[s] : t[s] = Math.abs(e[i + 1]) >> 0 == +e[i + 1] ? [] : {}, t)[e[e.length - 1]] = s, t) + } + + getdata(t) { + let e = this.getval(t); + if (/^@/.test(t)) { + const [, s, i] = /^@(.*?)\.(.*?)$/.exec(t), r = s ? this.getval(s) : ""; + if (r) try { + const t = JSON.parse(r); + e = t ? this.lodash_get(t, i, "") : e + } catch (t) { + e = "" + } + } + return e + } + + setdata(t, e) { + let s = !1; + if (/^@/.test(e)) { + const [, i, r] = /^@(.*?)\.(.*?)$/.exec(e), o = this.getval(i), + h = i ? "null" === o ? null : o || "{}" : "{}"; + try { + const e = JSON.parse(h); + this.lodash_set(e, r, t), s = this.setval(JSON.stringify(e), i) + } catch (e) { + const o = {}; + this.lodash_set(o, r, t), s = this.setval(JSON.stringify(o), i) + } + } else s = this.setval(t, e); + return s + } + + getval(t) { + return this.isSurge() || this.isLoon() ? $persistentStore.read(t) : this.isQuanX() ? $prefs.valueForKey(t) : this.isNode() ? (this.data = this.loaddata(), this.data[t]) : this.data && this.data[t] || null + } + + setval(t, e) { + return this.isSurge() || this.isLoon() ? $persistentStore.write(t, e) : this.isQuanX() ? $prefs.setValueForKey(t, e) : this.isNode() ? (this.data = this.loaddata(), this.data[e] = t, this.writedata(), !0) : this.data && this.data[e] || null + } + + initGotEnv(t) { + this.got = this.got ? this.got : require("got"), this.cktough = this.cktough ? this.cktough : require("tough-cookie"), this.ckjar = this.ckjar ? this.ckjar : new this.cktough.CookieJar, t && (t.headers = t.headers ? t.headers : {}, void 0 === t.headers.Cookie && void 0 === t.cookieJar && (t.cookieJar = this.ckjar)) + } + + get(t, e = (() => {})) { + t.headers && (delete t.headers["Content-Type"], delete t.headers["Content-Length"]), this.isSurge() || this.isLoon() ? (this.isSurge() && this.isNeedRewrite && (t.headers = t.headers || {}, Object.assign(t.headers, { + "X-Surge-Skip-Scripting": !1 + })), $httpClient.get(t, (t, s, i) => { + !t && s && (s.body = i, s.statusCode = s.status), e(t, s, i) + })) : this.isQuanX() ? (this.isNeedRewrite && (t.opts = t.opts || {}, Object.assign(t.opts, { + hints: !1 + })), $task.fetch(t).then(t => { + const { + statusCode: s, + statusCode: i, + headers: r, + body: o + } = t; + e(null, { + status: s, + statusCode: i, + headers: r, + body: o + }, o) + }, t => e(t))) : this.isNode() && (this.initGotEnv(t), this.got(t).on("redirect", (t, e) => { + try { + if (t.headers["set-cookie"]) { + const s = t.headers["set-cookie"].map(this.cktough.Cookie.parse).toString(); + s && this.ckjar.setCookieSync(s, null), e.cookieJar = this.ckjar + } + } catch (t) { + this.logErr(t) + } + }).then(t => { + const { + statusCode: s, + statusCode: i, + headers: r, + body: o + } = t; + e(null, { + status: s, + statusCode: i, + headers: r, + body: o + }, o) + }, t => { + const { + message: s, + response: i + } = t; + e(s, i, i && i.body) + })) + } + + post(t, e = (() => {})) { + if (t.body && t.headers && !t.headers["Content-Type"] && (t.headers["Content-Type"] = "application/x-www-form-urlencoded"), t.headers && delete t.headers["Content-Length"], this.isSurge() || this.isLoon()) this.isSurge() && this.isNeedRewrite && (t.headers = t.headers || {}, Object.assign(t.headers, { + "X-Surge-Skip-Scripting": !1 + })), $httpClient.post(t, (t, s, i) => { + !t && s && (s.body = i, s.statusCode = s.status), e(t, s, i) + }); + else if (this.isQuanX()) t.method = "POST", this.isNeedRewrite && (t.opts = t.opts || {}, Object.assign(t.opts, { + hints: !1 + })), $task.fetch(t).then(t => { + const { + statusCode: s, + statusCode: i, + headers: r, + body: o + } = t; + e(null, { + status: s, + statusCode: i, + headers: r, + body: o + }, o) + }, t => e(t)); + else if (this.isNode()) { + this.initGotEnv(t); + const { + url: s, + ...i + } = t; + this.got.post(s, i).then(t => { + const { + statusCode: s, + statusCode: i, + headers: r, + body: o + } = t; + e(null, { + status: s, + statusCode: i, + headers: r, + body: o + }, o) + }, t => { + const { + message: s, + response: i + } = t; + e(s, i, i && i.body) + }) + } + } + + time(t, e = null) { + const s = e ? new Date(e) : new Date; + let i = { + "M+": s.getMonth() + 1, + "d+": s.getDate(), + "H+": s.getHours(), + "m+": s.getMinutes(), + "s+": s.getSeconds(), + "q+": Math.floor((s.getMonth() + 3) / 3), + S: s.getMilliseconds() + }; + /(y+)/.test(t) && (t = t.replace(RegExp.$1, (s.getFullYear() + "").substr(4 - RegExp.$1.length))); + for (let e in i) new RegExp("(" + e + ")").test(t) && (t = t.replace(RegExp.$1, 1 == RegExp.$1.length ? i[e] : ("00" + i[e]).substr(("" + i[e]).length))); + return t + } + + msg(e = t, s = "", i = "", r) { + const o = t => { + if (!t) return t; + if ("string" == typeof t) return this.isLoon() ? t : this.isQuanX() ? { + "open-url": t + } : this.isSurge() ? { + url: t + } : void 0; + if ("object" == typeof t) { + if (this.isLoon()) { + let e = t.openUrl || t.url || t["open-url"], + s = t.mediaUrl || t["media-url"]; + return { + openUrl: e, + mediaUrl: s + } + } + if (this.isQuanX()) { + let e = t["open-url"] || t.url || t.openUrl, + s = t["media-url"] || t.mediaUrl; + return { + "open-url": e, + "media-url": s + } + } + if (this.isSurge()) { + let e = t.url || t.openUrl || t["open-url"]; + return { + url: e + } + } + } + }; + if (this.isMute || (this.isSurge() || this.isLoon() ? $notification.post(e, s, i, o(r)) : this.isQuanX() && $notify(e, s, i, o(r))), !this.isMuteLog) { + let t = ["", "==============📣系统通知📣=============="]; + t.push(e), s && t.push(s), i && t.push(i), console.log(t.join("\n")), this.logs = this.logs.concat(t) + } + } + + log(...t) { + t.length > 0 && (this.logs = [...this.logs, ...t]), console.log(t.join(this.logSeparator)) + } + + logErr(t, e) { + const s = !this.isSurge() && !this.isQuanX() && !this.isLoon(); + s ? this.log("", `❗️${this.name}, 错误!`, t.stack) : this.log("", `❗️${this.name}, 错误!`, t) + } + + wait(t) { + return new Promise(e => setTimeout(e, t)) + } + + done(t = {}) { + const e = (new Date).getTime(), + s = (e - this.startTime) / 1e3; + this.log("", `🔔${this.name}, 结束! 🕛 ${s} 秒`), this.log(), (this.isSurge() || this.isQuanX() || this.isLoon()) && $done(t) + } + }(t, e) +} \ No newline at end of file