-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckin_qx.js
251 lines (236 loc) · 8.02 KB
/
checkin_qx.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
/*
本作品用于QuantumultX和Surge之间js执行方法的转换
您只需书写其中任一软件的js,然后在您的js最【前面】追加上此段js即可
无需担心影响执行问题,具体原理是将QX和Surge的方法转换为互相可调用的方法
尚未测试是否支持import的方式进行使用,因此暂未export
如有问题或您有更好的改进方案,请前往 https://github.com/sazs34/TaskConfig/issues 提交内容,或直接进行pull request
您也可直接在tg中联系@wechatu
*/
// #region 固定头部
let isQuantumultX = $task != undefined; //判断当前运行环境是否是qx
let isSurge = $httpClient != undefined; //判断当前运行环境是否是surge
// 判断request还是respons
// down方法重写
var $done = (obj={}) => {
var isRequest = typeof $request != "undefined";
if (isQuantumultX) {
return isRequest ? $done({}) : ""
}
if (isSurge) {
return isRequest ? $done({}) : $done()
}
}
// http请求
var $task = isQuantumultX ? $task : {};
var $httpClient = isSurge ? $httpClient : {};
// cookie读写
var $prefs = isQuantumultX ? $prefs : {};
var $persistentStore = isSurge ? $persistentStore : {};
// 消息通知
var $notify = isQuantumultX ? $notify : {};
var $notification = isSurge ? $notification : {};
// #endregion 固定头部
// #region 网络请求专用转换
if (isQuantumultX) {
var errorInfo = {
error: ''
};
$httpClient = {
get: (url, cb) => {
var urlObj;
if (typeof (url) == 'string') {
urlObj = {
url: url
}
} else {
urlObj = url;
if (urlObj.body && typeof (urlObj.body) != 'string') {
urlObj.body = JSON.stringify(urlObj.body);
if (urlObj.headers) {
urlObj.headers['Content-type'] = 'application/json; charset=utf-8';
} else {
urlObj.headers = {'Content-type' : 'application/json; charset=utf-8'};
}
}
}
$task.fetch(urlObj).then(response => {
cb(undefined, response, response.body)
}, reason => {
errorInfo.error = reason.error;
cb(errorInfo, response, '')
})
},
post: (url, cb) => {
var urlObj;
if (typeof (url) == 'string') {
urlObj = {
url: url
}
} else {
urlObj = url;
if (urlObj.body && typeof (urlObj.body) != 'string') {
urlObj.body = JSON.stringify(urlObj.body);
if (urlObj.headers) {
urlObj.headers['Content-type'] = 'application/json; charset=utf-8';
} else {
urlObj.headers = {'Content-type' : 'application/json; charset=utf-8'};
}
}
}
urlObj.method = 'POST';
$task.fetch(urlObj).then(response => {
cb(undefined, response, response.body)
}, reason => {
errorInfo.error = reason.error;
cb(errorInfo, response, '')
})
}
}
}
if (isSurge) {
$task = {
fetch: url => {
//为了兼容qx中fetch的写法,所以永不reject
return new Promise((resolve, reject) => {
if (url.method == 'POST') {
$httpClient.post(url, (error, response, data) => {
if (response) {
response.body = data;
resolve(response, {
error: error
});
} else {
resolve(null, {
error: error
})
}
})
} else {
$httpClient.get(url, (error, response, data) => {
if (response) {
response.body = data;
resolve(response, {
error: error
});
} else {
resolve(null, {
error: error
})
}
})
}
})
}
}
}
// #endregion 网络请求专用转换
// #region cookie操作
if (isQuantumultX) {
$persistentStore = {
read: key => {
return $prefs.valueForKey(key);
},
write: (val, key) => {
return $prefs.setValueForKey(val, key);
}
}
}
if (isSurge) {
$prefs = {
valueForKey: key => {
return $persistentStore.read(key);
},
setValueForKey: (val, key) => {
return $persistentStore.write(val, key);
}
}
}
// #endregion
// #region 消息通知
if (isQuantumultX) {
$notification = {
post: (title, subTitle, detail) => {
$notify(title, subTitle, detail);
}
}
}
if (isSurge) {
$notify = function (title, subTitle, detail) {
$notification.post(title, subTitle, detail);
}
}
// #endregion
/*
Check in for Surge by Neurogram
- 站点签到脚本
- 流量详情显示
- 多站签到支持
- 多类站点支持
使用说明:https://www.notion.so/neurogram/Check-in-0797ec9f9f3f445aae241d7762cf9d8b
关于作者
Telegram: Neurogram
GitHub: Neurogram-R
*/
const accounts = [
["泡面", "https://www.cordcloud.co/auth/login", "@qq.com", "13700065306"],
["布丁", "https://pud.kaolay.com/assets/auth/login.js", "qq.com", "13700065306"],
["CCCAT", "https://cccat.io/user/login.php", "qq.com", "13700065306"]
]
async function launch() {
for (var i in accounts) {
let title = accounts[i][0]
let url = accounts[i][1]
let email = accounts[i][2]
let password = accounts[i][3]
await login(url, email, password, title)
}
$done();
}
launch()
function login(url, email, password, title) {
let loginPath = url.indexOf("auth/login") != -1 ? "auth/login" : "user/_login.php"
let table = {
url: url.replace(/(auth|user)\/login(.php)*/g, "") + loginPath,
header: {
},
body: {
"email": email,
"passwd": password,
"rumber-me": "week"
}
}
$httpClient.post(table, async function (error, response, data) {
if (error) {
console.log(error);
$notification.post(title + '登录失败', error, "");
} else {
await checkin(url, title)
}
}
);
}
function checkin(url, title) {
let checkinPath = url.indexOf("auth/login") != -1 ? "user/checkin" : "user/_checkin.php"
$httpClient.post(url.replace(/(auth|user)\/login(.php)*/g, "") + checkinPath, async function (error, response, data) {
if (error) {
console.log(error);
$notification.post(title + '签到失败', error, "");
} else {
await dataResults(url, JSON.parse(data).msg, title)
}
});
}
function dataResults(url, checkinMsg, title) {
let userPath = url.indexOf("auth/login") != -1 ? "user" : "user/index.php"
$httpClient.get(url.replace(/(auth|user)\/login(.php)*/g, "") + userPath, function (error, response, data) {
var usedData = data.match(/(>*\s*已用(里程|流量|\s\d.+?%|:))[^B]+/)
if (usedData) {
usedData = usedData[0].match(/\d\S*(K|G|M|T)/)
var restData = data.match(/(>*\s*(剩余|可用)(里程|流量|\s\d.+?%|:))[^B]+/)
restData = restData[0].match(/\d\S*(K|G|M|T)/)
$notification.post(title, checkinMsg, "已用流量:" + usedData[0] + "B" + "\n剩余流量:" + restData[0] + "B");
} else {
$notification.post(title + '获取流量信息失败', "", "");
}
});
}