import { Data, Version } from '../../components/index.js' let MysInfo = false let MysUser = false async function init () { let mys = await Data.importModule('plugins/genshin/model/mys/mysInfo.js', 'root') if (mys && mys.default) { MysInfo = mys.default } else { let module = await Data.importModule('lib/components/models/MysUser.js', 'root') if (module && module.default) { MysUser = module.default } } } await init() if (!MysInfo) { // v2 MysInfo const apiCfg = { auth: 'all', targetType: 'all', cookieType: 'all', } MysInfo = class { constructor (e, uid, cookieUser) { if (e) { this.e = e this.userId = String(e.user_id) } this.uid = uid this.ckInfo = { ck: cookieUser.cookie, uid: cookieUser.uid } } static async init (e) { let MysApi = await e.getMysApi(apiCfg) // V2兼容 let { selfUser, targetUser, cookieUser } = MysApi let mys = new MysInfo(e, targetUser.uid || selfUser.uid, cookieUser) mys._MysApi = MysApi return mys } // 检查当前UID是否有CK绑定 static async checkUidBing (uid) { let user = await MysUser.get(uid) return user.cookie } static async getUid (e) { let user = await e.checkAuth({ auth: 'all' }) return user ? user.uid : false } static async get (e, api, data) { let MysApi = await e.getMysApi(apiCfg) // V2兼容 let ret = await MysApi.getData(api, data) if (ret) { return { data: ret } } return false } } } export default MysInfo