forked from chavyleung/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathacfun.js
97 lines (93 loc) · 3.01 KB
/
acfun.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
const cookieName = 'AcFun'
const cookieKey = 'chavy_cookie_acfun'
const tokenKey = 'chavy_token_acfun'
const chavy = init()
const cookieVal = chavy.getdata(cookieKey)
const tokenVal = chavy.getdata(tokenKey)
sign()
function sign() {
let url = { url: `https://api-new.acfunchina.com/rest/app/user/signIn`, headers: { Cookie: cookieVal } }
url.headers['access_token'] = `${tokenVal}`
url.headers['acPlatform'] = 'IPHONE'
url.headers['User-Agent'] = 'AcFun/6.14.2 (iPhone; iOS 13.3; Scale/2.00)'
url.body = `access_token=${cookieVal}`
chavy.post(url, (error, response, data) => {
const result = JSON.parse(data)
const title = `${cookieName}`
let subTitle = ``
let detail = ``
if (result.result == 0 || result.result == 122) {
getinfo(result)
} else {
subTitle = `签到结果: 失败`
detail = `编码: ${result.result}, 说明: ${result.error_msg}`
chavy.msg(title, subTitle, detail)
}
chavy.log(`${cookieName}, data: ${data}`)
})
}
function getinfo(signresult) {
let url = { url: `https://api-new.acfunchina.com/rest/app/user/hasSignedIn`, headers: { Cookie: cookieVal } }
url.headers['access_token'] = `${tokenVal}`
url.headers['acPlatform'] = 'IPHONE'
url.headers['User-Agent'] = 'AcFun/6.14.2 (iPhone; iOS 13.3; Scale/2.00)'
url.body = `access_token=${cookieVal}`
chavy.post(url, (error, response, data) => {
const result = JSON.parse(data)
const title = `${cookieName}`
let subTitle = ``
let detail = ``
if (signresult.result == 0) {
subTitle = `签到结果: 成功`
} else if (signresult.result == 122) {
subTitle = `签到结果: 成功 (重复签到)`
}
detail = `共签: ${result.cumulativeDays}次, 连签: ${result.continuousDays}次, 说明: ${signresult.msg}`
chavy.msg(title, subTitle, detail)
chavy.log(`${cookieName}, data: ${data}`)
chavy.done()
})
}
function init() {
isSurge = () => {
return undefined === this.$httpClient ? false : true
}
isQuanX = () => {
return undefined === this.$task ? false : true
}
getdata = (key) => {
if (isSurge()) return $persistentStore.read(key)
if (isQuanX()) return $prefs.valueForKey(key)
}
setdata = (key, val) => {
if (isSurge()) return $persistentStore.write(key, val)
if (isQuanX()) return $prefs.setValueForKey(key, val)
}
msg = (title, subtitle, body) => {
if (isSurge()) $notification.post(title, subtitle, body)
if (isQuanX()) $notify(title, subtitle, body)
}
log = (message) => console.log(message)
get = (url, cb) => {
if (isSurge()) {
$httpClient.get(url, cb)
}
if (isQuanX()) {
url.method = 'GET'
$task.fetch(url).then((resp) => cb(null, {}, resp.body))
}
}
post = (url, cb) => {
if (isSurge()) {
$httpClient.post(url, cb)
}
if (isQuanX()) {
url.method = 'POST'
$task.fetch(url).then((resp) => cb(null, {}, resp.body))
}
}
done = (value = {}) => {
$done(value)
}
return { isSurge, isQuanX, msg, log, getdata, setdata, get, post, done }
}