forked from doio/Surge-Script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweibo_main.js
693 lines (617 loc) · 24.7 KB
/
weibo_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
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
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
const version = 'v0717.1';
const $ = new Env("微博去广告");
let storeMainConfig = $.getdata('mainConfig');
let storeItemMenusConfig = $.getdata('itemMenusConfig');
//主要的选项配置
const mainConfig = storeMainConfig ? JSON.parse(storeMainConfig) : {
isDebug: false, //开启调试,会打印运行中部分日志
//个人中心配置,其中多数是可以直接在更多功能里直接移除
removeHomeVip: true, //个人中心的vip栏
removeHomeCreatorTask: true, //个人中心创作者中心下方的轮播图
//微博详情页配置
removeRelate: true, //相关推荐
removeGood: true, //微博主好物种草
removeFollow: true, //关注博主
modifyMenus: true, //编辑上下文菜单
removeRelateItem: false, //评论区相关内容
removeRecommendItem: true, //评论区推荐内容
removeRewardItem: false, //微博详情页打赏模块
removeLiveMedia: true, //首页顶部直播
removeNextVideo: false, //关闭自动播放下一个视频
removePinedTrending: true, //删除热搜列表置顶条目
removeInterestFriendInTopic: false, //超话:超话里的好友
removeInterestTopic: false, //超话:可能感兴趣的超话 + 好友关注
removeInterestUser: false, //用户页:可能感兴趣的人
removeLvZhou: false, //绿洲模块
profileSkin1: null, //用户页:自定义图标1
profileSkin2: null, //用户页:自定义图标2
tabIconVersion: 0, //配置大于100的数
tabIconPath: '' //配置图标路径
}
//菜单配置
const itemMenusConfig = storeItemMenusConfig ? JSON.parse(storeItemMenusConfig) : {
creator_task:false, //转发任务
mblog_menus_custom:false, //寄微博
mblog_menus_video_later:true, //可能是稍后再看?没出现过
mblog_menus_comment_manager:true, //评论管理
mblog_menus_avatar_widget:false, //头像挂件
mblog_menus_card_bg: false, //卡片背景
mblog_menus_long_picture:true, //生成长图
mblog_menus_delete:true, //删除
mblog_menus_edit:true, //编辑
mblog_menus_edit_history:true, //编辑记录
mblog_menus_edit_video:true, //编辑视频
mblog_menus_sticking:true, //置顶
mblog_menus_open_reward:true, //赞赏
mblog_menus_novelty:false, //新鲜事投稿
mblog_menus_favorite:true, //收藏
mblog_menus_promote:true, //推广
mblog_menus_modify_visible:true, //设置分享范围
mblog_menus_copy_url:true, //复制链接
mblog_menus_follow:true, //关注
mblog_menus_video_feedback:true, //播放反馈
mblog_menus_shield:true, //屏蔽
mblog_menus_report:true, //投诉
mblog_menus_apeal:true, //申诉
mblog_menus_home:true //返回首页
}
const modifyCardsUrls = ['/cardlist', 'video/community_tab', '/searchall'];
const modifyStatusesUrls = ['statuses/friends/timeline', 'statuses/unread_friends_timeline', 'statuses/unread_hot_timeline', 'groups/timeline'];
const otherUrls = {
'/profile/me': 'removeHome', //个人页模块
'/statuses/extend': 'itemExtendHandler', //微博详情页
'/video/remind_info': 'removeVideoRemind', //tab2菜单上的假通知
'/checkin/show': 'removeCheckin', //签到任务
'/live/media_homelist': 'removeMediaHomelist', //首页直播
'/comments/build_comments': 'removeComments', //微博详情页评论区相关内容
'/container/get_item': 'containerHandler', //列表相关
'/profile/container_timeline': 'userHandler', //用户主页
'/video/tiny_stream_video_list': 'nextVideoHandler', //取消自动播放下一个视频
'/2/statuses/video_mixtimeline': 'nextVideoHandler',
'/!/client/light_skin': 'tabSkinHandler',
'/littleskin/preview': 'skinPreviewHandler',
'/search/finder': 'removeSearchMain',
'/search/container_timeline': 'removeSearch',
'/search/container_discover': 'removeSearch',
'/2/messageflow': 'removeMsgAd',
'/2/page?': 'removePage', //超话签到的按钮 /2/page/button 加?区别
'/statuses/container_timeline_topic': 'topicHandler', //超话tab
'/statuses/container_timeline?': 'removeMain', //首页
'/statuses/container_timeline_unread': 'removeMain', //首页
}
function getModifyMethod(url) {
for (const s of modifyCardsUrls) {
if(url.indexOf(s) > -1) {
return 'removeCards';
}
}
for (const s of modifyStatusesUrls) {
if(url.indexOf(s) > -1) {
return 'removeTimeLine';
}
}
for(const [path, method] of Object.entries(otherUrls)) {
if(url.indexOf(path) > -1) {
return method;
}
}
return null;
}
function isAd(data) {
if(!data) {
return false;
}
if(data.mblogtypename == '广告' || data.mblogtypename == '热推') {return true};
if(data.promotion && data.promotion.type == 'ad') {return true};
return false;
}
// 判断首页流 感兴趣的超话
function checkJunkTopic(item) {
if(item.category != 'group') {
return false;
}
try {
if(item.items[0]['data']['title'] == '关注你感兴趣的超话') {
return true;
}
} catch (error) {
}
return false;
}
function removeMain(data) {
if(!data.items) {
return data;
}
let newItems = [];
for (let item of data.items) {
if(checkJunkTopic(item)) {
continue;
}
if(!isAd(item.data)) {
newItems.push(item);
}
}
data.items = newItems;
log('removeMain success');
return data;
}
function topicHandler(data) {
log('topicHandler start');
const items = data.items;
if (!items) return data;
if(!mainConfig.removeUnfollowTopic && !mainConfig.removeUnusedPart) return data;
let newItems = [];
for(let c of items) {
let addFlag = true;
let category = c.category;
if(category == 'feed') {
if(!mainConfig.removeUnfollowTopic) {
continue;
}
let btns = c?.data?.buttons;
if(btns && btns.length > 0 && btns[0].type == 'follow') {
addFlag = false;
}
} else {
if(!mainConfig.removeUnusedPart) {
continue;
}
if(category == 'group') {
const cc = c.header?.title?.content;
if(cc && cc.indexOf('空降发帖') > -1) {
addFlag = false;
continue;
}
let subItems = c.items;
if(!subItems) {
continue;
}
let newSubItems = [];
for(let sub of subItems) {
let anchorId = sub?.itemExt?.anchorId;
if(!anchorId || ['sg_bottom_tab_search_input', 'multi_feed_entrance', 'bottom_mix_activity', 'cats_top_content', 'chaohua_home_readpost_samecity_title', 'chaohua_discovery_banner_1', 'chaohua_home_readpost_samecity_content'].indexOf(anchorId) == -1) {
newSubItems.push(sub);
}
}
c.items = newSubItems;
} else if (category == 'card') {
let cData = c.data
if(cData?.top?.title == '正在活跃') {
addFlag = false;
} else if(cData.card_type == 200 && cData.group) {
addFlag = false;
}
}
}
if(addFlag) {
newItems.push(c);
}
}
data.items = newItems;
log('topicHandler success');
return data;
}
function removeSearchMain(data) {
let channels = data.channelInfo.channels;
if (!channels) {return data;}
for(let channel of channels) {
let payload = channel.payload;
if (!payload) {continue;}
removeSearch(payload)
}
log('remove_search main success');
return data;
}
function checkSearchWindow(item) {
if(!mainConfig.removeSearchWindow) return false;
if(item.category != 'card') return false;
return item.data?.itemid == 'finder_window' || item.data?.itemid == 'more_frame';
}
//发现页
function removeSearch(data) {
if(!data.items) {
return data;
}
let newItems = [];
for (let item of data.items) {
if(item.category == 'feed') {
if(!isAd(item.data)) {
newItems.push(item);
}
} else {
if(!checkSearchWindow(item)) {
newItems.push(item);
}
}
}
data.items = newItems;
log('remove_search success');
return data;
}
function removeMsgAd(data) {
if(!data.messages) {
return;
}
let newMsgs = [];
for (let msg of data.messages) {
if(msg.msg_card?.ad_tag) {
continue;
}
newMsgs.push(msg)
}
data.messages = newMsgs;
return data;
}
function removePage(data){
removeCards(data);
// 删除热搜列表置顶条目
if (mainConfig.removePinedTrending && data.cards && data.cards.length > 0) {
if (data.cards[0].card_group) {
data.cards[0].card_group = data.cards[0].card_group.filter(c=>!c.itemid.includes("t:51"));
}
}
return data;
}
function removeCards(data) {
if(!data.cards) {
return;
}
let newCards = [];
for (const card of data.cards) {
let cardGroup = card.card_group;
if(cardGroup && cardGroup.length > 0) {
let newGroup = [];
for (const group of cardGroup) {
let cardType = group.card_type;
if(cardType != 118) {
newGroup.push(group);
}
}
card.card_group = newGroup;
newCards.push(card);
} else {
let cardType = card.card_type;
if([9,165].indexOf(cardType) > -1) {
if(!isAd(card.mblog)) {
newCards.push(card);
}
} else {
newCards.push(card);
}
}
}
data.cards = newCards;
}
function lvZhouHandler(data) {
if(!mainConfig.removeLvZhou) return;
if(!data) return;
let struct = data.common_struct;
if(!struct) return;
let newStruct = [];
for (const s of struct) {
if(s.name != '绿洲') {
newStruct.push(s);
}
}
data.common_struct = newStruct;
}
function isBlock(data) {
let blockIds = mainConfig.blockIds || [];
if(blockIds.length === 0) {
return false;
}
let uid = data.user.id;
for (const blockId of blockIds) {
if(blockId == uid) {
return true;
}
}
return false;
}
function removeTimeLine(data) {
for (const s of ["ad", "advertises", "trends"]) {
if(data[s]) {
delete data[s];
}
}
if(!data.statuses) {
return;
}
let newStatuses = [];
for (const s of data.statuses) {
if(!isAd(s)) {
lvZhouHandler(s);
if(!isBlock(s)) {
newStatuses.push(s);
}
}
}
data.statuses = newStatuses;
}
function removeHomeVip(data) {
if(!data.header) {
return data;
}
// let vipCenter = data.header.vipCenter;
// if(vipCenter) {
// vipCenter.icon = '';
// vipCenter.title.content = '会员中心';
// }
if(data.header.vipView) {
data.header.vipView = null;
}
return data;
}
//移除tab2的假通知
function removeVideoRemind(data) {
data.bubble_dismiss_time = 0;
data.exist_remind = false;
data.image_dismiss_time = 0;
data.image = '';
data.tag_image_english = '';
data.tag_image_english_dark = '';
data.tag_image_normal = '';
data.tag_image_normal_dark = '';
}
//微博详情页
function itemExtendHandler(data) {
if(mainConfig.removeRelate || mainConfig.removeGood) {
if(data.trend && data.trend.titles) {
let title = data.trend.titles.title;
if(mainConfig.removeRelate && title === '相关推荐') {
delete data.trend;
} else if (mainConfig.removeGood && title === '博主好物种草') {
delete data.trend;
}
}
}
if(mainConfig.removeFollow) {
if(data.follow_data) {
data.follow_data = null;
}
}
if(mainConfig.removeRewardItem) {
if(data.reward_info) {
data.reward_info = null;
}
}
//删除超话新帖和新用户通知
if(data.page_alerts) {
data.page_alerts = null;
}
// 06.29 删除新版广告
if(data.head_cards) {
data.head_cards = null;
}
//广告 暂时判断逻辑根据图片 https://h5.sinaimg.cn/upload/1007/25/2018/05/03/timeline_icon_ad_delete.png
try {
let picUrl = data.trend.extra_struct.extBtnInfo.btn_picurl;
if(picUrl.indexOf('timeline_icon_ad_delete') > -1) {
delete data.trend;
}
} catch (error) {
}
if(mainConfig.modifyMenus && data.custom_action_list) {
let newActions = [];
for (const item of data.custom_action_list) {
let _t = item.type;
let add = itemMenusConfig[_t]
if(add === undefined) {
newActions.push(item);
} else if(_t === 'mblog_menus_copy_url') {
newActions.unshift(item);
} else if(add) {
newActions.push(item);
}
}
data.custom_action_list = newActions;
}
}
function updateFollowOrder(item) {
try {
for (let d of item.items) {
if(d.itemId === 'mainnums_friends') {
let s = d.click.modules[0].scheme;
d.click.modules[0].scheme = s.replace('231093_-_selfrecomm', '231093_-_selffollowed');
log('updateFollowOrder success');
return;
}
}
} catch (error) {
console.log('updateFollowOrder fail');
}
}
function updateProfileSkin(item, k) {
try {
let profileSkin = mainConfig[k];
if(!profileSkin) {return;}
let i = 0;
for (let d of item.items) {
if(!d.image) {
continue;
}
try {
dm = d.image.style.darkMode
if(dm != 'alpha') {
d.image.style.darkMode = 'alpha'
}
d.image.iconUrl = profileSkin[i++];
if(d.dot) {
d.dot = [];
}
} catch (error) {
}
}
log('updateProfileSkin success');
} catch (error) {
console.log('updateProfileSkin fail');
}
}
function removeHome(data) {
if(!data.items) {
return data;
}
let newItems = [];
for (let item of data.items) {
let itemId = item.itemId;
if(itemId == 'profileme_mine') {
if(mainConfig.removeHomeVip) {
item = removeHomeVip(item);
}
updateFollowOrder(item);
newItems.push(item);
} else if (itemId == '100505_-_top8') {
updateProfileSkin(item, 'profileSkin1');
newItems.push(item);
} else if (itemId == '100505_-_newcreator') {
if(item.type == 'grid') {
updateProfileSkin(item, 'profileSkin2');
newItems.push(item);
} else {
if(!mainConfig.removeHomeCreatorTask) {
newItems.push(item);
}
}
} else if(['mine_attent_title', '100505_-_meattent_pic', '100505_-_newusertask', '100505_-_vipkaitong', '100505_-_hongbao2022', '100505_-_adphoto', '100505_-_hongrenjie2022', '100505_-_weibonight2023'].indexOf(itemId) > -1) {
continue;
} else if (itemId == '100505_-_advideo') {
if(item?.header?.title?.content == '微博之夜') {
continue;
}
} else if (itemId.match(/100505_-_meattent_-_\d+/)) {
continue;
} else {
newItems.push(item);
}
}
data.items = newItems;
return data;
}
//移除tab1签到
function removeCheckin(data) {
log('remove tab1签到');
data.show = 0;
}
//首页直播
function removeMediaHomelist(data) {
if(mainConfig.removeLiveMedia) {
log('remove 首页直播');
data.data = {};
}
}
//评论区相关和推荐内容
function removeComments(data) {
let delType = ['广告'];
if(mainConfig.removeRelateItem) delType.push('相关内容');
if(mainConfig.removeRecommendItem) delType.push(...['推荐', '热推']);
// if(delType.length === 0) return;
let items = data.datas || [];
if(items.length === 0) return;
let newItems = [];
for (const item of items) {
let adType = item.adType || '';
if(delType.indexOf(adType) == -1) {
newItems.push(item);
}
}
log('remove 评论区相关和推荐内容');
data.datas = newItems;
}
//处理感兴趣的超话和超话里的好友
function containerHandler(data) {
if(mainConfig.removeInterestFriendInTopic) {
if(data.card_type_name === '超话里的好友') {
log('remove 超话里的好友');
data.card_group = [];
}
}
if(mainConfig.removeInterestTopic && data.itemid) {
if(data.itemid.indexOf('infeed_may_interest_in') > -1) {
log('remove 感兴趣的超话');
data.card_group = [];
} else if(data.itemid.indexOf('infeed_friends_recommend') > -1) {
log('remove 超话好友关注');
data.card_group = [];
}
}
}
//可能感兴趣的人
function userHandler(data) {
data = removeMain(data);
if(!mainConfig.removeInterestUser) {
return data;
}
if(!data.items) {
return data;
}
let newItems = [];
for (let item of data.items) {
let isAdd = true;
if(item.category == 'group') {
try {
if(item.items[0]['data']['desc'] == '可能感兴趣的人') {
isAdd = false;
}
} catch (error) {
}
}
if(isAdd) {
newItems.push(item);
}
}
data.items = newItems;
log('removeMain sub success');
return data;
}
function nextVideoHandler(data) {
if(mainConfig.removeNextVideo) {
data.statuses = [];
data.tab_list = [];
console.log('nextVideoHandler');
}
}
function tabSkinHandler(data) {
try {
let iconVersion = mainConfig.tabIconVersion;
data['data']['canUse'] = 1
if(!iconVersion || !mainConfig.tabIconPath) return;
if(iconVersion < 100) return;
let skinList = data['data']['list']
for (let skin of skinList) {
// if(skin.usetime) {
// skin['usetime'] = 330
// }
skin['version'] = iconVersion;
skin['downloadlink'] = mainConfig.tabIconPath;
}
log('tabSkinHandler success')
} catch (error) {
log('tabSkinHandler fail')
}
}
function skinPreviewHandler(data) {
data['data']['skin_info']['status'] = 1
}
// function unreadCountHandler(data) {
// let ext = data.ext_new;
// if(!ext) return;
// if(!ext.creator_task) return;
// ext.creator_task.text = '';
// }
function log(data) {
if(mainConfig.isDebug) {
console.log(data);
}
}
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,r)=>{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.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}, 开始!`)}isNode(){return"undefined"!=typeof module&&!!module.exports}isQuanX(){return"undefined"!=typeof $task}isSurge(){return"undefined"!=typeof $httpClient&&"undefined"==typeof $loon}isLoon(){return"undefined"!=typeof $loon}isShadowrocket(){return"undefined"!=typeof $rocket}isStash(){return"undefined"!=typeof $environment&&$environment["stash-version"]}toObj(t,e=null){try{return JSON.parse(t)}catch{return e}}toStr(t,e=null){try{return JSON.stringify(t)}catch{return e}}getjson(t,e){let s=e;const i=this.getdata(t);if(i)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 r=this.getdata("@chavy_boxjs_userCfgs.httpapi_timeout");r=r?1*r:20,r=e&&e.timeout?e.timeout:r;const[o,n]=i.split("@"),a={url:`http://${n}/v1/scripting/evaluate`,body:{script_text:t,mock_type:"cron",timeout:r},headers:{"X-Key":o,Accept:"*/*"}};this.post(a,(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),r=JSON.stringify(this.data);s?this.fs.writeFileSync(t,r):i?this.fs.writeFileSync(e,r):this.fs.writeFileSync(t,r)}}lodash_get(t,e,s){const i=e.replace(/\[(\d+)\]/g,".$1").split(".");let r=t;for(const t of i)if(r=Object(r)[t],void 0===r)return s;return r}lodash_set(t,e,s){return Object(t)!==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),r=s?this.getval(s):"";if(r)try{const t=JSON.parse(r);e=t?this.lodash_get(t,i,""):e}catch(t){e=""}}return e}setdata(t,e){let s=!1;if(/^@/.test(e)){const[,i,r]=/^@(.*?)\.(.*?)$/.exec(e),o=this.getval(i),n=i?"null"===o?null:o||"{}":"{}";try{const e=JSON.parse(n);this.lodash_set(e,r,t),s=this.setval(JSON.stringify(e),i)}catch(e){const o={};this.lodash_set(o,r,t),s=this.setval(JSON.stringify(o),i)}}else s=this.setval(t,e);return s}getval(t){return this.isSurge()||this.isLoon()?$persistentStore.read(t):this.isQuanX()?$prefs.valueForKey(t):this.isNode()?(this.data=this.loaddata(),this.data[t]):this.data&&this.data[t]||null}setval(t,e){return this.isSurge()||this.isLoon()?$persistentStore.write(t,e):this.isQuanX()?$prefs.setValueForKey(t,e):this.isNode()?(this.data=this.loaddata(),this.data[e]=t,this.writedata(),!0):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:{},void 0===t.headers.Cookie&&void 0===t.cookieJar&&(t.cookieJar=this.ckjar))}get(t,e=(()=>{})){if(t.headers&&(delete t.headers["Content-Type"],delete t.headers["Content-Length"]),this.isSurge()||this.isLoon())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)});else if(this.isQuanX())this.isNeedRewrite&&(t.opts=t.opts||{},Object.assign(t.opts,{hints:!1})),$task.fetch(t).then(t=>{const{statusCode:s,statusCode:i,headers:r,body:o}=t;e(null,{status:s,statusCode:i,headers:r,body:o},o)},t=>e(t&&t.error||"UndefinedError"));else if(this.isNode()){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:r,headers:o,rawBody:n}=t,a=s.decode(n,this.encoding);e(null,{status:i,statusCode:r,headers:o,rawBody:n,body:a},a)},t=>{const{message:i,response:r}=t;e(i,r,r&&s.decode(r.rawBody,this.encoding))})}}post(t,e=(()=>{})){const s=t.method?t.method.toLocaleLowerCase():"post";if(t.body&&t.headers&&!t.headers["Content-Type"]&&(t.headers["Content-Type"]="application/x-www-form-urlencoded"),t.headers&&delete t.headers["Content-Length"],this.isSurge()||this.isLoon())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)});else if(this.isQuanX())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:r,body:o}=t;e(null,{status:s,statusCode:i,headers:r,body:o},o)},t=>e(t&&t.error||"UndefinedError"));else if(this.isNode()){let i=require("iconv-lite");this.initGotEnv(t);const{url:r,...o}=t;this.got[s](r,o).then(t=>{const{statusCode:s,statusCode:r,headers:o,rawBody:n}=t,a=i.decode(n,this.encoding);e(null,{status:s,statusCode:r,headers:o,rawBody:n,body:a},a)},t=>{const{message:s,response:r}=t;e(s,r,r&&i.decode(r.rawBody,this.encoding))})}}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="",r){const o=t=>{if(!t)return t;if("string"==typeof t)return this.isLoon()?t:this.isQuanX()?{"open-url":t}:this.isSurge()?{url:t}:void 0;if("object"==typeof t){if(this.isLoon()){let e=t.openUrl||t.url||t["open-url"],s=t.mediaUrl||t["media-url"];return{openUrl:e,mediaUrl:s}}if(this.isQuanX()){let e=t["open-url"]||t.url||t.openUrl,s=t["media-url"]||t.mediaUrl,i=t["update-pasteboard"]||t.updatePasteboard;return{"open-url":e,"media-url":s,"update-pasteboard":i}}if(this.isSurge()){let e=t.url||t.openUrl||t["open-url"];return{url:e}}}};if(this.isMute||(this.isSurge()||this.isLoon()?$notification.post(e,s,i,o(r)):this.isQuanX()&&$notify(e,s,i,o(r))),!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)}}log(...t){t.length>0&&(this.logs=[...this.logs,...t]),console.log(t.join(this.logSeparator))}logErr(t,e){const s=!this.isSurge()&&!this.isQuanX()&&!this.isLoon();s?this.log("",`❗️${this.name}, 错误!`,t.stack):this.log("",`❗️${this.name}, 错误!`,t)}wait(t){return new Promise(e=>setTimeout(e,t))}done(t={}){const e=(new Date).getTime(),s=(e-this.startTime)/1e3;this.log("",`🔔${this.name}, 结束! 🕛 ${s} 秒`),this.log(),this.isSurge()||this.isQuanX()||this.isLoon()?$done(t):this.isNode()&&process.exit(1)}}(t,e)}
var body = $response.body;
var url = $request.url;
let method = getModifyMethod(url);
if(method) {
log(method);
var func = eval(method);
let data = JSON.parse(body);
new func(data);
body = JSON.stringify(data);
}
$.done({ body });