CheckinScripts/fmp.js

357 lines
20 KiB
JavaScript
Raw Permalink Normal View History

2022-05-20 16:39:06 +08:00
/**
* @ 临渊
* 软件飞猫盘及橘猫众包
* 功能飞猫盘及橘猫众包每日签到获取福利点可加速下载使用
* 抓取域名
* mapi.fmapp.com
* mapi.tgy123.com
* 里面的token即可
* 变量格式export fmtoken=' xxxx@xxxx ' 多个账号用 @分割
*/
const jsname = "飞猫盘+橘猫众包每日签到";
const $ = Env(jsname);
const notify = $.isNode() ? require('./sendNotify') : '';
const Notify = 1; //0为关闭通知1为打开通知,默认为1
const debug = 0; //0为关闭调试1为打开调试,默认为0
//////////////////////
let fmtoken = process.env.fmtoken;
let fmtokenArr = [];
let data = '';
let msg = '';
2022-05-22 11:17:12 +08:00
let back = '';
2022-05-20 16:39:06 +08:00
!(async () => {
if (!(await Envs()))
return;
else {
console.log(`===================作者:临渊===================`);
console.log(`\n\n========================================= \n脚本执行 - 北京时间:${new Date(
new Date().getTime() + new Date().getTimezoneOffset() * 60 * 1000 +
8 * 60 * 60 * 1000).toLocaleString()} \n=========================================\n`);
console.log(`\n=================== 共找到 ${fmtokenArr.length} 个账号 ===================`)
if (debug) {
console.log(`【debug】 这是你的全部账号数组:\n ${fmtokenArr}`);
}
for (let index = 0; index < fmtokenArr.length; index++) {
fmtoken = fmtokenArr[index]
let num = index + 1
console.log(`\n========= 开始【第 ${num} 个账号】=========\n`)
2022-05-22 11:17:12 +08:00
2022-05-20 16:39:06 +08:00
if (debug) {
console.log(`\n 【debug】 这是你第 ${num} 账号信息:\n ${data}\n`);
}
msg+=`${num}个账号签到结果:\n`
console.log('开始飞猫盘APP签到');
await signin1();
await $.wait(2 * 1000);
2022-05-22 11:17:12 +08:00
while (back == "undefined"){
await signin1();
await $.wait(2 * 1000);
}
2022-05-20 16:39:06 +08:00
console.log('开始飞猫盘连签10天奖励');
await getBonus10();
await $.wait(2 * 1000);
2022-05-22 11:17:12 +08:00
while (back == "undefined"){
await getBonus10();
await $.wait(2 * 1000);
}
2022-05-20 16:39:06 +08:00
console.log('开始飞猫盘连签30天奖励');
await getBonus30();
await $.wait(2 * 1000);
2022-05-22 11:17:12 +08:00
while (back == "undefined"){
await getBonus30();
await $.wait(2 * 1000);
}
2022-05-20 16:39:06 +08:00
console.log('开始橘猫众包APP签到');
await signin2();
await $.wait(2 * 1000);
2022-05-22 11:17:12 +08:00
while (back == "undefined"){
await signin2();
await $.wait(2 * 1000);
}
2022-05-20 16:39:06 +08:00
}
await SendMsg(msg);
}
})()
.catch((e) => console.logErr(e))
.finally(() => $.done())
/**
*飞猫盘签到
*/
function signin1(timeout = 3 * 1000) {
return new Promise((resolve) => {
let url = {
url: `https://mapi.fmapp.com/tgy/tosign`,
2022-05-22 11:17:12 +08:00
headers: {
2022-05-20 16:39:06 +08:00
"Host": "mapi.fmapp.com",
"fmver": "55",
2022-05-22 11:17:12 +08:00
"token": `${fmtoken}`,
2022-05-20 16:39:06 +08:00
"plat": "feemoo",
"os": "android",
"content-length": "0",
"accept-encoding": "gzip",
"user-agent": "okhttp/3.14.9"
2022-05-22 11:17:12 +08:00
},
2022-05-20 16:39:06 +08:00
body: '' //虽然是post请求但是body为空
}
if (debug) {
console.log(`\n【debug】=============== 这是 签到 请求 url ===============`);
console.log(JSON.stringify(url));
}
$.post(url, async (error, response, data) => {
try {
if (debug) {
console.log(`\n\n【debug】===============这是 签到 返回data==============`);
console.log(data)
}
2022-05-22 11:17:12 +08:00
back = eval("(" + data + ")");
2022-05-22 13:25:57 +08:00
let result = eval("(" + data + ")");
2022-05-20 16:39:06 +08:00
if (result.status == 1) {
console.log(`【签到成功】🎉`)
msg += `\n【飞猫签到成功】🎉\n您的福利点点数为:${result.data.point}`
msg += `\n您的连续签到天数为:${result.data.sigcount}`
} else {
console.log(`\n【签到失败】,原因是:${result.msg}!\n `)
msg += `【飞猫签到失败】,原因是:${result.msg}!\n`
}
} catch (e) {
console.log(e)
} finally {
resolve();
}
}, timeout)
})
}
/**
*飞猫盘领取额外10天签到奖励
*/
function getBonus10(timeout = 3 * 1000) {
return new Promise((resolve) => {
let url = {
url: `https://mapi.fmapp.com/tgy/getpoint`,
2022-05-22 11:17:12 +08:00
headers: {
2022-05-20 16:39:06 +08:00
"Host": "mapi.fmapp.com",
"fmver": "57",
2022-05-22 11:17:12 +08:00
"token": `${fmtoken}`,
2022-05-20 16:39:06 +08:00
"plat": "xiaomi",
"os": "android",
"content-type": "application/x-www-form-urlencoded",
"content-length": "5",
"accept-encoding": "gzip",
"user-agent": "okhttp/3.14.9"
2022-05-22 11:17:12 +08:00
},
2022-05-20 16:39:06 +08:00
body: 'tid=7'
}
if (debug) {
console.log(`\n【debug】=============== 这是 领取连签10天奖励 请求 url ===============`);
console.log(JSON.stringify(url));
}
$.post(url, async (error, response, data) => {
try {
if (debug) {
console.log(`\n\n【debug】===============这是 领取连签10天奖励 返回data==============`);
console.log(data)
}
2022-05-22 11:17:12 +08:00
back = eval("(" + data + ")");
2022-05-22 13:25:57 +08:00
let result = eval("(" + data + ")");
2022-05-20 16:39:06 +08:00
if (result.status == 1) {
2022-05-22 11:17:12 +08:00
console.log(`领取连签10天奖励成功`)
2022-05-20 16:39:06 +08:00
msg += `\n领取连签10天奖励成功`
} else if(result.status == 0){
console.log(`\n领取连签10天奖励失败原因是:已领取!\n `)
} else{
console.log(`领取失败`)
}
} catch (e) {
console.log(e)
} finally {
resolve();
}
}, timeout)
})
}
/**
*飞猫盘领取额外30天签到奖励
*/
function getBonus30(timeout = 3 * 1000) {
return new Promise((resolve) => {
let url = {
url: `https://mapi.fmapp.com/tgy/getpoint`,
2022-05-22 11:17:12 +08:00
headers: {
2022-05-20 16:39:06 +08:00
"Host": "mapi.fmapp.com",
"fmver": "57",
2022-05-22 11:17:12 +08:00
"token": `${fmtoken}`,
2022-05-20 16:39:06 +08:00
"plat": "xiaomi",
"os": "android",
"content-type": "application/x-www-form-urlencoded",
"content-length": "5",
"accept-encoding": "gzip",
"user-agent": "okhttp/3.14.9"
2022-05-22 11:17:12 +08:00
},
2022-05-20 16:39:06 +08:00
body: 'tid=8'
}
if (debug) {
console.log(`\n【debug】=============== 这是 领取连签30天奖励 请求 url ===============`);
console.log(JSON.stringify(url));
}
$.post(url, async (error, response, data) => {
try {
if (debug) {
console.log(`\n\n【debug】===============这是 领取连签30天奖励 返回data==============`);
console.log(data)
}
2022-05-22 11:17:12 +08:00
back = eval("(" + data + ")");
2022-05-22 13:25:57 +08:00
let result = eval("(" + data + ")");
2022-05-20 16:39:06 +08:00
if (result.status == 1) {
console.log(`领取连签30天奖励成功🎉`)
msg += `\n领取连签30天奖励成功`
} else if(result.status == 0){
console.log(`\n领取连签30天奖励失败原因是:已领取!\n `)
} else{
console.log(`领取失败`)
}
} catch (e) {
console.log(e)
} finally {
resolve();
}
}, timeout)
})
}
/**
*橘猫众包签到
*/
function signin2(timeout = 3 * 1000) {
return new Promise((resolve) => {
let url = {
url: `https://mapi.tgy123.com/index.php/marketing/signIn`,
2022-05-22 11:17:12 +08:00
headers: {
2022-05-20 16:39:06 +08:00
"Host": "mapi.tgy123.com",
"os": "android",
"version": "14",
2022-05-22 11:17:12 +08:00
"token": `${fmtoken}`,
2022-05-20 16:39:06 +08:00
"channel": "jmzb",
"content-type": "application/x-www-form-urlencoded",
"content-length": "5",
"accept-encoding": "gzip",
"user-agent": "okhttp/3.10.0"
2022-05-22 11:17:12 +08:00
},
2022-05-20 16:39:06 +08:00
body: 'flag='
}
if (debug) {
console.log(`\n【debug】=============== 这是 签到 请求 url ===============`);
console.log(JSON.stringify(url));
}
$.post(url, async (error, response, data) => {
try {
if (debug) {
console.log(`\n\n【debug】===============这是 签到 返回data==============`);
console.log(data)
}
2022-05-22 11:17:12 +08:00
back = eval("(" + data + ")");
2022-05-22 13:25:57 +08:00
let result = eval("(" + data + ")");
2022-05-20 16:39:06 +08:00
if (result.status == 1) {
console.log(`【签到成功】🎉`)
msg += `\n【橘猫签到成功】🎉\n您的福利点点数为:${result.data.point}`
msg += `\n您的连续签到天数为:${result.data.sigcount}\n`
} else {
console.log(`\n【签到失败】,原因是:${result.msg}!\n `)
msg += `【橘猫签到失败】,原因是:${result.msg}!\n`
}
} catch (e) {
console.log(e)
} finally {
resolve();
}
}, timeout)
})
}
// ============================================变量检查============================================ \\
async function Envs() {
if (fmtoken) {
if (fmtoken.indexOf("@") != -1) {
fmtoken.split("@").forEach((item) => {
fmtokenArr.push(item);
});
} else {
fmtokenArr.push(fmtoken);
}
} else {
console.log(`\n${$.name}】:未填写变量 fmtoken`)
return;
}
return true;
}
// ============================================发送消息============================================ \\
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 {
console.log(message);
}
}
/**
* 随机数生成
*/
function randomString(e) {
e = e || 32;
var t = "QWERTYUIOPASDFGHJKLZXCVBNM1234567890",
a = t.length,
n = "";
for (i = 0; i < e; i++)
n += t.charAt(Math.floor(Math.random() * a));
return n
}
/**
* 随机整数生成
*/
function randomInt(min, max) {
return Math.round(Math.random() * (max - min) + min)
}
2022-05-22 11:17:12 +08:00
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.