586 lines
19 KiB
JavaScript
586 lines
19 KiB
JavaScript
// # Source: https://github.com/imoki/sign_script/blob/main/polymerization/huluxia.js
|
||
// # Raw: https://raw.githubusercontent.com/imoki/sign_script/main/polymerization/huluxia.js
|
||
// # Repo: imoki/sign_script
|
||
// # Path: polymerization/huluxia.js
|
||
// # UploadedAt: 2025-08-25T21:29:14+08:00
|
||
// # SHA256: 6233f109c9d3883bbb174dbdb20376c2462cb2aa72e8fba21e67863ce31bc48e
|
||
// # Category: web版/账密
|
||
// # Evidence: web/H5关键词 + username/password/login
|
||
//
|
||
|
||
/*
|
||
name: "葫芦侠3楼"
|
||
cron: 45 0 9 * * *
|
||
脚本兼容: 金山文档(1.0)
|
||
更新时间:20241226
|
||
环境变量名:无
|
||
环境变量值:无
|
||
备注:需要_key。用抓包工具抓取所需的值
|
||
如何快速抓取到_key:
|
||
1.开启抓包
|
||
2.葫芦侠APP退出,然后重新登录
|
||
3.此时任意找到一个url中含有“user/info”的请求
|
||
4.然后点击“查看表单”,复制其中的_key值
|
||
*/
|
||
|
||
var sheetNameSubConfig = "huluxia"; // 分配置表名称
|
||
var pushHeader = "【葫芦侠】";
|
||
var sheetNameConfig = "CONFIG"; // 总配置表
|
||
var sheetNamePush = "PUSH"; // 推送表名称
|
||
var sheetNameEmail = "EMAIL"; // 邮箱表
|
||
var flagSubConfig = 0; // 激活分配置工作表标志
|
||
var flagConfig = 0; // 激活主配置工作表标志
|
||
var flagPush = 0; // 激活推送工作表标志
|
||
var line = 21; // 指定读取从第2行到第line行的内容
|
||
var message = ""; // 待发送的消息
|
||
var messageArray = []; // 待发送的消息数据,每个元素都是某个账号的消息。目的是将不同用户消息分离,方便个性化消息配置
|
||
var messageOnlyError = 0; // 0为只推送失败消息,1则为推送成功消息。
|
||
var messageNickname = 0; // 1为推送位置标识(昵称/单元格Ax(昵称为空时)),0为不推送位置标识
|
||
var messageHeader = []; // 存放每个消息的头部,如:单元格A3。目的是分离附加消息和执行结果消息
|
||
var messagePushHeader = pushHeader; // 存放在总消息的头部,默认是pushHeader,如:【xxxx】
|
||
var version = 1 // 版本类型,自动识别并适配。默认为airscript 1.0,否则为2.0(Beta)
|
||
var separator = "##########MOKU##########" // 分割符,分割消息。可用于PUSH.js灵活推送
|
||
var maxMessageLength = 400; // 设置最大长度,超过这个长度则分片发送
|
||
var messageDistance = 100; // 消息距离,用于匹配100字符内最近的行
|
||
|
||
var jsonPush = [
|
||
{ name: "bark", key: "xxxxxx", flag: "0" },
|
||
{ name: "pushplus", key: "xxxxxx", flag: "0" },
|
||
{ name: "ServerChan", key: "xxxxxx", flag: "0" },
|
||
{ name: "email", key: "xxxxxx", flag: "0" },
|
||
{ name: "dingtalk", key: "xxxxxx", flag: "0" },
|
||
{ name: "discord", key: "xxxxxx", flag: "0" },
|
||
]; // 推送数据,flag=1则推送
|
||
var jsonEmail = {
|
||
server: "",
|
||
port: "",
|
||
sender: "",
|
||
authorizationCode: "",
|
||
}; // 有效邮箱配置
|
||
|
||
// =================青龙适配开始===================
|
||
|
||
qlSwitch = 0
|
||
|
||
// =================青龙适配结束===================
|
||
|
||
// =================金山适配开始===================
|
||
// airscript检测版本
|
||
function checkVesion(){
|
||
try{
|
||
let temp = Application.Range("A1").Text;
|
||
Application.Range("A1").Value = temp
|
||
console.log("😶🌫️ 检测到当前airscript版本为1.0,进行1.0适配")
|
||
}catch{
|
||
console.log("😶🌫️ 检测到当前airscript版本为2.0,进行2.0适配")
|
||
version = 2
|
||
}
|
||
}
|
||
|
||
// 推送相关
|
||
// 获取时间
|
||
function getDate(){
|
||
let currentDate = new Date();
|
||
currentDate = currentDate.getFullYear() + '/' + (currentDate.getMonth() + 1).toString() + '/' + currentDate.getDate().toString();
|
||
return currentDate
|
||
}
|
||
|
||
// 将消息写入CONFIG表中作为消息队列,之后统一发送
|
||
function writeMessageQueue(message){
|
||
// 当天时间
|
||
let todayDate = getDate()
|
||
flagConfig = ActivateSheet(sheetNameConfig); // 激活主配置表
|
||
// 主配置工作表存在
|
||
if (flagConfig == 1) {
|
||
console.log("✨ 开始将结果写入主配置表");
|
||
for (let i = 2; i <= 100; i++) {
|
||
if(version == 1){
|
||
// 找到指定的表行
|
||
if(Application.Range("A" + (i + 2)).Value == sheetNameSubConfig){
|
||
// 写入更新的时间
|
||
Application.Range("F" + (i + 2)).Value = todayDate
|
||
// 写入消息
|
||
Application.Range("G" + (i + 2)).Value = message
|
||
console.log("✨ 写入结果完成");
|
||
break;
|
||
}
|
||
}else{
|
||
// 找到指定的表行
|
||
if(Application.Range("A" + (i + 2)).Value2 == sheetNameSubConfig){
|
||
// 写入更新的时间
|
||
Application.Range("F" + (i + 2)).Value2 = todayDate
|
||
// 写入消息
|
||
Application.Range("G" + (i + 2)).Value2 = message
|
||
console.log("✨ 写入结果完成");
|
||
break;
|
||
}
|
||
}
|
||
|
||
}
|
||
}
|
||
}
|
||
|
||
// 总推送
|
||
function push(message) {
|
||
writeMessageQueue(message) // 将消息写入CONFIG表中
|
||
// if (message != "") {
|
||
// // message = messagePushHeader + message // 消息头最前方默认存放:【xxxx】
|
||
// let length = jsonPush.length;
|
||
// let name;
|
||
// let key;
|
||
// for (let i = 0; i < length; i++) {
|
||
// if (jsonPush[i].flag == 1) {
|
||
// name = jsonPush[i].name;
|
||
// key = jsonPush[i].key;
|
||
// if (name == "bark") {
|
||
// bark(message, key);
|
||
// } else if (name == "pushplus") {
|
||
// pushplus(message, key);
|
||
// } else if (name == "ServerChan") {
|
||
// serverchan(message, key);
|
||
// } else if (name == "email") {
|
||
// email(message);
|
||
// } else if (name == "dingtalk") {
|
||
// dingtalk(message, key);
|
||
// } else if (name == "discord") {
|
||
// discord(message, key);
|
||
// }
|
||
// }
|
||
// }
|
||
// } else {
|
||
// console.log("🍳 消息为空不推送");
|
||
// }
|
||
}
|
||
|
||
// 推送bark消息
|
||
function bark(message, key) {
|
||
if (key != "") {
|
||
message = messagePushHeader + message // 消息头最前方默认存放:【xxxx】
|
||
message = encodeURIComponent(message)
|
||
BARK_ICON = "https://s21.ax1x.com/2024/06/23/pkrUkfe.png"
|
||
let url = "https://api.day.app/" + key + "/" + message + "/" + "?icon=" + BARK_ICON;
|
||
// 若需要修改推送的分组,则将上面一行改为如下的形式
|
||
// let url = 'https://api.day.app/' + bark_id + "/" + message + "?group=分组名";
|
||
let resp = HTTP.get(url, {
|
||
headers: { "Content-Type": "application/x-www-form-urlencoded" },
|
||
});
|
||
sleep(5000);
|
||
}
|
||
}
|
||
|
||
// 推送pushplus消息
|
||
function pushplus(message, key) {
|
||
if (key != "") {
|
||
message = encodeURIComponent(message)
|
||
// url = "http://www.pushplus.plus/send?token=" + key + "&content=" + message;
|
||
url = "http://www.pushplus.plus/send?token=" + key + "&content=" + message + "&title=" + pushHeader; // 增加标题
|
||
let resp = HTTP.fetch(url, {
|
||
method: "get",
|
||
});
|
||
sleep(5000);
|
||
}
|
||
}
|
||
|
||
// 推送serverchan消息
|
||
function serverchan(message, key) {
|
||
if (key != "") {
|
||
url =
|
||
"https://sctapi.ftqq.com/" +
|
||
key +
|
||
".send" +
|
||
"?title=" + messagePushHeader +
|
||
"&desp=" +
|
||
message;
|
||
let resp = HTTP.fetch(url, {
|
||
method: "get",
|
||
});
|
||
sleep(5000);
|
||
}
|
||
}
|
||
|
||
// email邮箱推送
|
||
function email(message) {
|
||
var myDate = new Date(); // 创建一个表示当前时间的 Date 对象
|
||
var data_time = myDate.toLocaleDateString(); // 获取当前日期的字符串表示
|
||
let server = jsonEmail.server;
|
||
let port = parseInt(jsonEmail.port); // 转成整形
|
||
let sender = jsonEmail.sender;
|
||
let authorizationCode = jsonEmail.authorizationCode;
|
||
|
||
let mailer;
|
||
mailer = SMTP.login({
|
||
host: server,
|
||
port: port,
|
||
username: sender,
|
||
password: authorizationCode,
|
||
secure: true,
|
||
});
|
||
mailer.send({
|
||
from: pushHeader + "<" + sender + ">",
|
||
to: sender,
|
||
subject: pushHeader + " - " + data_time,
|
||
text: message,
|
||
});
|
||
// console.log("🍳 已发送邮件至:" + sender);
|
||
console.log("🍳 已发送邮件");
|
||
sleep(5000);
|
||
}
|
||
|
||
// 邮箱配置
|
||
function emailConfig() {
|
||
console.log("🍳 开始读取邮箱配置");
|
||
let length = jsonPush.length; // 因为此json数据可无序,因此需要遍历
|
||
let name;
|
||
for (let i = 0; i < length; i++) {
|
||
name = jsonPush[i].name;
|
||
if (name == "email") {
|
||
if (jsonPush[i].flag == 1) {
|
||
let flag = ActivateSheet(sheetNameEmail); // 激活邮箱表
|
||
// 邮箱表存在
|
||
// var email = {
|
||
// 'email':'', 'port':'', 'sender':'', 'authorizationCode':''
|
||
// } // 有效配置
|
||
if (flag == 1) {
|
||
console.log("🍳 开始读取邮箱表");
|
||
for (let i = 2; i <= 2; i++) {
|
||
// 从工作表中读取推送数据
|
||
jsonEmail.server = Application.Range("A" + i).Text;
|
||
jsonEmail.port = Application.Range("B" + i).Text;
|
||
jsonEmail.sender = Application.Range("C" + i).Text;
|
||
jsonEmail.authorizationCode = Application.Range("D" + i).Text;
|
||
if (Application.Range("A" + i).Text == "") {
|
||
// 如果为空行,则提前结束读取
|
||
break;
|
||
}
|
||
}
|
||
// console.log(jsonEmail)
|
||
}
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
// 推送钉钉机器人
|
||
function dingtalk(message, key) {
|
||
message = messagePushHeader + message // 消息头最前方默认存放:【xxxx】
|
||
let url = "https://oapi.dingtalk.com/robot/send?access_token=" + key;
|
||
let resp = HTTP.post(url, { msgtype: "text", text: { content: message } });
|
||
// console.log(resp.text())
|
||
sleep(5000);
|
||
}
|
||
|
||
// 推送Discord机器人
|
||
function discord(message, key) {
|
||
message = messagePushHeader + message // 消息头最前方默认存放:【xxxx】
|
||
let url = key;
|
||
let resp = HTTP.post(url, { content: message });
|
||
//console.log(resp.text())
|
||
sleep(5000);
|
||
}
|
||
|
||
// =================金山适配结束===================
|
||
// =================共用开始===================
|
||
// main() // 入口
|
||
|
||
// function main(){
|
||
checkVesion() // 版本检测,以进行不同版本的适配
|
||
|
||
flagConfig = ActivateSheet(sheetNameConfig); // 激活推送表
|
||
// 主配置工作表存在
|
||
if (flagConfig == 1) {
|
||
console.log("🍳 开始读取主配置表");
|
||
let name; // 名称
|
||
let onlyError;
|
||
let nickname;
|
||
for (let i = 2; i <= 100; i++) {
|
||
// 从工作表中读取推送数据
|
||
name = Application.Range("A" + i).Text;
|
||
onlyError = Application.Range("C" + i).Text;
|
||
nickname = Application.Range("D" + i).Text;
|
||
if (name == "") {
|
||
// 如果为空行,则提前结束读取
|
||
break; // 提前退出,提高效率
|
||
}
|
||
if (name == sheetNameSubConfig) {
|
||
if (onlyError == "是") {
|
||
messageOnlyError = 1;
|
||
console.log("🍳 只推送错误消息");
|
||
}
|
||
|
||
if (nickname == "是") {
|
||
messageNickname = 1;
|
||
console.log("🍳 单元格用昵称替代");
|
||
}
|
||
|
||
break; // 提前退出,提高效率
|
||
}
|
||
}
|
||
}
|
||
|
||
flagPush = ActivateSheet(sheetNamePush); // 激活推送表
|
||
// 推送工作表存在
|
||
if (flagPush == 1) {
|
||
console.log("🍳 开始读取推送工作表");
|
||
let pushName; // 推送类型
|
||
let pushKey;
|
||
let pushFlag; // 是否推送标志
|
||
for (let i = 2; i <= line; i++) {
|
||
// 从工作表中读取推送数据
|
||
pushName = Application.Range("A" + i).Text;
|
||
pushKey = Application.Range("B" + i).Text;
|
||
pushFlag = Application.Range("C" + i).Text;
|
||
if (pushName == "") {
|
||
// 如果为空行,则提前结束读取
|
||
break;
|
||
}
|
||
jsonPushHandle(pushName, pushFlag, pushKey);
|
||
}
|
||
// console.log(jsonPush)
|
||
}
|
||
|
||
// 邮箱配置函数
|
||
emailConfig();
|
||
|
||
flagSubConfig = ActivateSheet(sheetNameSubConfig); // 激活分配置表
|
||
if (flagSubConfig == 1) {
|
||
console.log("🍳 开始读取分配置表");
|
||
|
||
if(qlSwitch != 1){ // 金山文档
|
||
for (let i = 2; i <= line; i++) {
|
||
var cookie = Application.Range("A" + i).Text;
|
||
var exec = Application.Range("B" + i).Text;
|
||
if (cookie == "") {
|
||
// 如果为空行,则提前结束读取
|
||
break;
|
||
}
|
||
if (exec == "是") {
|
||
execHandle(cookie, i);
|
||
}
|
||
}
|
||
message = messageMerge()// 将消息数组融合为一条总消息
|
||
push(message); // 推送消息
|
||
}else{
|
||
for (let i = 2; i <= line; i++) {
|
||
var cookie = Application.Range("A" + i).Text;
|
||
var exec = Application.Range("B" + i).Text;
|
||
if (cookie == "") {
|
||
// 如果为空行,则提前结束读取
|
||
break;
|
||
}
|
||
if (exec == "是") {
|
||
console.log("🧑 开始执行用户:" + "1" )
|
||
execHandle(cookie, i);
|
||
break; // 只取一个
|
||
}
|
||
}
|
||
}
|
||
|
||
}
|
||
|
||
// }
|
||
|
||
// 激活工作表函数
|
||
function ActivateSheet(sheetName) {
|
||
let flag = 0;
|
||
try {
|
||
// 激活工作表
|
||
let sheet = Application.Sheets.Item(sheetName);
|
||
sheet.Activate();
|
||
console.log("🥚 激活工作表:" + sheet.Name);
|
||
flag = 1;
|
||
} catch {
|
||
flag = 0;
|
||
console.log("🍳 无法激活工作表,工作表可能不存在");
|
||
}
|
||
return flag;
|
||
}
|
||
|
||
// 对推送数据进行处理
|
||
function jsonPushHandle(pushName, pushFlag, pushKey) {
|
||
let length = jsonPush.length;
|
||
for (let i = 0; i < length; i++) {
|
||
if (jsonPush[i].name == pushName) {
|
||
if (pushFlag == "是") {
|
||
jsonPush[i].flag = 1;
|
||
jsonPush[i].key = pushKey;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
|
||
// 将消息数组融合为一条总消息
|
||
function messageMerge(){
|
||
// console.log(messageArray)
|
||
let message = ""
|
||
for(i=0; i<messageArray.length; i++){
|
||
if(messageArray[i] != "" && messageArray[i] != null)
|
||
{
|
||
message += "\n" + messageHeader[i] + messageArray[i] + ""; // 加上推送头
|
||
}
|
||
}
|
||
if(message != "")
|
||
{
|
||
console.log("✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨")
|
||
console.log(message + "\n") // 打印总消息
|
||
console.log("✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨✨")
|
||
}
|
||
return message
|
||
}
|
||
|
||
function sleep(d) {
|
||
for (var t = Date.now(); Date.now() - t <= d; );
|
||
}
|
||
|
||
// // 获取sign,返回小写
|
||
// function getsign(data) {
|
||
// var sign = Crypto.createHash("md5")
|
||
// .update(data, "utf8")
|
||
// .digest("hex")
|
||
// // .toUpperCase() // 大写
|
||
// .toString();
|
||
// return sign;
|
||
// }
|
||
|
||
// =================共用结束===================
|
||
|
||
|
||
// 获取sign
|
||
function getsign(cat_id, time_s) {
|
||
// 'cat_id' + cat_id + 'time' + time_s + 'fa1c28a5b62e79c3e63d9030b6142e4b'
|
||
var key =
|
||
"cat_id" +
|
||
cat_id +
|
||
"time" +
|
||
time_s +
|
||
"fa1c28a5b62e79c3e63d9030b6142e4b";
|
||
// console.log(key)
|
||
var sign = Crypto.createHash("md5")
|
||
.update(key, "utf8")
|
||
.digest("hex")
|
||
.toUpperCase()
|
||
.toString();
|
||
return sign;
|
||
}
|
||
|
||
// 获取10 位时间戳
|
||
function getts10() {
|
||
var ts = Math.round(new Date().getTime() / 1000).toString();
|
||
return ts;
|
||
}
|
||
|
||
// 获取13位时间戳
|
||
function getts13(){
|
||
// var ts = Math.round(new Date().getTime()/1000).toString() // 获取10 位时间戳
|
||
let ts = new Date().getTime()
|
||
return ts
|
||
}
|
||
|
||
// 具体的执行函数
|
||
function execHandle(cookie, pos) {
|
||
let messageSuccess = "";
|
||
let messageFail = "";
|
||
let messageName = "";
|
||
// 推送昵称或单元格,还是不推送位置标识
|
||
if (messageNickname == 1) {
|
||
// 推送昵称或单元格
|
||
messageName = Application.Range("C" + pos).Text;
|
||
if(messageName == "")
|
||
{
|
||
messageName = "单元格A" + pos + "";
|
||
}
|
||
}
|
||
|
||
posLabel = pos-2 ; // 存放下标,从0开始
|
||
messageHeader[posLabel] = "👨🚀 " + messageName
|
||
try {
|
||
// catid = [1, 2, 3, 4, 6, 15, 16, 21, 22, 23, 29, 34, 43, 44, 45, 56, 57, 58, 60, 63, 67, 68, 69, 70, 71, 76, 77, 81, 82, 84, 90, 92, 94, 96, 98, 102, 105, 107, 108, 110, 111, 115, 119, 120, 121]
|
||
catid = [1, 2, 3, 4, 6, 15, 16, 21, 22, 29, 43, 44, 45, 57, 58, 60, 63, 67, 68, 69, 70, 71, 76, 77, 81, 82, 84, 90, 92, 94, 96, 98, 102, 107, 108, 110, 111, 115, 119, 120, 121]
|
||
// catid = [1,56]
|
||
for (let i = 0; i < catid.length; i++) {
|
||
cat_id = String(catid[i])
|
||
time_s = String(getts13())
|
||
|
||
// 无需device_code版本
|
||
var url1 = "http://floor.huluxia.com/user/signin/ANDROID/4.1.8?platform=2&gkey=000000&app_version=4.2.0.5&versioncode=20141475&market_id=floor_web&_key=" + cookie + "&phone_brand_type=OP&cat_id=" + cat_id+ "&time=" + time_s
|
||
|
||
// console.log(url1)
|
||
// 将cat_id和time和不变的voice_code组合成一个字符串
|
||
sign = getsign(cat_id, time_s)
|
||
// console.log(sign)
|
||
|
||
// data = {
|
||
// "sign": sign // 动态sign
|
||
// }
|
||
headers = {
|
||
"Accept-Encoding": "identity",
|
||
"Host": "floor.huluxia.com",
|
||
'User-Agent': 'okhttp/3.8.1',
|
||
"Content-Type": "application/x-www-form-urlencoded",
|
||
}
|
||
|
||
resp = HTTP.fetch(url1 + "&sign=" + sign, {
|
||
method: "post",
|
||
headers: headers,
|
||
// data: data
|
||
});
|
||
// sign错误时:
|
||
// {"arg":"sign","code":101,"msg":"参数不能为空","title":{},"status":0}
|
||
// sign正确时:
|
||
// {"msg":"","continueDays":1,"experienceVal":5,"remainDaysToGetMoreExperiences":10,"nextExperience":10,"signin":1,"isFirstSignToday":1,"medal":{},"medalUrl":{},"ranking":0,"contrast":0,"status":1}
|
||
|
||
resp = resp.json();
|
||
console.log(resp)
|
||
// 状态:0为失败,1为成功。
|
||
status = resp['status']
|
||
if(status == 1)
|
||
{
|
||
continueDays = resp['continueDays'] // 连续签到天数
|
||
experienceVal = resp['experienceVal'] // 本次签到经验
|
||
// messageSuccess += '版块' + cat_id + '签到成功,获' + experienceVal + '经验,已签' + continueDays + '天'
|
||
content = "🎉 " + '版块' + cat_id + '签到成功,获' + experienceVal + '经验,已签' + continueDays + '天\n'
|
||
messageSuccess += content // ' 版块' + cat_id + '签到成功'
|
||
console.log(content)
|
||
}else
|
||
{
|
||
// {"title":{},"code":103,"msg":"未登录","status":0}
|
||
respmsg = resp['msg']
|
||
code = resp['code']
|
||
if(code == 103){
|
||
content = "❌ " + respmsg + "\n"
|
||
messageFail += content // " 板块" + cat_id + "签到失败," + msg + " ";
|
||
console.log(content);
|
||
break; // 不再执行
|
||
}else{
|
||
// {"msg":"当前板块不存在","code":104,"title":{},"status":0}
|
||
msg = resp['msg']
|
||
content = "📢 " + "板块" + cat_id + "签到失败," + respmsg + "\n"
|
||
messageFail += content // " 板块" + cat_id + "签到失败," + msg + " ";
|
||
console.log(content);
|
||
}
|
||
}
|
||
|
||
sleep(2000); // 降低请求频率
|
||
}
|
||
|
||
} catch {
|
||
messageFail += "❌ " + "失败\n";
|
||
}
|
||
|
||
sleep(2000);
|
||
if (messageOnlyError == 1) {
|
||
messageArray[posLabel] = messageFail;
|
||
} else {
|
||
if(messageFail != ""){
|
||
messageArray[posLabel] = messageFail + " " + messageSuccess;
|
||
}else{
|
||
messageArray[posLabel] = messageSuccess;
|
||
}
|
||
}
|
||
|
||
if(messageArray[posLabel] != "")
|
||
{
|
||
console.log(messageArray[posLabel]);
|
||
}
|
||
}
|