mirror of
https://github.com/ctrlcvs/xiaoyao-cvs-plugin.git
synced 2024-12-22 19:10:53 +08:00
fix:修正由于uid问题导致扫码绑定出现的请求异常(#65)
This commit is contained in:
parent
fdf29eddef
commit
ee7d0bf5f8
@ -89,7 +89,7 @@ export async function UserPassLogin(e) {
|
||||
export async function bindSkCK(e, res) {
|
||||
e.msg = res?.stoken, e.raw_message = res?.stoken
|
||||
e.isPrivate = true
|
||||
await bindStoken(e)
|
||||
await bindStoken(e,'1')
|
||||
e.ck = res?.cookie, e.msg = res.cookie, e.raw_message = res.cookie;
|
||||
if (isV3) {
|
||||
let userck = (await import(`file://${_path}/plugins/genshin/model/user.js`)).default
|
||||
|
@ -242,7 +242,7 @@ export async function bindLogin_ticket(e) {
|
||||
return false;
|
||||
}
|
||||
|
||||
export async function bindStoken(e) {
|
||||
export async function bindStoken(e, uid = '') {
|
||||
if (!e.isPrivate) {
|
||||
e.reply("请私聊发送")
|
||||
return true;
|
||||
@ -250,10 +250,11 @@ export async function bindStoken(e) {
|
||||
let msg = e.msg;
|
||||
let user = new User(e);
|
||||
await user.cookie(e)
|
||||
e.uid = uid || e.uid
|
||||
e.region = getServer(e.uid)
|
||||
e.cks = msg.replace(/;/g, '&').replace(/stuid/, "uid")
|
||||
e.sk = await utils.getCookieMap(msg)
|
||||
let res = await user.getData("bbsGetCookie", { cookies: e.cks })
|
||||
let res = await user.getData("bbsGetCookie", { cookies: e.cks }, false)
|
||||
if (!res?.data) {
|
||||
e.uid = "64"
|
||||
e.region = getServer(e.uid)
|
||||
@ -266,7 +267,7 @@ export async function bindStoken(e) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
await user.getCookie(e)
|
||||
// await user.getCookie(e)
|
||||
await user.seachUid(res);
|
||||
return true;
|
||||
}
|
||||
|
@ -26,7 +26,7 @@ export default class mysTopLogin {
|
||||
this.e.reply(this.sendMsgUser)
|
||||
let res = await this.user.getData("qrCodeLogin", {
|
||||
device: this.device
|
||||
})
|
||||
},false)
|
||||
if (!res.data) {
|
||||
return false;
|
||||
}
|
||||
@ -41,14 +41,14 @@ export default class mysTopLogin {
|
||||
await utils.sleepAsync(5000)
|
||||
res = await this.user.getData("qrCodeQuery", {
|
||||
device: this.device, ticket
|
||||
})
|
||||
},false)
|
||||
if (res?.data?.stat == "Scanned" && RedisData.GetQrCode == 1) {
|
||||
Bot.logger.mark(`[米哈游登录] ${Bot.logger.mark(JSON.stringify(res))}`)
|
||||
Bot.logger.mark(JSON.stringify(res))
|
||||
await this.e.reply("二维码已扫描,请确认登录", true)
|
||||
RedisData.GetQrCode++;
|
||||
}
|
||||
if (res?.data?.stat == "Confirmed") {
|
||||
Bot.logger.mark(`[米哈游登录] ${Bot.logger.mark(JSON.stringify(res))}`)
|
||||
Bot.logger.mark(JSON.stringify(res))
|
||||
break
|
||||
}
|
||||
}
|
||||
@ -58,8 +58,8 @@ export default class mysTopLogin {
|
||||
return false
|
||||
}
|
||||
let raw = JSON.parse(res?.data?.payload?.raw)
|
||||
let UserData = await this.user.getData("getTokenByGameToken", raw)
|
||||
let ck = await this.user.getData("getCookieAccountInfoByGameToken", raw)
|
||||
let UserData = await this.user.getData("getTokenByGameToken", raw,false)
|
||||
let ck = await this.user.getData("getCookieAccountInfoByGameToken", raw,false)
|
||||
return {
|
||||
cookie: `ltoken=${UserData.data?.token?.token};ltuid=${UserData.data?.user_info?.aid};cookie_token=${ck.data?.cookie_token}`,
|
||||
stoken: `stoken=${UserData.data?.token?.token};stuid=${UserData.data?.user_info?.aid};mid=${UserData?.data?.user_info.mid}`
|
||||
@ -120,7 +120,7 @@ export default class mysTopLogin {
|
||||
}
|
||||
async crack_geetest() {
|
||||
let res = ""; //await this.user.getData("microgg", this.aigis_captcha_data, false)
|
||||
Bot.logger.mark(`[米哈游登录] ${Bot.logger.mark(JSON.stringify(res))}`)
|
||||
// Bot.logger.mark(`[米哈游登录] ${Bot.logger.mark(JSON.stringify(res))}`)
|
||||
await this.e.reply(`请完成验证:https://challenge.minigg.cn/manual/index.html?gt=${this.aigis_captcha_data.gt}&challenge=${this.aigis_captcha_data.challenge}`, true)
|
||||
for (let n = 1; n < 60; n++) {
|
||||
await utils.sleepAsync(5000)
|
||||
|
@ -131,6 +131,7 @@ export default class miHoYoApi {
|
||||
return res
|
||||
}
|
||||
getUrl(type, board, data) {
|
||||
// if(/qrCodeLogin|qrCodeQuery|getTokenByGameToken|getCookieAccountInfoByGameToken/.test(type)) this.isOs=false;
|
||||
let urlMap = {
|
||||
userGameInfo: { //通用查询
|
||||
url: `${this.apiMap.apiWeb}/binding/api/getUserGameRolesByCookie`,
|
||||
|
Loading…
Reference in New Issue
Block a user