Rules-For-Quantumult-X/Scripts/SignIn/JDHome/jddj.cookie.js

57 lines
1.6 KiB
JavaScript
Raw Normal View History

2020-07-02 11:50:39 +08:00
const cookieName = '京东到家'
const signheaderKey = 'chen_signheader_jddj'
const chen = init()
2020-07-02 11:52:57 +08:00
if (this.$request) {
2020-07-02 11:50:39 +08:00
const signheaderVal = JSON.stringify($request.headers)
if (signheaderVal) {
2020-07-02 11:52:57 +08:00
chen.setdata(signheaderVal, signheaderKey)
chen.msg(cookieName, `获取Cookie: 成功`, ``)
2020-07-02 11:50:39 +08:00
}
2020-07-02 11:52:57 +08:00
}
2020-07-02 11:50:39 +08:00
function init() {
2020-07-02 11:52:57 +08:00
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}
2020-07-02 11:50:39 +08:00
}
2020-07-02 11:52:57 +08:00
2020-07-02 11:50:39 +08:00
chen.done()