/* [task_local] # 建行生活抢券-并发 5 29,59 * * * * jhsh_coupon.js, tag=建行生活抢券-并发, enabled=true 只能圈×抓包,搜yunbusiness.ccb.com,请求体中的USER_ID,设置JHSH_COUPON_CKS 手机号&USER_ID 多账号@分割 https://github.com/a65101855/zyk/blob/77822527079cf4a5a0fad264f0229aae781ad413/APP/jhsh_bf.js */ const $ = new Env('建行生活抢券'); now_ts = new Date().getTime(); today = $.time('YYYY-MM-DD', now_ts); todayWDayNum = new Date(now_ts).getDay(); todayWDayNum = todayWDayNum == 0? 7: todayWDayNum; sevenOclock_ts = new Date(`${today} 07:00:00`).getTime(); eightOclock_ts = new Date(`${today} 08:00:00`).getTime(); eightHalfOclock_ts = new Date(`${today} 08:30:00`).getTime(); tenOclock_ts = new Date(`${today} 10:00:00`).getTime(); tenHalfOclock_ts = new Date(`${today} 10:30:00`).getTime(); elevenOclock_ts = new Date(`${today} 11:00:00`).getTime(); elevenHALFOclock_ts = new Date(`${today} 11:30:00`).getTime(); pmTwoHalfOclock_ts = new Date(`${today} 14:30:00`).getTime(); pmThreeHalfOclock_ts = new Date(`${today} 15:30:00`).getTime(); // test_ts = now_ts + 3000 couponIds = '' couponMapList = [ { "id": "239987", "name": "周一7点 满2-1券", "time": "7_1", "getTimes": "2", "period": "Week", "zoneId": "370200" }, { "id": "239961", "name": "周二7点 满3-2券", "time": "7_2", "getTimes": "2", "period": "Week", "zoneId": "370200" }, { "id": "239968", "name": "周三7点 满4-3券", "time": "7_3", "getTimes": "2", "period": "Week", "zoneId": "370200" }, { "id": "239973", "name": "周四7点 满5-4券", "time": "7_4", "getTimes": "2", "period": "Week", "zoneId": "370200" }, { "id": "239979", "name": "周五7点 满6-5券", "time": "7_5", "getTimes": "2", "period": "Week", "zoneId": "370200" }, { "id": "239980", "name": "周六7点 满7-6券", "time": "7_6", "getTimes": "2", "period": "Week", "zoneId": "370200" }, { "id": "239984", "name": "周日7点 满8-7券", "time": "7_7", "getTimes": "2", "period": "Week", "zoneId": "370200" }, { "id": "243175", "name": "【数币支付5折起】商超/轻餐满30元减15元券(数字人民币专属)", "time": "8" }, { "id": "243159", "name": "【数币支付5折起】正餐满100元减50元券(数字人民币专属)", "time": "8" }, { "id": "234460", "name": "【每日好券】青岛轻食满12元减6元券", "time": "10", "getTimes": "4", "period": "Week", "zoneId": "370200" }, { "id": "241434", "name": "每日好券外卖满20元减6元券(龙卡信用卡专享)", "time": "10", "getTimes": "4", "period": "Week", "zoneId": "370200" }, { "id": "246994", "name": "崂山矿泉水,周二11点", "time": "11_2", "getTimes": "1", "period": "Forever", "zoneId": "370200" }, { "id": "252156", "name": "崂山零售满300-100优惠券2(数字人民币专享)", "time": "10_5" }, { "id": "252152", "name": "崂山零售满50-20优惠券2(数字人民币专享)", "time": "10_5" }, { "id": "143780", "name": "周四5折胖哥俩满100减50元券-青岛(数币专享)", "time": "10:30_4", "getTimes": "4", "period": "Week", "zoneId": "370200" }, { "id": "143754", "name": "周四5折西村叔叔满50减25元券-青岛(数币专享)", "time": "10:30_4", "getTimes": "4", "period": "Week", "zoneId": "370200" }, { "id": "198662", "name": "周四5折笑蕾满50减25元券-青岛(数币专享)", "time": "10:30_4", "getTimes": "4", "period": "Week", "zoneId": "370200" }, { "id": "164187", "name": "周四5折皇家美孚满50减25元券-青岛(数币专享)", "time": "10:30_4", "getTimes": "4", "period": "Week", "zoneId": "370200" }, { "id": "164194", "name": "周四5折那些年满100减50元券-青岛(数币专享)", "time": "10:30_4", "getTimes": "4", "period": "Week", "zoneId": "370200" }, { "id": "253297", "name": "周五话费50-40券", "time": "8:30_5", "getTimes": "1", "period": "Week", "zoneId": "370200" }, { "id": "253297", "name": "周五话费50-40券", "time": "14:30_5", "getTimes": "1", "period": "Week", "zoneId": "370200" }, { "id": "251869", "name": "周五外卖30-20券", "time": "11:30_5", "getTimes": "1", "period": "Week", "zoneId": "370200" }, { "id": "251869", "name": "周五外卖30-20券", "time": "15:30_5", "getTimes": "1", "period": "Week", "zoneId": "370200" } ] diff = -1 if (sevenOclock_ts - now_ts <= 60 * 1000 && sevenOclock_ts - now_ts > 0) { diff = sevenOclock_ts - now_ts couponIds = process.env.SEVEN_OCLOCK_COUPON_IDS ? SEVEN_OCLOCK_COUPON_IDS : "239984&239980&239979&239973&239968&239961&239987" } if (eightOclock_ts - now_ts <= 60 * 1000 && eightOclock_ts - now_ts > 0) { diff = eightOclock_ts - now_ts couponIds = process.env.EIGHT_OCLOCK_COUPON_IDS ? EIGHT_OCLOCK_COUPON_IDS : "243175&243159" } if (eightHalfOclock_ts - now_ts <= 60 * 1000 && eightHalfOclock_ts - now_ts > 0) { diff = eightHalfOclock_ts - now_ts couponIds = process.env.EIGHT_HALF_OCLOCK_COUPON_IDS ? EIGHT_HALF_OCLOCK_COUPON_IDS : "253297" } if (tenOclock_ts - now_ts <= 60 * 1000 && tenOclock_ts - now_ts > 0) { diff = tenOclock_ts - now_ts couponIds = process.env.TEN_OCLOCK_COUPON_IDS ? TEN_OCLOCK_COUPON_IDS : "254554&246314" } if (tenHalfOclock_ts - now_ts <= 60 * 1000 && tenHalfOclock_ts - now_ts > 0) { diff = tenHalfOclock_ts - now_ts couponIds = process.env.TEN_HALF_OCLOCK_COUPON_IDS ? TEN_HALF_OCLOCK_COUPON_IDS : "164194&143780" } if (elevenOclock_ts - now_ts <= 60 * 1000 && elevenOclock_ts - now_ts > 0) { diff = elevenOclock_ts - now_ts couponIds = process.env.ELEVEN_OCLOCK_COUPON_IDS ? ELEVEN_OCLOCK_COUPON_IDS : "" } if (elevenHALFOclock_ts - now_ts <= 60 * 1000 && elevenHALFOclock_ts - now_ts > 0) { diff = elevenHALFOclock_ts - now_ts couponIds = process.env.ELEVEN_HALF_OCLOCK_COUPON_IDS ? ELEVEN_HALF_OCLOCK_COUPON_IDS : "251869" } if (pmTwoHalfOclock_ts - now_ts <= 60 * 1000 && pmTwoHalfOclock_ts - now_ts > 0) { diff = pmTwoHalfOclock_ts - now_ts couponIds = process.env.PM_TWO_HALF_OCLOCK_COUPON_IDS ? PM_TWO_HALF_OCLOCK_COUPON_IDS : "253297" } if (pmThreeHalfOclock_ts - now_ts <= 60 * 1000 && pmThreeHalfOclock_ts - now_ts > 0) { diff = pmThreeHalfOclock_ts - now_ts couponIds = process.env.PM_THREE_HALF_OCLOCK_COUPON_IDS ? PM_THREE_HALF_OCLOCK_COUPON_IDS : "251869" } // if (test_ts - now_ts <= 60 * 1000) { // couponIds = process.env.ELEVEN_OCLOCK_COUPON_IDS ? ELEVEN_OCLOCK_COUPON_IDS : "241434" // } // couponIds = '241434' if (couponIds == '' || diff == -1) { console.log('当前时间段没有可抢券!') $.done(); return; } couponIdArr = couponIds.split('&') $.url = 'https://yunbusiness.ccb.com/clp_coupon/txCtrl?txcode=A3341C040' cookies = process.env.JHSH_COUPON_CKS ? process.env.JHSH_COUPON_CKS : '' if (cookies == '') { console.log('未填写建行生活抢券Cookie!') $.done(); return; } cookieArr = cookies.split('@') console.log(`\n==========共发现${cookieArr.length}个账号==========\n`) $.weekDayNum = 0 $.couponTime = 0 $.message = '' $.promiseList = [] !(async () => { await $.wait(diff) a: for (let couponId of couponIdArr) { for (couponInfo of couponMapList) { if (couponInfo.id == couponId) { $.couponName = couponInfo.name $.couponTime = couponInfo.time if ($.couponTime.indexOf("_") > -1) { $.weekDayNum = $.couponTime.split("_")[1] $.couponTime = $.couponTime.split("_")[0] } else { $.weekDayNum = 0 } console.log($.weekDayNum) if ($.weekDayNum != 0 && $.weekDayNum != todayWDayNum) { console.log(`\n${$.couponName} 非抢券时间`) continue a } } } for (cookie of cookieArr) { $.promiseList.push(main(cookie, couponId, $.couponName)) } } $.message = await Promise.all($.promiseList) if ($.message != '') { await $.msg($.name, `建行生活抢券通知`, `${$.message}`); } })() .catch((e) => { $.log('', `❌ ${$.name}, 失败! 原因: ${e}!`, '') }) .finally(() => { $.done(); }) function main(cookie, couponId, couponName) { return new Promise(async resolve => { let phone = cookie.split(';')[0] let userId = cookie.split(';')[1] console.log(`${time()} 账号【${phone}】开抢【${couponName}】`) let ua = `jdapp;iPhone;10.2.2;13.1.2;${uuid()};M/5.0;network/wifi;ADID/;model/iPhone8,1;addressid/2308460611;appBuild/167863;jdSupportDarkMode/0;Mozilla/5.0 (iPhone; CPU iPhone OS 13_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148;supportJDSHWK/1;` let dict = {} dict.hotFlag = true dict.needWait = false dict.isSuccess = false dict.errMsg = '' dict.phone = phone dict.userId = userId dict.ua = ua dict.couponId = couponId dict.couponName = couponName for (let count = 0; count < 20; count++) { if (dict.hotFlag == true) { console.log(`${time()} 账号【${phone}】开始尝试第${count + 1}次抢券~`) await getCoupon(dict) await $.wait(300) if (dict.needWait == true) { await $.wait(500) } } else { break } } console.log(`${time()} 账号【${phone}】抢券结果 ${dict.errMsg}`) resolve(`账号[${phone}] ${couponName} ${dict.errMsg}\n`) }) } function getCoupon(dict) { let myRequest = getPostRequest(dict); // console.log(type + '-->'+ JSON.stringify(myRequest)) return new Promise(async resolve => { $.post(myRequest, (err, resp, data) => { try { dict.hotFlag = false dict.needWait = false dict.isSuccess = false dataObj = JSON.parse(data) if (err) { dict.errMsg = `抢券失败:${dataObj.errMsg}` console.log(dict.errMsg) if (dict.errMsg.indexOf('拥挤') > -1) { dict.hotFlag = true } if (dict.errMsg.indexOf('流控检查') > -1) { dict.needWait = true dict.hotFlag = true } } else { dict.isSuccess = true if (data.indexOf('LIST') > -1) { console.log(`${time()}【${dict.phone}】抢券成功,获得 ${dict.couponName}`) dict.errMsg = `抢券成功!` } if (data.indexOf('coupMap') > -1) { console.log(`${time()}【${dict.phone}】已经抢过 ${dict.couponName}`) dict.errMsg = `已经抢过优惠券 ` } } } catch (e) { // console.log(data); console.log(e, resp) } finally { resolve(); } }) }) } function time() { return moment().format('YYYY-MM-DD HH:mm:ss.SSSSS') } function getPostRequest(dict, method = "POST") { let headers = { "Accept": "application/json,text/javascript,*/*", // "Accept-Encoding": "gzip, deflate, br", "Connection": "keep-alive", "User-Agent": dict.ua, "Content-Type": "application/json", // "X-Requested-With": "XMLHttpRequest", "Host": "yunbusiness.ccb.com" } body = getRequestBody(dict) // console.log(JSON.stringify(body)) return { url: $.url, method: method, headers: headers, body: JSON.stringify(body), timeout: 30000 }; } function getRequestBody(dict) { // return `{"req_channel_type": "1","PlatForm_Code": "MCP", "coupon_ID": ${$.couponId},"Mrch_ID": "","Mblph_No": ${$.phone},"Channel_User_ID": ${$.userId},"CLD_SOURCE_CHNL": "01","DtSrc": "MCP","MctGetCoupon_Type": "20","MS_FLAG": "0","CLD_REQ_CHANNEL": "01","MCT_CTMS": {},"COUPON_ID": ${$.couponId},"MEB_ID": ${$.userId},"USR_TEL": ${$.phone},"COUP_CHNL": "01","MSPS_ENTITY": {"PlatForm_Code": "MCP","coupon_ID": ${$.couponId},"Channel_User_ID": ${$.userId},"Mblph_No": ${$.phone},"DtSrc": "MCP"},"chnlType": "1","regionCode": "370200"}` return { "req_channel_type": "1", "PlatForm_Code": "MCP", "coupon_ID": dict.couponId, "Mrch_ID": "", "Mblph_No": dict.phone, "Channel_User_ID": dict.userId, "CLD_SOURCE_CHNL": "01", "DtSrc": "MCP", "MctGetCoupon_Type": "20", "MS_FLAG": "0", "CLD_REQ_CHANNEL": "01", "MCT_CTMS": {}, "COUPON_ID": dict.couponId, "MEB_ID": dict.userId, "USR_TEL": dict.phone, "COUP_CHNL": "01", "MSPS_ENTITY": { "PlatForm_Code": "MCP", "coupon_ID": dict.couponId, "Channel_User_ID": dict.userId, "Mblph_No": dict.phone, "DtSrc": "MCP" }, "chnlType": "1", "regionCode": "370200" } } function uuid(x = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx") { return x.replace(/[xy]/g, function (x) { const r = 16 * Math.random() | 0, n = "x" === x ? r : 3 & r | 8; return n.toString(36) }) } //---SyncByPyScript---Env-start function Env(t,e){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,a)=>{s.call(this,t,(t,s,r)=>{t?a(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.encoding="utf-8",this.startTime=(new Date).getTime(),Object.assign(this,e),this.log("",`\ud83d\udd14${this.name}, \u5f00\u59cb!`)}getEnv(){return"undefined"!=typeof $environment&&$environment["surge-version"]?"Surge":"undefined"!=typeof $environment&&$environment["stash-version"]?"Stash":"undefined"!=typeof module&&module.exports?"Node.js":"undefined"!=typeof $task?"Quantumult X":"undefined"!=typeof $loon?"Loon":"undefined"!=typeof $rocket?"Shadowrocket":void 0}isNode(){return"Node.js"===this.getEnv()}isQuanX(){return"Quantumult X"===this.getEnv()}isSurge(){return"Surge"===this.getEnv()}isLoon(){return"Loon"===this.getEnv()}isShadowrocket(){return"Shadowrocket"===this.getEnv()}isStash(){return"Stash"===this.getEnv()}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 a=this.getdata(t);if(a)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,a)=>e(a))})}runScript(t,e){return new Promise(s=>{let a=this.getdata("@chavy_boxjs_userCfgs.httpapi");a=a?a.replace(/\n/g,"").trim():a;let r=this.getdata("@chavy_boxjs_userCfgs.httpapi_timeout");r=r?1*r:20,r=e&&e.timeout?e.timeout:r;const[i,o]=a.split("@"),n={url:`http://${o}/v1/scripting/evaluate`,body:{script_text:t,mock_type:"cron",timeout:r},headers:{"X-Key":i,Accept:"*/*"},timeout:r};this.post(n,(t,e,a)=>s(a))}).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),a=!s&&this.fs.existsSync(e);if(!s&&!a)return{};{const a=s?t:e;try{return JSON.parse(this.fs.readFileSync(a))}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),a=!s&&this.fs.existsSync(e),r=JSON.stringify(this.data);s?this.fs.writeFileSync(t,r):a?this.fs.writeFileSync(e,r):this.fs.writeFileSync(t,r)}}lodash_get(t,e,s){const a=e.replace(/\[(\d+)\]/g,".$1").split(".");let r=t;for(const t of a)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,a)=>Object(t[s])===t[s]?t[s]:t[s]=Math.abs(e[a+1])>>0==+e[a+1]?[]:{},t)[e[e.length-1]]=s,t)}getdata(t){let e=this.getval(t);if(/^@/.test(t)){const[,s,a]=/^@(.*?)\.(.*?)$/.exec(t),r=s?this.getval(s):"";if(r)try{const t=JSON.parse(r);e=t?this.lodash_get(t,a,""):e}catch(t){e=""}}return e}setdata(t,e){let s=!1;if(/^@/.test(e)){const[,a,r]=/^@(.*?)\.(.*?)$/.exec(e),i=this.getval(a),o=a?"null"===i?null:i||"{}":"{}";try{const e=JSON.parse(o);this.lodash_set(e,r,t),s=this.setval(JSON.stringify(e),a)}catch(e){const i={};this.lodash_set(i,r,t),s=this.setval(JSON.stringify(i),a)}}else s=this.setval(t,e);return s}getval(t){switch(this.getEnv()){case"Surge":case"Loon":case"Stash":case"Shadowrocket":return $persistentStore.read(t);case"Quantumult X":return $prefs.valueForKey(t);case"Node.js":return this.data=this.loaddata(),this.data[t];default:return this.data&&this.data[t]||null}}setval(t,e){switch(this.getEnv()){case"Surge":case"Loon":case"Stash":case"Shadowrocket":return $persistentStore.write(t,e);case"Quantumult X":return $prefs.setValueForKey(t,e);case"Node.js":return this.data=this.loaddata(),this.data[e]=t,this.writedata(),!0;default:return 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=(()=>{})){switch(t.headers&&(delete t.headers["Content-Type"],delete t.headers["Content-Length"],delete t.headers["content-type"],delete t.headers["content-length"]),this.getEnv()){case"Surge":case"Loon":case"Stash":case"Shadowrocket":default:this.isSurge()&&this.isNeedRewrite&&(t.headers=t.headers||{},Object.assign(t.headers,{"X-Surge-Skip-Scripting":!1})),$httpClient.get(t,(t,s,a)=>{!t&&s&&(s.body=a,s.statusCode=s.status?s.status:s.statusCode,s.status=s.statusCode),e(t,s,a)});break;case"Quantumult X":this.isNeedRewrite&&(t.opts=t.opts||{},Object.assign(t.opts,{hints:!1})),$task.fetch(t).then(t=>{const{statusCode:s,statusCode:a,headers:r,body:i,bodyBytes:o}=t;e(null,{status:s,statusCode:a,headers:r,body:i,bodyBytes:o},i,o)},t=>e(t&&t.error||"UndefinedError"));break;case"Node.js":let s=require("iconv-lite");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:a,statusCode:r,headers:i,rawBody:o}=t,n=s.decode(o,this.encoding);e(null,{status:a,statusCode:r,headers:i,rawBody:o,body:n},n)},t=>{const{message:a,response:r}=t;e(a,r,r&&s.decode(r.rawBody,this.encoding))})}}post(t,e=(()=>{})){const s=t.method?t.method.toLocaleLowerCase():"post";switch(t.body&&t.headers&&!t.headers["Content-Type"]&&!t.headers["content-type"]&&(t.headers["content-type"]="application/x-www-form-urlencoded"),t.headers&&(delete t.headers["Content-Length"],delete t.headers["content-length"]),this.getEnv()){case"Surge":case"Loon":case"Stash":case"Shadowrocket":default:this.isSurge()&&this.isNeedRewrite&&(t.headers=t.headers||{},Object.assign(t.headers,{"X-Surge-Skip-Scripting":!1})),$httpClient[s](t,(t,s,a)=>{!t&&s&&(s.body=a,s.statusCode=s.status?s.status:s.statusCode,s.status=s.statusCode),e(t,s,a)});break;case"Quantumult X":t.method=s,this.isNeedRewrite&&(t.opts=t.opts||{},Object.assign(t.opts,{hints:!1})),$task.fetch(t).then(t=>{const{statusCode:s,statusCode:a,headers:r,body:i,bodyBytes:o}=t;e(null,{status:s,statusCode:a,headers:r,body:i,bodyBytes:o},i,o)},t=>e(t&&t.error||"UndefinedError"));break;case"Node.js":let a=require("iconv-lite");this.initGotEnv(t);const{url:r,...i}=t;this.got[s](r,i).then(t=>{const{statusCode:s,statusCode:r,headers:i,rawBody:o}=t,n=a.decode(o,this.encoding);e(null,{status:s,statusCode:r,headers:i,rawBody:o,body:n},n)},t=>{const{message:s,response:r}=t;e(s,r,r&&a.decode(r.rawBody,this.encoding))})}}time(t,e=null){const s=e?new Date(e):new Date;let a={"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 a)new RegExp("("+e+")").test(t)&&(t=t.replace(RegExp.$1,1==RegExp.$1.length?a[e]:("00"+a[e]).substr((""+a[e]).length)));return t}queryStr(t){let e="";for(const s in t){let a=t[s];null!=a&&""!==a&&("object"==typeof a&&(a=JSON.stringify(a)),e+=`${s}=${a}&`)}return e=e.substring(0,e.length-1),e}msg(e=t,s="",a="",r){const i=t=>{switch(typeof t){case void 0:return t;case"string":switch(this.getEnv()){case"Surge":case"Stash":default:return{url:t};case"Loon":case"Shadowrocket":return t;case"Quantumult X":return{"open-url":t};case"Node.js":return}case"object":switch(this.getEnv()){case"Surge":case"Stash":case"Shadowrocket":default:{let e=t.url||t.openUrl||t["open-url"];return{url:e}}case"Loon":{let e=t.openUrl||t.url||t["open-url"],s=t.mediaUrl||t["media-url"];return{openUrl:e,mediaUrl:s}}case"Quantumult X":{let e=t["open-url"]||t.url||t.openUrl,s=t["media-url"]||t.mediaUrl,a=t["update-pasteboard"]||t.updatePasteboard;return{"open-url":e,"media-url":s,"update-pasteboard":a}}case"Node.js":return}default:return}};if(!this.isMute)switch(this.getEnv()){case"Surge":case"Loon":case"Stash":case"Shadowrocket":default:$notification.post(e,s,a,i(r));break;case"Quantumult X":$notify(e,s,a,i(r));break;case"Node.js":}if(!this.isMuteLog){let t=["","==============\ud83d\udce3\u7cfb\u7edf\u901a\u77e5\ud83d\udce3=============="];t.push(e),s&&t.push(s),a&&t.push(a),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){switch(this.getEnv()){case"Surge":case"Loon":case"Stash":case"Shadowrocket":case"Quantumult X":default:this.log("",`\u2757\ufe0f${this.name}, \u9519\u8bef!`,t);break;case"Node.js":this.log("",`\u2757\ufe0f${this.name}, \u9519\u8bef!`,t.stack)}}wait(t){return new Promise(e=>setTimeout(e,t))}done(t={}){const e=(new Date).getTime(),s=(e-this.startTime)/1e3;switch(this.log("",`\ud83d\udd14${this.name}, \u7ed3\u675f! \ud83d\udd5b ${s} \u79d2`),this.log(),this.getEnv()){case"Surge":case"Loon":case"Stash":case"Shadowrocket":case"Quantumult X":default:$done(t);break;case"Node.js":process.exit(1)}}}(t,e)} //---SyncByPyScript---Env-end