forked from adsproo/txnews
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrrtv.js
More file actions
68 lines (62 loc) · 1.46 KB
/
rrtv.js
File metadata and controls
68 lines (62 loc) · 1.46 KB
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
var body = $response.body;
var url = $request.url;
if (url.indexOf('/ad/getAll') != -1) {
var obj = JSON.parse(body);
obj.data.adList = [];
body = JSON.stringify(obj);
} else if (url.indexOf('/user/privilege/list') != -1) {
var obj = JSON.parse(body);
obj.data = [{
"action": "play",
"effectObject": "video",
"id": 1,
"function": "originalPainting",
"func": "originalPainting",
"endTime": 1667341767582,
"description": "解锁原画",
"icon": "jiesuoyuanhua"
}, {
"action": "play",
"effectObject": "video",
"id": 4,
"function": "noLimit",
"func": "noLimit",
"endTime": 1567341767582,
"description": "看剧无限制",
"icon": "kanjuwuxianzhi"
}, {
"action": "play",
"effectObject": "growth",
"id": 37,
"function": "0.4",
"func": "0.4",
"endTime": 1667341767582,
"description": "看剧经验+40%",
"icon": "jingyanzhijiacheng"
}, {
"action": "send",
"effectObject": "danmu",
"id": 43,
"function": "superBarrageBlue",
"func": "superBarrageBlue",
"endTime": 1667341767582,
"description": "超级弹幕",
"icon": "chaojidanmu"
}, {
"action": "play",
"effectObject": "video",
"id": 23,
"function": "noAd",
"func": "noAd",
"endTime": 1667341767582,
"description": "看剧无广告",
"icon": "kanjuwuguanggao"
}];
}else if(url.indexOf('/rrtv-video/v4plus/season/detail') != -1){
var obj = JSON.parse(body);
obj.data['season']['feeMode'] = 'restriction';
}
body = JSON.stringify(obj);
$done({
body
});