-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathworkers.js
More file actions
145 lines (131 loc) · 5.33 KB
/
Copy pathworkers.js
File metadata and controls
145 lines (131 loc) · 5.33 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
'use strict'
const responseInit = (referrer = '*') => ({
status: 403,
headers: {
'content-type': 'application/json;charset=UTF-8',
'access-control-allow-origin': referrer,
'access-control-allow-methods': 'GET',
'X-XSS-Protection': '1; mode=block',
'X-Frame-Options': 'sameorigin',
},
})
const requestHeaders = new Headers({
"user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36"
})
// const callback = ''//"get_object_value_" + Date.now()
async function switchRouter(request, env) {
const parseUrl = new URL(request.url)
const _searchParams = parseUrl.searchParams
let resp = {
"errno": -1,
"msg": "Forbidden",
"data": []
}
// referrer
let referrer = env.REFERER ? env.REFERER : '*'
if (referrer !== '*') {
referrer = referrer.split('|').find(x => x.trim() === request.headers.get('referer'))
}
const respInit = responseInit(referrer)
if (referrer === '*' || referrer !== undefined) {
respInit.status = 200
switch (_searchParams.get("m")) {
case "getqrcode":
resp.data = await getqrcode()
if (resp.data.sign) {
resp.errno = 0
resp.msg = "Success"
}
break
case "getbduss":
resp.data = await getBduss(_searchParams.get("sign"), (_searchParams.get("full") === null ? false : true))
if (resp.data.status >= 0 && resp.data.status <= 2) {
resp.errno = 0
resp.msg = "Success"
} else {
resp.msg = "Invalid QR Code or timeout"
}
break
}
}
return new Response(JSON.stringify(resp), respInit)
}
async function getqrcode() {
const response = await (await fetch("https://passport.baidu.com/v2/api/getqrcode?lp=pc", { headers: requestHeaders })).json()
return { sign: response.sign, imgurl: response.imgurl }
}
async function getBduss(sign, full = false) {
let resp = { status: 1, bduss: "", msg: "", fullmode: false }
let response = await (await fetch("https://passport.baidu.com/channel/unicast?channel_id=" + sign + "&callback=a", { headers: requestHeaders })).text()
if (response) {
const errno = parseInt(/"errno":([\-0-9]+)(?:,|})/.exec(response)[1])
if (errno === 1) {
resp.status = 1
} else if (errno === 0) {
const channel_v = JSON.parse(/"channel_v":"(.*)"}\)/.exec(response)[1].replace(/\\/gm, ''))
if (channel_v.status) {
resp.status = 0
resp.msg = "Continue"
} else {
const userData = await JSON.parse(((await (await fetch('https://passport.baidu.com/v3/login/main/qrbdusslogin?bduss=' + channel_v.v, { headers: requestHeaders })).text()).replace(/'([^'']+)'/gm, `"$1"`)).replace(/\\&/gm, "&"))
if (userData && userData.code === "110000") {
resp.status = 2
resp.msg = "Success"
resp.bduss = userData.data.session.bduss
if (full) {
resp.fullmode = true
resp.data = {
ptoken: userData.data.session.ptoken,
stoken: userData.data.session.stoken,
ubi: userData.data.session.ubi,
hao123Param: userData.data.hao123Param,
username: userData.data.user.username,
userId: userData.data.user.userId,
portraitSign: userData.data.user.portraitSign,
displayName: userData.data.user.displayName,
stokenList: parseStoken(userData.data.session.stokenList)
}
}
}
}
} else {
resp.status = errno
}
} else {
resp.status = -1
resp.msg = "Invalid QR Code"
}
return resp
}
function parseStoken(stokenList) {
return Object.fromEntries(JSON.parse(stokenList.replace(/"/gm, '"')).map(x => x.split('#')))
}
// function callbackfunc(callback_str) {
// return Function(`const ${callback} = (obj) => obj; return ${callback_str}`)()
// }
export default {
async fetch(request, env) {
const parseUrl = new URL(request.url)
// router
let router = env.ROUTER ? env.ROUTER : ''
if (router !== '') {
router = router.split('|').some(x => {
try {
const parsedRouter = new URL(x.trim())
return parseUrl.host === parsedRouter.host && parseUrl.pathname === parsedRouter.pathname
} catch {
return false
}
})
} else {
router = parseUrl.pathname === '/api'
}
if (router) {
// TODO: Add your custom /api/* logic here.
return await switchRouter(request, env)
}
// Otherwise, serve the static assets.
// Without this, the Worker will error and no assets will be served.
return new Response("Not found", { status: 404 })// env.ASSETS.fetch(request)
}
}