-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgqcq_wx_cookie.js
74 lines (68 loc) · 2.04 KB
/
gqcq_wx_cookie.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
// import ("./ql_sync")
const cookieName = '广汽传祺小程序'
const moliyadi = init()
if ($request && $request.method == 'POST' && $request.url.indexOf('mall.gacmotor.com/center-current-app/fronted/myHomePage/myInfo') >= 0) {
let token = $request.headers.token
//let old_value = moliyadi.getdata('kfxtoken')
if (token) {
// if(old_value == token){
// moliyadi.msg(cookieName,'无需更新','')
// }
// else{
//moliyadi.setdata(token,'kfxtoken')
moliyadi.msg(cookieName, `获取cookie成功`, '')
$httpClient.get('https://raw.githubusercontent.com/moliyadi007/automatic_task/main/ql_sync.js',
(err,res,data)=>{
eval(data)
update(token,'gqcqWxCookie',cookieName,'\n')
moliyadi.msg(cookieName, `更新cookie成功`, '')
}
);
}
}else{
moliyadi.msg(cookieName, `cookie获取失败`, '')
}
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 = (val,key) => {
if (isSurge()) return $persistentStore.write(val,key)
if (isQuanX()) return $prefs.setValueForKey(val,key)
}
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 }
}
moliyadi.done()