forked from photonmang/quantumultX
-
Notifications
You must be signed in to change notification settings - Fork 6
/
xxysrw.js
294 lines (270 loc) · 12.4 KB
/
xxysrw.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
/*
更新时间:2020-11-03
1.本次更新重构了所有的代码,解决了签到、广告、分享、评论、10次观影、5次收藏、30分钟连续观影、每日22点开宝箱、每周六22点开宝箱,九合一!
2.兼容了QuantumultX,Surge,Loon,JSBox,Node.js
QuantumultX
[task_local]
#小小影视
0 10,22 * * * https://raw.githubusercontent.com/photonmang/quantumultX/master/xxysrw.js, tag=小小影视, img-url=https://raw.githubusercontent.com/Orz-3/task/master/xxys.png, enabled=true
Loon
[Script]
cron "0 10,22 * * *" script-path=https://raw.githubusercontent.com/photonmang/quantumultX/master/xxysrw.js, tag=小小影视
Surge
小小影视 = type=cron,cronexp=0 10,22 * * *,wake-system=1,timeout=20,script-path=https://raw.githubusercontent.com/photonmang/quantumultX/master/xxysrw.js
*/
const $ = new Env('小小影视')
$.VAL_loginurl = $.getdata('py_signurl_xxys')
$.VAL_loginheader = $.getdata('py_signheader_xxys')
const logs = 0 //响应日志开关,默认关闭
const myDate = new Date();
const days = myDate.getDay();
const hour = myDate.getHours();
!(async () => {
if (hour == 22) {
if (days == 6) {
await box()
await box6()
await showmsg()
} else {
await box()
await showmsg()
}} else {
await sign()
await pl()
await ad()
await fx()
for (let s = 0; s < 5; s ++) {
await sc();
i = s + 1;
console.log(`\n开始收藏:第`+i+`次`)
await $.wait(1000);
if ($.sc.retcode == -1) {
await sc();
console.log(`\n收藏失败:开始重新执行收藏任务`)
await $.wait(1000);
}
}
for (let ten = 0; ten < 10; ten ++) {
await tenplay();
i = ten + 1;
console.log(`\n开始播放:第`+i+`次`)
await $.wait(1000);
if ($.tenplay.retcode == 2) {
await tenplay();
console.log(`\n播放失败:开始重新执行播放任务`)
await $.wait(1000);
}
}
for (let p = 0; p < 180; p ++) {
await play();
i = p * 10;
console.log(`\n连续播放开始,每10秒请求一次播放:已持续`+i+`秒`)
await $.wait(10000);
}
await showmsg()
}
})()
.catch((e) => $.logErr(e))
.finally(() => $.done())
function sign() {
return new Promise((resolve) => {
const url = { url: `https://uv4tq1fvpg5gy5r5lkq9.hnhx360.com/ucp/task/sign`, headers: JSON.parse($.VAL_loginheader) }
$.post(url, (err, resp, data) => {
if(logs)$.log(`签到结果 : ${data}\n`)
try {
$.sign = JSON.parse(data)
if ($.sign.retcode == 0) {
$.desc = `签到:`+unescape($.sign.errmsg)+`✅`+`\n`
} else if ($.sign.retcode == -1) {
$.desc = `签到:`+unescape($.sign.errmsg)+`⚠️`+`\n`
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve()
}
})
})
}
function pl() {
return new Promise((resolve) => {
const url = { url: `https://uv4tq1fvpg5gy5r5lkq9.hnhx360.com/comment/post`, headers: JSON.parse($.VAL_loginheader) }
url.body = '{_t=1590651136000&content=%e7%9c%9f%e5%a5%bd%e7%9c%8b&parentid=0&pid=&s_device_id=2D1749C8-38B2-4859-A2FC-4BF783C533A3&s_os_version=13.3&s_platform=ios&vodid=62894}'
$.post(url, (err, resp, data) => {
if(logs)$.log(`评论结果 : ${data}\n`)
try {
$.pl = JSON.parse(data)
if ($.pl.retcode == 0) {
$.desc += `评论:`+unescape($.pl.errmsg)+`✅`+`\n`
} else if ($.pl.retcode != 0) {
$.desc += `评论:`+unescape($.pl.errmsg)+`⚠️`+`\n`
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve()
}
})
})
}
function ad() {
return new Promise((resolve) => {
const url = { url: `https://uv4tq1fvpg5gy5r5lkq9.hnhx360.com//ucp/task/adviewClick?`, headers: JSON.parse($.VAL_loginheader) }
$.post(url, (err, resp, data) => {
if(logs)$.log(`广告结果 : ${data}\n`)
try {
$.ad = JSON.parse(data)
if ($.ad.retcode == 0) {
$.desc += `广告:`+unescape($.ad.errmsg)+`✅`+`\n`
} else if ($.ad.retcode == -1) {
$.desc += `广告:`+unescape($.ad.errmsg)+`⚠️`+`\n`
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve()
}
})
})
}
function fx() {
return new Promise((resolve) => {
const url = { url: `https://uv4tq1fvpg5gy5r5lkq9.hnhx360.com/ucp/task/share?_t=1590118900000&pid=&s_device_id=2D1749C8-38B2-4859-A2FC-4BF783C533A3&s_os_version=13.3&s_platform=ios&vodid=62935`, headers: JSON.parse($.VAL_loginheader) }
$.post(url, (err, resp, data) => {
if(logs)$.log(`分享结果 : ${data}\n`)
try {
$.fx = JSON.parse(data)
if ($.fx.retcode == 0) {
$.desc += `分享: 成功✅`+`\n`
} else if ($.fx.retcode == -1) {
$.desc += `分享:`+unescape($.fx.errmsg)`⚠️`+`\n`
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve()
}
})
})
}
function box() {
return new Promise((resolve) => {
const url = { url: `https://uv4tq1fvpg5gy5r5lkq9.hnhx360.com/ucp/taskbox/taskboxopen?taskid=1022`, headers: JSON.parse($.VAL_loginheader) }
$.post(url, (err, resp, data) => {
if(logs)$.log(`每日开箱结果 : ${data}\n`)
try {
$.box = JSON.parse(data)
if ($.box.retcode == 0) {
$.desc = `每日开箱:`+unescape($.box.errmsg)+`✅`+`\n`
}
else if ($.box.retcode == -1) {
$.desc = `每日开箱:`+unescape($.box.errmsg)+`⚠️`+`\n`
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve()
}
})
})
}
function box6() {
return new Promise((resolve) => {
const url = { url: `https://uv4tq1fvpg5gy5r5lkq9.hnhx360.com/ucp/taskbox/taskboxopen?taskid=1622`, headers: JSON.parse($.VAL_loginheader) }
$.post(url, (err, resp, data) => {
if(logs)$.log(`每周开箱结果 : ${data}\n`)
try {
$.box6 = JSON.parse(data)
if ($.box6.retcode == 0) {
$.desc += `周六开箱:`+unescape($.box6.errmsg)+`✅`+`\n`
}
else if ($.box6.retcode == -1) {
$.desc += `周六开箱:`+unescape($.box6.errmsg)+`⚠️`+`\n`
}
} catch (e) {
$.logErr(e, resp)
} finally {
resolve()
}
})
})
}
function sc() {
return new Promise((resolve) => {
const url = { url: `https://uv4tq1fvpg5gy5r5lkq9.hnhx360.com/favorite/add`, headers: JSON.parse($.VAL_loginheader) }
var ID = Math.floor(Math.random() * 60000 + 10);
url.body = '_t=1590122851000&pid=&s_device_id=2D1749C8-38B2-4859-A2FC-4BF783C533A3&s_os_version=13.3&s_platform=ios&vodid='+ID
$.post(url, (err, resp, data) => {
if(logs)$.log(`收藏结果 : ${data}\n`)
try {
$.sc = JSON.parse(data)
} catch (e) {
$.logErr(e, resp)
} finally {
resolve()
}
})
})
}
function tenplay() {
return new Promise((resolve) => {
var num = Math.floor(Math.random() * 60000 + 10);
const url = { url: "https://uv4tq1fvpg5gy5r5lkq9.hnhx360.com/vod/reqplay/"+num+"?_t=1590938797000&pid=&playindex=1", headers: JSON.parse($.VAL_loginheader) }
var ID = Math.floor(Math.random() * 60000 + 10);
$.post(url, (err, resp, data) => {
if(logs)$.log(`播放结果 : ${data}\n`)
try {
$.tenplay = JSON.parse(data)
} catch (e) {
$.logErr(e, resp)
} finally {
resolve()
}
})
})
}
function play() {
return new Promise((resolve) => {
var num = Math.floor(Math.random() * 60000 + 10);
const url = { url: "https://uv4tq1fvpg5gy5r5lkq9.hnhx360.com/vod/playhb/53366?", headers: JSON.parse($.VAL_loginheader) }
var ID = Math.floor(Math.random() * 60000 + 10);
$.post(url, (err, resp, data) => {
if(logs)$.log(`30分钟播放记录 : ${data}\n`)
try {
$.play = JSON.parse(data)
} catch (e) {
$.logErr(e, resp)
} finally {
resolve()
}
})
})
}
function showmsg() {
return new Promise((resolve) => {
if (hour != 22) {
if ($.sc.retcode == 0) {
$.desc += `收藏结果:`+unescape($.sc.errmsg)+`✅`+`\n`
}
else if ($.sc.retcode == -1) {
$.desc += `收藏结果:`+unescape($.sc.errmsg)+`⚠️`+`\n`
}
if ($.tenplay.retcode == 0) {
$.desc += `播放结果:`+unescape($.tenplay.errmsg)+`✅`+`\n`
}
else if ($.tenplay.retcode != 0) {
$.desc += `播放结果:`+unescape($.tenplay.errmsg)+`⚠️`+`\n`
}
if ($.play.retcode == 0) {
$.desc += `30分钟连续观影结果:完成`+`✅`+`\n`
}
else if ($.play.retcode == 4) {
$.desc += `30分钟连续观影结果:`+unescape($.play.errmsg)+`⚠️`+`\n`
}
}
$.msg($.name, $.subt, $.desc)
resolve()
})
}
// prettier-ignore
function Env(t,s){return new class{constructor(t,s){this.name=t,this.data=null,this.dataFile="box.dat",this.logs=[],this.logSeparator="\n",this.startTime=(new Date).getTime(),Object.assign(this,s),this.log("",`\ud83d\udd14${this.name}, \u5f00\u59cb!`)}isNode(){return"undefined"!=typeof module&&!!module.exports}isQuanX(){return"undefined"!=typeof $task}isSurge(){return"undefined"!=typeof $httpClient}isLoon(){return"undefined"!=typeof $loon}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),s=this.path.resolve(process.cwd(),this.dataFile),e=this.fs.existsSync(t),i=!e&&this.fs.existsSync(s);if(!e&&!i)return{};{const i=e?t:s;try{return JSON.parse(this.fs.readFileSync(i))}catch{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),s=this.path.resolve(process.cwd(),this.dataFile),e=this.fs.existsSync(t),i=!e&&this.fs.existsSync(s),h=JSON.stringify(this.data);e?this.fs.writeFileSync(t,h):i?this.fs.writeFileSync(s,h):this.fs.writeFileSync(t,h)}}getdata(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}setdata(t,s){return this.isSurge()||this.isLoon()?$persistentStore.write(t,s):this.isQuanX()?$prefs.setValueForKey(t,s):this.isNode()?(this.data=this.loaddata(),this.data[s]=t,this.writedata(),!0):this.data&&this.data[s]||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,s=(()=>{})){t.headers&&(delete t.headers["Content-Type"],delete t.headers["Content-Length"]),this.isSurge()||this.isLoon()?$httpClient.get(t,(t,e,i)=>{!t&&e&&(e.body=i,e.statusCode=e.status,s(t,e,i))}):this.isQuanX()?$task.fetch(t).then(t=>{const{statusCode:e,statusCode:i,headers:h,body:o}=t;s(null,{status:e,statusCode:i,headers:h,body:o},o)},t=>s(t)):this.isNode()&&(this.initGotEnv(t),this.got(t).on("redirect",(t,s)=>{try{const e=t.headers["set-cookie"].map(this.cktough.Cookie.parse).toString();this.ckjar.setCookieSync(e,null),s.cookieJar=this.ckjar}catch(t){this.logErr(t)}}).then(t=>{const{statusCode:e,statusCode:i,headers:h,body:o}=t;s(null,{status:e,statusCode:i,headers:h,body:o},o)},t=>s(t)))}post(t,s=(()=>{})){if(t.body&&t.headers&&!t.headers["Content-Type"]&&(t.headers["Content-Type"]="application/x-www-form-urlencoded"),delete t.headers["Content-Length"],this.isSurge()||this.isLoon())$httpClient.post(t,(t,e,i)=>{!t&&e&&(e.body=i,e.statusCode=e.status,s(t,e,i))});else if(this.isQuanX())t.method="POST",$task.fetch(t).then(t=>{const{statusCode:e,statusCode:i,headers:h,body:o}=t;s(null,{status:e,statusCode:i,headers:h,body:o},o)},t=>s(t));else if(this.isNode()){this.initGotEnv(t);const{url:e,...i}=t;this.got.post(e,i).then(t=>{const{statusCode:e,statusCode:i,headers:h,body:o}=t;s(null,{status:e,statusCode:i,headers:h,body:o},o)},t=>s(t))}}msg(s=t,e="",i="",h){this.isSurge()||this.isLoon()?$notification.post(s,e,i):this.isQuanX()&&$notify(s,e,i),this.logs.push("","==============\ud83d\udce3\u7cfb\u7edf\u901a\u77e5\ud83d\udce3=============="),this.logs.push(s),e&&this.logs.push(e),i&&this.logs.push(i)}log(...t){t.length>0?this.logs=[...this.logs,...t]:console.log(this.logs.join(this.logSeparator))}logErr(t,s){const e=!this.isSurge()&&!this.isQuanX()&&!this.isLoon();e?$.log("",`\u2757\ufe0f${this.name}, \u9519\u8bef!`,t.stack):$.log("",`\u2757\ufe0f${this.name}, \u9519\u8bef!`,t.message)}wait(t){return new Promise(s=>setTimeout(s,t))}done(t=null){const s=(new Date).getTime(),e=(s-this.startTime)/1e3;this.log("",`\ud83d\udd14${this.name}, \u7ed3\u675f! \ud83d\udd5b ${e} \u79d2`),this.log(),(this.isSurge()||this.isQuanX()||this.isLoon())&&$done(t)}}(t,s)}