mirror of
https://github.com/Giu-zhao/ios_rule_script
synced 2024-11-23 00:48:24 +08:00
134 lines
17 KiB
JavaScript
134 lines
17 KiB
JavaScript
|
const scriptName = '美团买菜';
|
|||
|
const getCookieRegex = /^https?:\/\/mall\.meituan\.com\/api\/c\/mallcoin\/checkIn\/getWeekCheckInProgressBar\?/;
|
|||
|
const mallCookieKey = 'meituan_mall_cookie';
|
|||
|
const mallTKey = 'meituan_mall_t';
|
|||
|
const mallQueryStringKey = 'meituan_mall_querystring';
|
|||
|
const mallUUIDKey = 'meituan_mall_uuid';
|
|||
|
const mallUserIdKey = 'meituan_mall_userid';
|
|||
|
const mallBodyKey = 'meituan_mall_body';
|
|||
|
let magicJS = MagicJS(scriptName, "INFO");
|
|||
|
magicJS.unifiedPushUrl = magicJS.read('meituan_mall_unified_push_url') || magicJS.read('meituan_mall_unified_push_url');
|
|||
|
|
|||
|
// 每日签到
|
|||
|
function CheckIn(cookie, t, queryString, uuid, userId){
|
|||
|
return new Promise((resolve, reject)=>{
|
|||
|
let checkinOptions = {
|
|||
|
url: `https://mall.meituan.com/api/c/mallcoin/checkIn/userCheckInNew?${queryString}`,
|
|||
|
headers: {
|
|||
|
"Accept": "*/*",
|
|||
|
"Accept-Encoding": "gzip, deflate, br",
|
|||
|
"Accept-Language": "zh-cn",
|
|||
|
"Connection": "keep-alive",
|
|||
|
"Content-Type": "application/json",
|
|||
|
"Cookie": cookie,
|
|||
|
"Host": "mall.meituan.com",
|
|||
|
"Origin": "https://mall.meituan.com",
|
|||
|
"User-Agent": "Mozilla/5.0 (iPhone; CPU iPhone OS 14_2_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 MicroMessenger/6.5.7 miniprogram MMP/1.10.0.9.8",
|
|||
|
"t": t
|
|||
|
},
|
|||
|
body: {
|
|||
|
"userId": userId,
|
|||
|
"riskMap": {
|
|||
|
"platform": 13,
|
|||
|
"app": 95,
|
|||
|
"utm_term": "5.12.3",
|
|||
|
"uuid": uuid,
|
|||
|
"utm_medium": "tuanApp",
|
|||
|
"fingerprint": ""
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
magicJS.post(checkinOptions, (err, resp, data)=>{
|
|||
|
if (err){
|
|||
|
magicJS.logError(`签到失败,请求异常:${err}`);
|
|||
|
reject('❌签到失败,请求异常,请查阅日志!');
|
|||
|
}
|
|||
|
else{
|
|||
|
try{
|
|||
|
magicJS.logDebug(`美团买菜签到响应结果:${data}`);
|
|||
|
let obj = typeof data === 'string'? JSON.parse(data) : data;
|
|||
|
if (obj.code === 0 && obj.data.result == true){
|
|||
|
resolve([obj.data.rewardValue, obj.data.checkinCard]);
|
|||
|
}
|
|||
|
else if (obj.code === 0 && obj.data.result === false && obj.data.rewardValue === '-1'){
|
|||
|
magicJS.logWarning(`疑似重复签到,接口响应:${data}`);
|
|||
|
resolve([obj.data.rewardValue, obj.data.checkinCard]);
|
|||
|
}
|
|||
|
else{
|
|||
|
magicJS.logError(`签到失败,响应异常:${data}`);
|
|||
|
reject('❌签到失败,响应异常,请查阅日志!');
|
|||
|
}
|
|||
|
}
|
|||
|
catch(err){
|
|||
|
magicJS.logError(`签到失败,执行异常:${err},接口响应:${data}`);
|
|||
|
reject('❌签到失败,执行异常,请查阅日志!');
|
|||
|
}
|
|||
|
}
|
|||
|
})
|
|||
|
})
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
;(async()=>{
|
|||
|
if (magicJS.isRequest && getCookieRegex.test(magicJS.request.url)){
|
|||
|
try{
|
|||
|
let cookie = magicJS.request.headers['Cookie'];
|
|||
|
let t = magicJS.request.headers['t'];
|
|||
|
let userId = magicJS.request.url.match(/userId=([^&]*)/)[1];
|
|||
|
let uuid = magicJS.request.url.match(/uuid=([^&]*)/)[1];
|
|||
|
let queryString = magicJS.request.url.match(/getWeekCheckInProgressBar\?(.*)/)[1];
|
|||
|
let hisCookie = magicJS.read(mallCookieKey);
|
|||
|
magicJS.write(mallTKey, t);
|
|||
|
magicJS.write(mallUserIdKey, userId);
|
|||
|
magicJS.write(mallUUIDKey, uuid);
|
|||
|
magicJS.write(mallQueryStringKey, queryString);
|
|||
|
if (cookie != hisCookie){
|
|||
|
magicJS.write(mallCookieKey, cookie);
|
|||
|
magicJS.logInfo(`旧的Cookie:\n${hisCookie}\n新的Cookie:\n${cookie}\nCookie不同,写入新的Cookie成功!`);
|
|||
|
magicJS.notify('🎈Cookie写入成功');
|
|||
|
}
|
|||
|
else{
|
|||
|
magicJS.logInfo('Cookie没有变化,无需更新');
|
|||
|
}
|
|||
|
}
|
|||
|
catch (err){
|
|||
|
magicJS.logError(`获取Cookie出现异常,异常信息:${err}`);
|
|||
|
magicJS.notify('❌获取Cookiec出现异常,请查阅日志。');
|
|||
|
}
|
|||
|
}
|
|||
|
else{
|
|||
|
let subTitle = "";
|
|||
|
let content = "";
|
|||
|
let cookie = magicJS.read(mallCookieKey);
|
|||
|
let t = magicJS.read(mallTKey);
|
|||
|
let queryString = magicJS.read(mallQueryStringKey);
|
|||
|
let userId = magicJS.read(mallUserIdKey);
|
|||
|
let uuid = magicJS.read(mallUUIDKey);
|
|||
|
if (!t || !cookie || !queryString || !userId || !uuid){
|
|||
|
magicJS.logWarning('没有读取到Cookie,请先从App中获取一次Cookie!');
|
|||
|
magicJS.notify('❓没有读取到Cookie,请先从App中获取!!');
|
|||
|
}
|
|||
|
else{
|
|||
|
let [checkInErr, [rewardValue, checkinCard]] = await magicJS.attempt(CheckIn(cookie, t, queryString, uuid, userId), [null, null]);
|
|||
|
if (checkInErr){
|
|||
|
subTitle = '❌签到异常,请查阅日志';
|
|||
|
}
|
|||
|
else{
|
|||
|
if (rewardValue != '-1'){
|
|||
|
subTitle = `🎉${checkinCard.week}签到成功,获得买菜钱${rewardValue}元。`;
|
|||
|
content = checkinCard.text;
|
|||
|
}
|
|||
|
else{
|
|||
|
subTitle = `🎉${checkinCard.week}重复签到。`;
|
|||
|
content = checkinCard.text;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
// 通知
|
|||
|
magicJS.notify(scriptName, subTitle, content);
|
|||
|
}
|
|||
|
}
|
|||
|
magicJS.done();
|
|||
|
})();
|
|||
|
|
|||
|
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.
|