-
Notifications
You must be signed in to change notification settings - Fork 74
/
望潮.js
629 lines (605 loc) · 35.4 KB
/
望潮.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
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
/**
* cron "20 9,15,21 * * *" WangChao.js
* export WangChao="账号1&密码1 多账号用/隔开
*变量名大小写必须和上面一样,不然会提示账号不存在
望潮可改密码版(不要更新):https://www.123pan.com/s/TGXSVv-G9p8A.html
有问题联系3288588344
频道:https://pd.qq.com/s/672fku8ge
长期套餐大额流量电话卡办理地址:https://hk.yunhaoka.cn/#/pages/micro_store/index?agent_id=669709
*/
const $ = new Env('望潮')
let WangChao = ($.isNode() ? process.env.WangChao : $.getdata("WangChao")) || '';
let Utils = undefined;
let tenantId = '64'
let commonUa = ''
let deviceId = ''
let readCookie = ''
let lotteryCookie = ''
let accountId = ''
let clientId = '10019'
let signatureSalt = "FR*r!isE5W"
let sessionId = ''
let notice = ''
!(async () => {
await main();
})().catch((e) => {$.log(e)}).finally(() => {$.done({});});
async function main() {
console.log('\n频道:https://pd.qq.com/s/btv4bw7av\nTL库:https://github.com/3288588344/toulu.git\n免费高速流量卡推荐:https://hk.yunhaoka.cn/#/pages/micro_store/index?agent_id=669709\n')
if (!WangChao) {
console.log("先去boxjs填写账号密码")
await sendMsg('先去boxjs填写账号密码');
return
}
Utils = await loadUtils();
let arr = WangChao.split("/");
for (const item of arr) {
console.log("随机生成UA")
let randomUA = generateRandomUA();
ua = randomUA.ua;
commonUa = randomUA.commonUa;
deviceId = randomUA.uuid;
console.log(ua)
console.log(commonUa)
phone_number = item.split("&")[0]
password = item.split("&")[1]
console.log(`用户:${phone_number}开始任务`)
console.log("获取sessionId")
let initSession = await commonPost('/api/account/init');
sessionId = initSession.data.session.id;
console.log(sessionId)
console.log("获取signature_key")
let init = await initGet(`/web/init?client_id=${clientId}`)
signature_key = init.data.client.signature_key;
console.log(signature_key)
console.log("获取code")
let credential_auth = await passportPost('/web/oauth/credential_auth')
if (!credential_auth.data) {
console.log(credential_auth.message)
continue
}
let code = credential_auth.data.authorization_code.code;
console.log(code)
console.log("登录")
let login = await commonPost('/api/zbtxz/login',`check_token=&code=${code}&token=&type=-1&union_id=`)
console.log('登录成功')
accountId = login.data.session.account_id;
sessionId = login.data.session.id;
console.log("————————————")
console.log("开始签到")
let sign = await commonGet('/api/user_mumber/sign')
console.log(`签到获得:${sign.data.signExperience}积分`)
console.log("————————————")
console.log("开始任务")
let readFinish = true;
let likeFinish = true;
let shareFinish = true;
let taskList = await commonGet('/api/user_center/task?type=1¤t=1&size=20')
for (let task of taskList.data.list) {
console.log(`任务:${task.name}`)
if (task.completed == 1) {
console.log(`任务已完成`)
continue;
}
console.log(`任务进度:${task.finish_times}/${task.frequency}`)
if (task.name == '使用本地服务') {
for (let i = task.finish_times; i < task.frequency; i++) {
let doTask = await commonPost(`/api/user_mumber/doTask`,`memberType=6&member_type=6`)
console.log(`任务完成获得:${doTask.data.score_notify.integral}积分`)
}
}
if (task.name == '新闻资讯阅读') {
readFinish = false;
}
if (task.name == '新闻资讯点赞') {
likeFinish = false;
}
if (task.name == '分享资讯给好友') {
shareFinish = false;
}
}
if (!readFinish || !likeFinish || !shareFinish) {
let articleList = await commonGet('/api/article/channel_list?channel_id=639abec5e305b418fc469e3b&isDiFangHao=false&is_new=true&list_count=0&size=20')
for (const article of articleList.data.article_list) {
let articleId = article.id;
if (!readFinish) {
let read = await commonGet(`/api/article/read_time?channel_article_id=${articleId}&is_end=true&read_time=3051`)
if (read.data) {
console.log(`阅读成功`)
} else {
console.log(`文章已经阅读过了`)
}
}
if (!likeFinish) {
let like = await commonPost(`/api/favorite/like`,`action=true&id=${articleId}`)
if (like.data) {
console.log(`点赞成功`)
} else {
console.log(`文章已经点赞过了`)
}
}
if (!shareFinish) {
let share = await commonPost(`/api/user_mumber/doTask`,`memberType=3&member_type=3&target_id==${articleId}`)
if (share.data) {
console.log(`分享成功`)
} else {
console.log(`文章已经分享过了`)
}
}
}
}
console.log("————————————")
console.log('阅读抽奖')
readCookie = ''
readCookie = await loginGet(`/prod-api/user-read/app/login?id=${accountId}&sessionId=${sessionId}&deviceId=${deviceId}`)
console.log('获取登录cookie')
console.log(readCookie)
let readList = await readGet(`/prod-api/user-read/list/${getCurrentDate()}`)
if (readList.data.completedCount == readList.data.sum) {
console.log('阅读已经完成')
} else {
for (const article of readList.data.articleIsReadList) {
if (article.isRead) {
continue
}
let time = Date.now();
let signature = Utils.md5(`&&${article.id}&&TlGFQAOlCIVxnKopQnW&&${time}`)
let read = await readGet(`/prod-api/already-read/article?articid=${article.id}×tamp=${time}&signature=${signature}`);
console.log(read.msg)
}
}
let lotteryCount = await readGet(`/prod-api/user-read-count/count/${getCurrentDate()}`);
lotteryCookie = ''
lotteryCookie = await lotteryLoginGet(`/tzrb/user/loginWC?accountId=${accountId}&sessionId=${sessionId}`)
console.log('获取抽奖cookie')
console.log(lotteryCookie)
let priceList = await lotteryGet('/tzrb/awardUpgrade/list?activityId=67');
let priceArr = priceList.data;
for (let i = 0; i < lotteryCount.data; i++) {
let lottery = await lotteryPost(`/tzrb/userAwardRecordUpgrade/saveUpdate`,'activityId=67&sessionId=undefined&sig=undefined&token=undefined')
const index = priceArr.findIndex(e => e.id == lottery.data);
console.log(`抽奖获得:${priceArr[index].title}`)
}
console.log("————————————")
console.log("查询积分")
let detail = await commonGet('/api/user_mumber/account_detail')
console.log(`拥有积分:${detail.data.rst.total_integral}\n`)
notice += `用户:${phone_number} 积分:${detail.data.rst.total_integral}\n`
}
if (notice) {
await sendMsg(notice);
}
}
async function initGet(url) {
return new Promise(resolve => {
const options = {
url: `https://passport.tmuyun.com${url}`,
headers : {
'Connection': 'Keep-Alive',
'Cache-Control': 'no-cache',
'X-REQUEST-ID': generateUUID(),
'Accept-Encoding': 'gzip',
'user-agent': ua,
}
}
$.get(options, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
resolve(JSON.parse(data));
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
async function passportPost(url) {
let params = getBody();
return new Promise(resolve => {
const options = {
url: `https://passport.tmuyun.com${url}`,
headers : {
'Connection': 'Keep-Alive',
'X-REQUEST-ID': params.uuid,
'X-SIGNATURE': params.signature,
'Cache-Control': 'no-cache',
'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8',
'Accept-Encoding': 'gzip',
'user-agent': ua,
},
body: params.body
}
$.post(options, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
resolve(JSON.parse(data));
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
async function commonGet(url) {
let params = getParams(url);
return new Promise(resolve => {
const options = {
url: `https://vapp.taizhou.com.cn${url}`,
headers : {
'Connection': 'Keep-Alive',
'X-TIMESTAMP': params.time,
'X-SESSION-ID': sessionId,
'X-REQUEST-ID': params.uuid,
'X-SIGNATURE': params.signature,
'X-TENANT-ID': tenantId,
'X-ACCOUNT-ID': accountId,
'Cache-Control': 'no-cache',
'Accept-Encoding': 'gzip',
'user-agent': commonUa,
}
}
$.get(options, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
await $.wait(2000)
resolve(JSON.parse(data));
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
async function commonPost(url,body) {
let params = getParams(url);
return new Promise(resolve => {
const options = {
url: `https://vapp.taizhou.com.cn${url}`,
headers : {
'Connection': 'Keep-Alive',
'X-TIMESTAMP': params.time,
'X-SESSION-ID': sessionId,
'X-REQUEST-ID': params.uuid,
'X-SIGNATURE': params.signature,
'X-TENANT-ID': tenantId,
'X-ACCOUNT-ID': accountId,
'Cache-Control': 'no-cache',
'Accept-Encoding': 'gzip',
'user-agent': commonUa,
},
body: body
}
$.post(options, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
await $.wait(2000)
resolve(JSON.parse(data));
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
async function loginGet(url) {
return new Promise(resolve => {
const options = {
url: `https://xmt.taizhou.com.cn${url}`,
headers : {
'Connection': 'Keep-Alive',
'Accept': '*/*',
'Cookie': readCookie,
'Sec-Fetch-Site': 'same-origin',
'Sec-Fetch-Mode': 'cors',
'Sec-Fetch-Dest': 'empty',
'Referer': 'https://xmt.taizhou.com.cn/readingLuck-v1/',
'X-Requested-With': 'com.shangc.tiennews.taizhou',
'Accept-Encoding': 'gzip, deflate',
'Accept-Language': 'zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7',
'user-agent': 'Mozilla/5.0 (Linux; Android 11; 21091116AC Build/RP1A.200720.011; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/94.0.4606.85 Mobile Safari/537.36;xsb_wangchao;xsb_wangchao;6.0.2;native_app;6.10.0',
}
}
$.get(options, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
await $.wait(2000)
if ($.isNode()) {
readCookie = resp.headers['set-cookie'][0];
} else {
readCookie = resp.headers['set-cookie'] || resp.headers['Set-Cookie'];
}
readCookie = readCookie.split(';')[0];
resolve(readCookie);
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
async function readGet(url) {
return new Promise(resolve => {
const options = {
url: `https://xmt.taizhou.com.cn${url}`,
headers : {
'Connection': 'Keep-Alive',
'Accept': '*/*',
'Cookie': readCookie,
'Sec-Fetch-Site': 'same-origin',
'Sec-Fetch-Mode': 'cors',
'Sec-Fetch-Dest': 'empty',
'Referer': 'https://xmt.taizhou.com.cn/readingLuck-v1/',
'X-Requested-With': 'com.shangc.tiennews.taizhou',
'Accept-Encoding': 'gzip, deflate',
'Accept-Language': 'zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7',
'user-agent': 'Mozilla/5.0 (Linux; Android 11; 21091116AC Build/RP1A.200720.011; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/94.0.4606.85 Mobile Safari/537.36;xsb_wangchao;xsb_wangchao;6.0.2;native_app;6.10.0',
}
}
$.get(options, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
await $.wait(2000)
resolve(JSON.parse(data));
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
async function lotteryLoginGet(url) {
return new Promise(resolve => {
const options = {
url: `https://srv-app.taizhou.com.cn${url}`,
headers : {
'Connection': 'Keep-Alive',
'Accept': '*/*',
'Sec-Fetch-Site': 'same-origin',
'Sec-Fetch-Mode': 'cors',
'Sec-Fetch-Dest': 'empty',
'cookie': lotteryCookie,
'Referer': 'https://xmt.taizhou.com.cn/readingLuck-v1/',
'X-Requested-With': 'com.shangc.tiennews.taizhou',
'Accept-Encoding': 'gzip, deflate',
'Accept-Language': 'zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7',
'user-agent': 'Mozilla/5.0 (Linux; Android 11; 21091116AC Build/RP1A.200720.011; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/94.0.4606.85 Mobile Safari/537.36;xsb_wangchao;xsb_wangchao;6.0.2;native_app;6.10.0',
}
}
$.get(options, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
await $.wait(2000)
if ($.isNode()) {
lotteryCookie = resp.headers['set-cookie'][0];
} else {
lotteryCookie = resp.headers['set-cookie'] || resp.headers['Set-Cookie'];
}
lotteryCookie = lotteryCookie.split(';')[0];
resolve(lotteryCookie);
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
async function lotteryGet(url) {
return new Promise(resolve => {
const options = {
url: `https://srv-app.taizhou.com.cn${url}`,
headers : {
'Connection': 'Keep-Alive',
'Accept': '*/*',
'Sec-Fetch-Site': 'same-origin',
'Sec-Fetch-Mode': 'cors',
'Sec-Fetch-Dest': 'empty',
'cookie': lotteryCookie,
'Referer': 'https://xmt.taizhou.com.cn/readingLuck-v1/',
'X-Requested-With': 'com.shangc.tiennews.taizhou',
'Accept-Encoding': 'gzip, deflate',
'Accept-Language': 'zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7',
'user-agent': 'Mozilla/5.0 (Linux; Android 11; 21091116AC Build/RP1A.200720.011; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/94.0.4606.85 Mobile Safari/537.36;xsb_wangchao;xsb_wangchao;6.0.2;native_app;6.10.0',
}
}
$.get(options, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
await $.wait(2000)
resolve(JSON.parse(data));
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
async function lotteryPost(url,body) {
return new Promise(resolve => {
const options = {
url: `https://srv-app.taizhou.com.cn${url}`,
headers : {
'Connection': 'Keep-Alive',
'Accept': '*/*',
'Content-type': 'application/x-www-form-urlencoded',
'Sec-Fetch-Site': 'same-origin',
'Sec-Fetch-Mode': 'cors',
'Sec-Fetch-Dest': 'empty',
'cookie': lotteryCookie,
'Referer': 'https://xmt.taizhou.com.cn/readingLuck-v1/',
'X-Requested-With': 'com.shangc.tiennews.taizhou',
'Accept-Encoding': 'gzip, deflate',
'Accept-Language': 'zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7',
'user-agent': 'Mozilla/5.0 (Linux; Android 11; 21091116AC Build/RP1A.200720.011; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/94.0.4606.85 Mobile Safari/537.36;xsb_wangchao;xsb_wangchao;6.0.2;native_app;6.10.0',
},
body: body
}
$.post(options, async (err, resp, data) => {
try {
if (err) {
console.log(`${JSON.stringify(err)}`)
console.log(`${$.name} API请求失败,请检查网路重试`)
} else {
await $.wait(2000)
resolve(JSON.parse(data));
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve();
}
})
})
}
function getBody() {
const key = 'MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQD6XO7e9YeAOs+cFqwa7ETJ+WXizPqQeXv68i5vqw9pFREsrqiBTRcg7wB0RIp3rJkDpaeVJLsZqYm5TW7FWx/iOiXFc+zCPvaKZric2dXCw27EvlH5rq+zwIPDAJHGAfnn1nmQH7wR3PCatEIb8pz5GFlTHMlluw4ZYmnOwg+thwIDAQAB';
const encryptor = new (Utils.loadJSEncrypt());
encryptor.setPublicKey(key);
password = encryptor.encrypt(password);
let uuid = generateUUID();
let body = `client_id=${clientId}&password=${password}&phone_number=${phone_number}`;
const str = `post%%/web/oauth/credential_auth?${body}%%${uuid}%%`;
body = `client_id=${clientId}&password=${encodeURIComponent(password)}&phone_number=${phone_number}`;
CryptoJS = Utils.createCryptoJS();
const hash = CryptoJS.HmacSHA256(str, signature_key);
let signature = CryptoJS.enc.Hex.stringify(hash);
return {"uuid":uuid,"signature":signature,"body":body};
}
function getParams(url) {
let uuid = generateUUID();
let time = Date.now();
if (url.indexOf('?') > 0) {
url = url.substring(0, url.indexOf('?'));
}
CryptoJS = Utils.createCryptoJS();
let signature = CryptoJS.SHA256(`${url}&&${sessionId}&&${uuid}&&${time}&&${signatureSalt}&&${tenantId}`).toString();
return {"uuid":uuid,"time":time,"signature":signature};
}
function generateUUID() {
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function(c) {
const r = (Math.random() * 16) | 0;
const v = c === 'x' ? r : (r & 0x3) | 0x8;
return v.toString(16);
});
}
function getCurrentDate() {
const currentDate = new Date();
const year = currentDate.getFullYear();
const month = String(currentDate.getMonth() + 1).padStart(2, '0');
const day = String(currentDate.getDate()).padStart(2, '0');
return `${year}${month}${day}`;
}
function generateRandomUA() {
const version = "6.0.2";
const uuid = generateUUID();
const deviceIds = [
"M1903F2A",
"M2001J2E",
"M2001J2C",
"M2001J1E",
"M2001J1C",
"M2002J9E",
"M2011K2C",
"M2102K1C",
"M2101K9C",
"2107119DC",
"2201123C",
"2112123AC",
"2201122C",
"2211133C",
"2210132C",
"2304FPN6DC",
"23127PN0CC",
"24031PN0DC",
"23090RA98C",
"2312DRA50C",
"2312CRAD3C",
"2312DRAABC",
"22101316UCP",
"22101316C"
];
const deviceId = getRandomElement(deviceIds);
const device = "Xiaomi " + deviceId;
const os = "Android";
const osVersion = "11";
const osType = "xiaomi";
const appVersion = "6.10.0";
let ua = `${os.toUpperCase()};${osVersion};${clientId};${version};1.0;null;${deviceId}`
let commonUa = `${version};${uuid};${device};${os};${osVersion};${osType};${appVersion}`
return {"ua": ua, "commonUa": commonUa,"uuid":uuid};
}
function getRandomElement(arr) {
return arr[Math.floor(Math.random() * arr.length)];
}
async function loadUtils() {
let code = $.getdata('Utils_Code') || '';
if (code && Object.keys(code).length) {
console.log(`✅ ${$.name}: 缓存中存在Utils代码, 跳过下载`)
eval(code)
return creatUtils();
}
console.log(`🚀 ${$.name}: 开始下载Utils代码`)
return new Promise(async (resolve) => {
$.getScript(
'https://raw.githubusercontent.com/3288588344/toulu/main/Utils.js'
).then((fn) => {
$.setdata(fn, "Utils_Code")
eval(fn)
console.log(`✅ Utils加载成功, 请继续`)
resolve(creatUtils())
})
})
}
async function sendMsg(message) {
if ($.isNode()) {
let notify = ''
try {
notify = require('./sendNotify');
} catch (e) {
notify = require("../sendNotify");
}
await notify.sendNotify($.name, message);
} else {
$.msg($.name, '', message)
}
}
// prettier-ignore
function Env(t,e){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,o)=>{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.logLevels={debug:0,info:1,warn:2,error:3},this.logLevelPrefixs={debug:"[DEBUG] ",info:"[INFO] ",warn:"[WARN] ",error:"[ERROR] "},this.logLevel="info",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.encoding="utf-8",this.startTime=(new Date).getTime(),Object.assign(this,e),this.log("",`🔔${this.name}, 开始!`)}getEnv(){return"undefined"!=typeof $environment&&$environment["surge-version"]?"Surge":"undefined"!=typeof $environment&&$environment["stash-version"]?"Stash":"undefined"!=typeof module&&module.exports?"Node.js":"undefined"!=typeof $task?"Quantumult X":"undefined"!=typeof $loon?"Loon":"undefined"!=typeof $rocket?"Shadowrocket":void 0}isNode(){return"Node.js"===this.getEnv()}isQuanX(){return"Quantumult X"===this.getEnv()}isSurge(){return"Surge"===this.getEnv()}isLoon(){return"Loon"===this.getEnv()}isShadowrocket(){return"Shadowrocket"===this.getEnv()}isStash(){return"Stash"===this.getEnv()}toObj(t,e=null){try{return JSON.parse(t)}catch{return e}}toStr(t,e=null,...s){try{return JSON.stringify(t,...s)}catch{return e}}getjson(t,e){let s=e;if(this.getdata(t))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 o=this.getdata("@chavy_boxjs_userCfgs.httpapi_timeout");o=o?1*o:20,o=e&&e.timeout?e.timeout:o;const[r,a]=i.split("@"),n={url:`http://${a}/v1/scripting/evaluate`,body:{script_text:t,mock_type:"cron",timeout:o},headers:{"X-Key":r,Accept:"*/*"},timeout:o};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),o=JSON.stringify(this.data);s?this.fs.writeFileSync(t,o):i?this.fs.writeFileSync(e,o):this.fs.writeFileSync(t,o)}}lodash_get(t,e,s){const i=e.replace(/\[(\d+)\]/g,".$1").split(".");let o=t;for(const t of i)if(o=Object(o)[t],void 0===o)return s;return o}lodash_set(t,e,s){return Object(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),o=s?this.getval(s):"";if(o)try{const t=JSON.parse(o);e=t?this.lodash_get(t,i,""):e}catch(t){e=""}}return e}setdata(t,e){let s=!1;if(/^@/.test(e)){const[,i,o]=/^@(.*?)\.(.*?)$/.exec(e),r=this.getval(i),a=i?"null"===r?null:r||"{}":"{}";try{const e=JSON.parse(a);this.lodash_set(e,o,t),s=this.setval(JSON.stringify(e),i)}catch(e){const r={};this.lodash_set(r,o,t),s=this.setval(JSON.stringify(r),i)}}else s=this.setval(t,e);return s}getval(t){switch(this.getEnv()){case"Surge":case"Loon":case"Stash":case"Shadowrocket":return $persistentStore.read(t);case"Quantumult X":return $prefs.valueForKey(t);case"Node.js":return this.data=this.loaddata(),this.data[t];default:return this.data&&this.data[t]||null}}setval(t,e){switch(this.getEnv()){case"Surge":case"Loon":case"Stash":case"Shadowrocket":return $persistentStore.write(t,e);case"Quantumult X":return $prefs.setValueForKey(t,e);case"Node.js":return this.data=this.loaddata(),this.data[e]=t,this.writedata(),!0;default:return this.data&&this.data[e]||null}}initGotEnv(t){this.got=this.got?this.got:require("got"),this.cktough=this.cktough?this.cktough:require("tough-cookie"),this.ckjar=this.ckjar?this.ckjar:new this.cktough.CookieJar,t&&(t.headers=t.headers?t.headers:{},t&&(t.headers=t.headers?t.headers:{},void 0===t.headers.cookie&&void 0===t.headers.Cookie&&void 0===t.cookieJar&&(t.cookieJar=this.ckjar)))}get(t,e=(()=>{})){switch(t.headers&&(delete t.headers["Content-Type"],delete t.headers["Content-Length"],delete t.headers["content-type"],delete t.headers["content-length"]),t.params&&(t.url+="?"+this.queryStr(t.params)),void 0===t.followRedirect||t.followRedirect||((this.isSurge()||this.isLoon())&&(t["auto-redirect"]=!1),this.isQuanX()&&(t.opts?t.opts.redirection=!1:t.opts={redirection:!1})),this.getEnv()){case"Surge":case"Loon":case"Stash":case"Shadowrocket":default:this.isSurge()&&this.isNeedRewrite&&(t.headers=t.headers||{},Object.assign(t.headers,{"X-Surge-Skip-Scripting":!1})),$httpClient.get(t,((t,s,i)=>{!t&&s&&(s.body=i,s.statusCode=s.status?s.status:s.statusCode,s.status=s.statusCode),e(t,s,i)}));break;case"Quantumult X":this.isNeedRewrite&&(t.opts=t.opts||{},Object.assign(t.opts,{hints:!1})),$task.fetch(t).then((t=>{const{statusCode:s,statusCode:i,headers:o,body:r,bodyBytes:a}=t;e(null,{status:s,statusCode:i,headers:o,body:r,bodyBytes:a},r,a)}),(t=>e(t&&t.error||"UndefinedError")));break;case"Node.js":let s=require("iconv-lite");this.initGotEnv(t),this.got(t).on("redirect",((t,e)=>{try{if(t.headers["set-cookie"]){const s=t.headers["set-cookie"].map(this.cktough.Cookie.parse).toString();s&&this.ckjar.setCookieSync(s,null),e.cookieJar=this.ckjar}}catch(t){this.logErr(t)}})).then((t=>{const{statusCode:i,statusCode:o,headers:r,rawBody:a}=t,n=s.decode(a,this.encoding);e(null,{status:i,statusCode:o,headers:r,rawBody:a,body:n},n)}),(t=>{const{message:i,response:o}=t;e(i,o,o&&s.decode(o.rawBody,this.encoding))}));break}}post(t,e=(()=>{})){const s=t.method?t.method.toLocaleLowerCase():"post";switch(t.body&&t.headers&&!t.headers["Content-Type"]&&!t.headers["content-type"]&&(t.headers["content-type"]="application/x-www-form-urlencoded"),t.headers&&(delete t.headers["Content-Length"],delete t.headers["content-length"]),void 0===t.followRedirect||t.followRedirect||((this.isSurge()||this.isLoon())&&(t["auto-redirect"]=!1),this.isQuanX()&&(t.opts?t.opts.redirection=!1:t.opts={redirection:!1})),this.getEnv()){case"Surge":case"Loon":case"Stash":case"Shadowrocket":default:this.isSurge()&&this.isNeedRewrite&&(t.headers=t.headers||{},Object.assign(t.headers,{"X-Surge-Skip-Scripting":!1})),$httpClient[s](t,((t,s,i)=>{!t&&s&&(s.body=i,s.statusCode=s.status?s.status:s.statusCode,s.status=s.statusCode),e(t,s,i)}));break;case"Quantumult X":t.method=s,this.isNeedRewrite&&(t.opts=t.opts||{},Object.assign(t.opts,{hints:!1})),$task.fetch(t).then((t=>{const{statusCode:s,statusCode:i,headers:o,body:r,bodyBytes:a}=t;e(null,{status:s,statusCode:i,headers:o,body:r,bodyBytes:a},r,a)}),(t=>e(t&&t.error||"UndefinedError")));break;case"Node.js":let i=require("iconv-lite");this.initGotEnv(t);const{url:o,...r}=t;this.got[s](o,r).then((t=>{const{statusCode:s,statusCode:o,headers:r,rawBody:a}=t,n=i.decode(a,this.encoding);e(null,{status:s,statusCode:o,headers:r,rawBody:a,body:n},n)}),(t=>{const{message:s,response:o}=t;e(s,o,o&&i.decode(o.rawBody,this.encoding))}));break}}time(t,e=null){const s=e?new Date(e):new Date;let i={"M+":s.getMonth()+1,"d+":s.getDate(),"H+":s.getHours(),"m+":s.getMinutes(),"s+":s.getSeconds(),"q+":Math.floor((s.getMonth()+3)/3),S:s.getMilliseconds()};/(y+)/.test(t)&&(t=t.replace(RegExp.$1,(s.getFullYear()+"").substr(4-RegExp.$1.length)));for(let e in i)new RegExp("("+e+")").test(t)&&(t=t.replace(RegExp.$1,1==RegExp.$1.length?i[e]:("00"+i[e]).substr((""+i[e]).length)));return t}queryStr(t){let e="";for(const s in t){let i=t[s];null!=i&&""!==i&&("object"==typeof i&&(i=JSON.stringify(i)),e+=`${s}=${i}&`)}return e=e.substring(0,e.length-1),e}msg(e=t,s="",i="",o={}){const r=t=>{const{$open:e,$copy:s,$media:i,$mediaMime:o}=t;switch(typeof t){case void 0:return t;case"string":switch(this.getEnv()){case"Surge":case"Stash":default:return{url:t};case"Loon":case"Shadowrocket":return t;case"Quantumult X":return{"open-url":t};case"Node.js":return}case"object":switch(this.getEnv()){case"Surge":case"Stash":case"Shadowrocket":default:{const r={};let a=t.openUrl||t.url||t["open-url"]||e;a&&Object.assign(r,{action:"open-url",url:a});let n=t["update-pasteboard"]||t.updatePasteboard||s;if(n&&Object.assign(r,{action:"clipboard",text:n}),i){let t,e,s;if(i.startsWith("http"))t=i;else if(i.startsWith("data:")){const[t]=i.split(";"),[,o]=i.split(",");e=o,s=t.replace("data:","")}else{e=i,s=(t=>{const e={JVBERi0:"application/pdf",R0lGODdh:"image/gif",R0lGODlh:"image/gif",iVBORw0KGgo:"image/png","/9j/":"image/jpg"};for(var s in e)if(0===t.indexOf(s))return e[s];return null})(i)}Object.assign(r,{"media-url":t,"media-base64":e,"media-base64-mime":o??s})}return Object.assign(r,{"auto-dismiss":t["auto-dismiss"],sound:t.sound}),r}case"Loon":{const s={};let o=t.openUrl||t.url||t["open-url"]||e;o&&Object.assign(s,{openUrl:o});let r=t.mediaUrl||t["media-url"];return i?.startsWith("http")&&(r=i),r&&Object.assign(s,{mediaUrl:r}),console.log(JSON.stringify(s)),s}case"Quantumult X":{const o={};let r=t["open-url"]||t.url||t.openUrl||e;r&&Object.assign(o,{"open-url":r});let a=t["media-url"]||t.mediaUrl;i?.startsWith("http")&&(a=i),a&&Object.assign(o,{"media-url":a});let n=t["update-pasteboard"]||t.updatePasteboard||s;return n&&Object.assign(o,{"update-pasteboard":n}),console.log(JSON.stringify(o)),o}case"Node.js":return}default:return}};if(!this.isMute)switch(this.getEnv()){case"Surge":case"Loon":case"Stash":case"Shadowrocket":default:$notification.post(e,s,i,r(o));break;case"Quantumult X":$notify(e,s,i,r(o));break;case"Node.js":break}if(!this.isMuteLog){let t=["","==============📣系统通知📣=============="];t.push(e),s&&t.push(s),i&&t.push(i),console.log(t.join("\n")),this.logs=this.logs.concat(t)}}debug(...t){this.logLevels[this.logLevel]<=this.logLevels.debug&&(t.length>0&&(this.logs=[...this.logs,...t]),console.log(`${this.logLevelPrefixs.debug}${t.map((t=>t??String(t))).join(this.logSeparator)}`))}info(...t){this.logLevels[this.logLevel]<=this.logLevels.info&&(t.length>0&&(this.logs=[...this.logs,...t]),console.log(`${this.logLevelPrefixs.info}${t.map((t=>t??String(t))).join(this.logSeparator)}`))}warn(...t){this.logLevels[this.logLevel]<=this.logLevels.warn&&(t.length>0&&(this.logs=[...this.logs,...t]),console.log(`${this.logLevelPrefixs.warn}${t.map((t=>t??String(t))).join(this.logSeparator)}`))}error(...t){this.logLevels[this.logLevel]<=this.logLevels.error&&(t.length>0&&(this.logs=[...this.logs,...t]),console.log(`${this.logLevelPrefixs.error}${t.map((t=>t??String(t))).join(this.logSeparator)}`))}log(...t){t.length>0&&(this.logs=[...this.logs,...t]),console.log(t.map((t=>t??String(t))).join(this.logSeparator))}logErr(t,e){switch(this.getEnv()){case"Surge":case"Loon":case"Stash":case"Shadowrocket":case"Quantumult X":default:this.log("",`❗️${this.name}, 错误!`,e,t);break;case"Node.js":this.log("",`❗️${this.name}, 错误!`,e,void 0!==t.message?t.message:t,t.stack);break}}wait(t){return new Promise((e=>setTimeout(e,t)))}done(t={}){const e=((new Date).getTime()-this.startTime)/1e3;switch(this.log("",`🔔${this.name}, 结束! 🕛 ${e} 秒`),this.log(),this.getEnv()){case"Surge":case"Loon":case"Stash":case"Shadowrocket":case"Quantumult X":default:$done(t);break;case"Node.js":process.exit(1)}}}(t,e)}