feat(new tasiting.js): new tasiting.js

This commit is contained in:
smallfawn 2026-04-04 13:59:59 +08:00
parent 4d68503f66
commit 9da231020b

160
daily/tasiting.js Normal file
View File

@ -0,0 +1,160 @@
/*
------------------------------------------
@Author: sm
@Date: 2024.06.07 19:15
@Description: 塔斯汀小程序签到
cron: 30 8 * * *
------------------------------------------
#Notice:
抓包小程序塔斯汀获取https://sss-web.tastientech.com/api 请求头的user-token参数填入环境变量格式如下
变量名tasiting
多账号使用&分割或者换行
免责声明
------------------------------------------
1此脚本仅用于学习研究不保证其合法性准确性有效性请根据情况自行判断本人对此不承担任何保证责任
2由于此脚本仅用于学习研究您必须在下载后 24 小时内将所有内容从您的计算机或手机或任何存储设备中完全删除若违反规定引起任何事件本人对此均不负责
3请勿将此脚本用于任何商业或非法目的若违反规定请自行对此负责
4此脚本涉及应用与本人无关本人对因此引起的任何隐私泄漏或其他后果不承担任何责任
5本人对任何脚本引发的问题概不负责包括但不限于由脚本错误引起的任何损失和损害
6如果任何单位或个人认为此脚本可能涉嫌侵犯其权利应及时通知并提供身份证明所有权证明我们将在收到认证文件确认后删除此脚本
7所有直接或间接使用查看此脚本的人均应该仔细阅读此声明本人保留随时更改或补充此声明的权利一旦您使用或复制了此脚本即视为您已接受此免责声明
*/
const { Env } = require("../tools/env")
const $ = new Env("塔斯汀小程序签到");
let ckName = `tasiting`;
const strSplitor = "#";
const axios = require("axios");
const defaultUserAgent = "Mozilla/5.0 (iPhone; CPU iPhone OS 16_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 MicroMessenger/8.0.31(0x18001e31) NetType/WIFI Language/zh_CN miniProgram"
class Task {
constructor(env) {
this.index = $.userIdx++
this.user = env.split(strSplitor);
this.token = this.user[0];
this.userFlag = false
this.phone = ''
}
async run() {
await this.userInfo()
if (this.userFlag) {
await this.getSignInfo()
if (this.activityId) {
await this.getUserSignInfo()
}
}
}
async userInfo() {
let options = {
method: 'GET',
url: `https://sss-web.tastientech.com/api/intelligence/member/getMemberDetail`,
headers:
{ 'user-token': this.token, 'version': '3.63.1', 'channel': '1' }
};
let { data: result } = await axios.request(options);
if (result?.code == '200') {
//打印签到结果
this.userFlag = true
this.phone = result.result.phone
$.log(`🌸账号[${this.index}]手机号:[${result.result.phone}]`);
} else {
$.log(`🌸账号[${this.index}] 查询-失败:${JSON.stringify(result)}`)
}
}
async getSignInfo() {
let options = {
method: 'POST',
url: `https://sss-web.tastientech.com/api/minic/shop/intelligence/banner/c/list`,
headers: { 'user-token': this.token, 'version': '3.63.1', 'channel': '1' },
data: { "shopId": "", "birthday": "", "gender": 0, "nickName": '', "phone": "" }
};
let { data: result } = await axios.request(options);
for (let item of result.result) {
if (item.jumpCode == 'SIGN') {
this.activityId = JSON.parse(item.jumpPara).activityId
$.log(`🌸账号[${this.index}] 活动ID[${this.activityId}]`);
}
}
}
async getUserSignInfo() {
let options = {
method: 'POST',
url: `https://sss-web.tastientech.com/api/sign/member/signInfoV2`,
headers: { 'user-token': this.token, 'version': '3.63.1', 'channel': '1' },
data: { activityId: this.activityId }
};
let { data: result } = await axios.request(options);
if (result?.code == '200') {
if (result.result.signMemberInfo.todaySign !== true) {
await this.doSign()
} else {
$.log(`🌸账号[${this.index}] 今日已签到🎉`);
}
}
}
async doSign() {
let options = {
method: 'POST',
url: `https://sss-web.tastientech.com/api/sign/member/signV2/sign`,
headers: { 'user-token': this.token, 'version': '3.63.1', 'channel': '1' },
data: { "activityId": this.activityId, "memberName": "", "memberPhone": this.phone }
};
let { data: result } = await axios.request(options);
if (result?.code == '200') {
//打印签到结果
$.log(`🌸账号[${this.index}]` + `🕊当前已签到${result.body.signDaysCountMod}天🎉`);
} else {
$.log(`🌸账号[${this.index}] 签到-失败:${JSON.stringify(result)}`)
}
}
}
!(async () => {
await getNotice()
$.checkEnv(ckName);
for (let user of $.userList) {
await new Task(user).run();
}
})()
.catch((e) => console.log(e))
.finally(() => $.done());
async function getNotice() {
let options = {
url: `https://ghproxy.net/https://raw.githubusercontent.com/smallfawn/Note/refs/heads/main/Notice.json`,
headers: {
"User-Agent": defaultUserAgent,
}
}
let { data: res } = await axios.request(options);
$.log(res)
return res
}