miao-plugin/apps/profile/ProfileCommon.js

105 lines
2.5 KiB
JavaScript
Raw Normal View History

/*
* 面板公共方法及处理
* */
2022-07-23 20:32:10 +00:00
import { segment } from 'oicq'
2023-02-08 20:55:54 +00:00
import { Version } from '../../components/index.js'
import { Character, MysApi, Player } from '../../models/index.js'
/*
* 获取面板查询的 目标uid
* */
2023-02-09 16:57:25 +00:00
const _getTargetUid = async function (e) {
2022-07-23 20:32:10 +00:00
let uidReg = /[1-9][0-9]{8}/
if (e.uid && uidReg.test(e.uid)) {
2022-07-23 20:32:10 +00:00
return e.uid
}
2022-07-23 20:32:10 +00:00
let uidRet = uidReg.exec(e.msg)
if (uidRet) {
return uidRet[0]
}
2022-07-23 20:32:10 +00:00
let uid = false
let getUid = async function (qq) {
2022-07-23 20:32:10 +00:00
let nCookie = global.NoteCookie || false
if (nCookie && nCookie[qq]) {
let nc = nCookie[qq]
if (nc.uid && uidReg.test(nc.uid)) {
2022-07-23 20:32:10 +00:00
return nc.uid
}
}
uid = await redis.get(`genshin:id-uid:${qq}`) || await redis.get(`Yz:genshin:mys:qq-uid:${qq}`)
if (uid && uidReg.test(uid)) {
2022-07-23 20:32:10 +00:00
return uid
}
}
2022-08-18 10:13:42 +00:00
if (!Version.isV3) {
let botQQ = global?.Bot?.uin || global?.BotConfig?.account?.qq
2022-07-27 18:36:49 +00:00
if (e.at && e.at !== botQQ) {
uid = await getUid(e.at)
if (uid) {
return uid
}
}
uid = await getUid(e.user_id)
if (uid) {
2022-07-23 20:32:10 +00:00
return uid
}
}
try {
let user = await MysApi.initUser(e)
if (!user || !user.uid) {
2022-07-23 20:32:10 +00:00
return false
}
uid = user.uid
if ((!uid || !uidReg.test(uid)) && !e._replyNeedUid) {
2022-07-23 20:32:10 +00:00
e.reply('请先发送【#绑定+你的UID】来绑定查询目标')
return false
}
} catch (err) {
2022-07-23 20:32:10 +00:00
console.log(err)
}
2022-07-23 20:32:10 +00:00
return uid || false
}
2023-02-09 16:57:25 +00:00
export async function getTargetUid (e) {
let uid = await _getTargetUid(e)
if (uid) {
e.uid = uid
}
return uid
}
export async function getProfileRefresh (e, avatar) {
2022-07-23 20:32:10 +00:00
let char = Character.get(avatar)
if (!char) {
return false
}
2023-02-09 16:57:25 +00:00
let player = Player.create(e)
let profile = player.getProfile(char.id)
if (!profile || !profile.hasData) {
logger.mark(`本地无UID:${player.uid}${char.name}面板数据,尝试自动请求...`)
await player.refresh({ profile: true })
profile = player.getProfile(char.id)
}
if (!profile || !profile.hasData) {
if (!e._isReplyed) {
e.reply(`请确认${char.name}已展示在【游戏内】的角色展柜中,并打开了“显示角色详情”。然后请使用 #更新面板\n命令来获取${char.name}的面板详情`)
}
return false
}
return profile
}
/*
* 面板帮助
* */
2022-07-23 20:32:10 +00:00
export async function profileHelp (e) {
e.reply(segment.image(`file://${process.cwd()}/plugins/miao-plugin/resources/character/imgs/help.jpg`))
2022-07-23 20:32:10 +00:00
return true
}