forked from BeaCox/pediy-CheckIn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
120 lines (113 loc) · 3.73 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
const axios = require('axios');
const PUSHPLUS = process.env.PUSHPLUS;
const COOKIE = process.env.COOKIE;
const checkCOOKIE = async () => {
if (!COOKIE.length) {
console.error('不存在 COOKIE ,请重新检查');
return false;
}
const pairs = COOKIE.split(/\s*;\s*/);
for (const pairStr of pairs) {
if (!pairStr.includes('=')) {
console.error(`存在不正确的 COOKIE ,请重新检查`);
return false;
}
}
return true;
}
const checkIn = async () => {
const options = {
method: 'post',
url: `https://bbs.kanxue.com/user-signin.htm`,
headers: {
'User-Agent': 'HD1910(Android/7.1.2) (pediy.UNICFBC0DD/1.0.5) Weex/0.26.0 720x1280',
'Cookie': COOKIE,
'Connection': 'keep-alive',
'Accept': '*/*'
}
};
return axios(options).catch(error => {
if (error.response) {
// 请求成功发出且服务器也响应了状态码,但状态代码超出了 2xx 的范围
console.log(error.response.data);
console.log(error.response.status);
console.log(error.response.headers);
} else if (error.request) {
// 请求已经成功发起,但没有收到响应
// `error.request` 在浏览器中是 XMLHttpRequest 的实例,
// 而在node.js中是 http.ClientRequest 的实例
console.log(error.request);
} else {
// 发送请求时出了点问题
console.log('Error', error.message);
}
console.log(error.config);
})
};
const sendMsg = async (msg, code) => {
var token = PUSHPLUS;
if (!token) {
return;
}
if (code == 0){
msg = `🎉🎉🎉签到成功,获得${msg}雪币`;
}
else{
msg = `📢您已签到,无需重复签到`;
}
const data = {
token,
title: '看雪论坛签到',
content: msg,
template: 'json'
};
console.log('pushData', {
...data,
token: data.token.replace(/^(.{1,4})(.*)(.{4,})$/, (_, a, b, c) => a + b.replace(/./g, '*') + c)
});
return axios({
method: 'post',
url: `http://www.pushplus.plus/send`,
data
}).catch((error) => {
if (error.response) {
// 请求成功发出且服务器也响应了状态码,但状态代码超出了 2xx 的范围
console.warn(`PUSHPLUS推送 请求失败,状态码:${error.response.status}`);
} else if (error.request) {
// 请求已经成功发起,但没有收到响应
console.warn('PUSHPLUS推送 网络错误');
} else {
// 发送请求时出了点问题
console.log('Axios Error', error.message);
}
});
};
const start = async () => {
try {
const checkCOOKIE_result = await checkCOOKIE();
if (!checkCOOKIE_result) return;
else {
console.log('COOKIE检查通过');
}
const checkIn_result = await checkIn();
const message = checkIn_result?.data?.message;
const code = checkIn_result?.data?.code;
if (code == 0 || message == '您今日已签到成功') {
if (code == 0) console.log('checkin成功');
else console.log(message);
if (!PUSHPLUS.length) {
console.warn('不存在 PUSHPLUS ,请重新检查');
}
else {
const pushResult = (await sendMsg(message, code))?.data?.msg;
console.log('PUSHPLUS 推送结果', pushResult);
}
}
else{
console.error(message);
}
} catch (error) {
console.error(error);
}
}
start();