Rules-For-Quantumult-X/Scripts/SignIn/QQVideo/videoqq.cookie.js

83 lines
3.0 KiB
JavaScript
Raw Normal View History

2020-07-02 11:50:39 +08:00
const cookieName = '腾讯视频'
const cookieKey = 'chavy_cookie_videoqq'
const authUrlKey = 'chavy_auth_url_videoqq'
const authHeaderKey = 'chavy_auth_header_videoqq'
const msignurlKey = 'chavy_msign_url_videoqq'
const msignheaderKey = 'chavy_msign_header_videoqq'
const chavy = init()
const cookieVal = $request.headers['Cookie']
if (cookieVal) {
2020-07-02 11:52:57 +08:00
if ($request.url.indexOf('auth_refresh') > 0) {
const authurl = $request.url
const authHeader = JSON.stringify($request.headers)
if (cookieVal) chavy.setdata(cookieVal, cookieKey)
if (authurl) chavy.setdata(authurl, authUrlKey)
if (authHeader) chavy.setdata(authHeader, authHeaderKey)
chavy.msg(`${cookieName}`, '获取Cookie: 成功', '')
chavy.log(`[${cookieName}] 获取Cookie: 成功, Cookie: ${cookieVal}`)
chavy.log(`[${cookieName}] 获取Cookie: 成功, AuthUrl: ${authurl}`)
chavy.log(`[${cookieName}] 获取Cookie: 成功, AuthHeader: ${authHeader}`)
} else if ($request.url.indexOf('mobile_checkin') > 0) {
const msignurl = $request.url
const msignheader = JSON.stringify($request.headers)
if (msignurl) chavy.setdata(msignurl, msignurlKey)
if (msignheader) chavy.setdata(msignheader, msignheaderKey)
chavy.msg(`${cookieName}`, '获取Cookie: 成功', '')
chavy.log(`[${cookieName}] 获取Cookie: 成功, msignurl: ${msignurl}`)
chavy.log(`[${cookieName}] 获取Cookie: 成功, msignheader: ${msignheader}`)
} else {
chavy.setdata(cookieVal, cookieKey)
chavy.setdata(``, authUrlKey)
chavy.setdata(``, authHeaderKey)
chavy.msg(`${cookieName}`, '获取Cookie: 成功', '')
chavy.log(`[${cookieName}] 获取Cookie: 成功, 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)
2020-07-02 11:50:39 +08:00
}
2020-07-02 11:52:57 +08:00
setdata = (key, val) => {
if (isSurge()) return $persistentStore.write(key, val)
if (isQuanX()) return $prefs.setValueForKey(key, val)
2020-07-02 11:50:39 +08:00
}
2020-07-02 11:52:57 +08:00
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))
}
}
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
chavy.done()