forked from chavyleung/scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsfexpress.js
87 lines (84 loc) · 2.85 KB
/
sfexpress.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
const cookieName = '顺丰速运'
const cookieKey = 'chavy_cookie_sfexpress'
const chavy = init()
let cookieVal = chavy.getdata(cookieKey)
sign()
function sign() {
chavy.log(`${cookieName}, Cookie: ${cookieVal}`)
let url = { url: `https://sf-integral-sign-in.weixinjia.net/app/signin`, headers: { Cookie: cookieVal } }
url.headers['Origin'] = `https://sf-integral-sign-in.weixinjia.net`
url.headers['Connection'] = `keep-alive`
url.headers['Content-Type'] = `application/x-www-form-urlencoded`
url.headers['Accept'] = `application/json, text/plain, */*`
url.headers['Host'] = `sf-integral-sign-in.weixinjia.net`
url.headers['User-Agent'] = `Mozilla/5.0 (iPhone; CPU iPhone OS 13_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 mediaCode=SFEXPRESSAPP-iOS-ML`
url.headers['ontent-Length'] = `15`
url.headers['Accept-Language'] = `zh-cn`
url.headers['Accept-Encoding'] = `gzip, deflate, br`
url.body = `date=${new Date().getFullYear()}-${new Date().getMonth() + 1}-${new Date().getDate()}`
chavy.log(`${cookieName}, body: ${url.body}`)
chavy.post(url, (error, response, data) => {
chavy.log(`${cookieName}, data: ${data}`)
const result = JSON.parse(data)
const title = `${cookieName}`
let subTitle = ``
let detail = ``
if (result.code == 0 && result.msg == 'success') {
subTitle = `签到结果: 成功`
} else if (result.code == -1) {
if (result.msg == 'ALREADY_CHECK') {
subTitle = `签到结果: 成功 (重复签到)`
} else {
subTitle = `签到结果: 失败`
}
} else {
subTitle = `签到结果: 未知`
detail = `说明: ${result.msg}`
}
chavy.msg(title, subTitle, detail)
})
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 }
}