Rules-For-Quantumult-X/Scripts/SignIn/Tieba/tieba.cookie.js

65 lines
1.9 KiB
JavaScript
Raw Normal View History

2020-07-02 11:50:39 +08:00
const cookieName = '百度贴吧'
const cookieKey = 'chavy_cookie_tieba'
const chavy = init()
const cookieVal = $request.headers['Cookie']
if (cookieVal.indexOf('BDUSS') > 0) {
2020-07-02 11:52:57 +08:00
let cookie = chavy.setdata(cookieVal, cookieKey)
if (cookie) {
let subTitle = '获取Cookie: 成功'
chavy.msg(`${cookieName}`, subTitle, '')
chavy.log(`[${cookieName}] ${subTitle}, cookie: ${cookieVal}`)
}
2020-07-02 11:50:39 +08:00
} else {
2020-07-02 11:52:57 +08:00
let subTitle = '获取Cookie: 失败'
let detail = `请确保在已登录状态下获取Cookie`
chavy.msg(`${cookieName}`, subTitle, detail)
chavy.log(`[${cookieName}] ${subTitle}, cookie: ${cookieVal}`)
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)
2020-07-02 11:50:39 +08:00
}
2020-07-02 11:52:57 +08:00
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))
}
2020-07-02 11:50:39 +08:00
}
2020-07-02 11:52:57 +08:00
post = (url, cb) => {
if (isSurge()) {
$httpClient.post(url, cb)
}
if (isQuanX()) {
url.method = 'POST'
$task.fetch(url).then((resp) => cb(null, {}, resp.body))
}
2020-07-02 11:50:39 +08:00
}
2020-07-02 11:52:57 +08:00
done = (value = {}) => {
$done(value)
2020-07-02 11:50:39 +08:00
}
2020-07-02 11:52:57 +08:00
return {isSurge, isQuanX, msg, log, getdata, setdata, get, post, done}
2020-07-02 11:50:39 +08:00
}
chavy.done()