miao-plugin/models/Player.js

431 lines
11 KiB
JavaScript
Raw Normal View History

2023-02-08 20:55:54 +00:00
/**
* 用户数据文件
2023-02-19 17:08:05 +00:00
* 数据存储在/data/UserData/${uid}.json
* 兼容处理面板户数及Mys数据
*
2023-02-08 20:55:54 +00:00
*/
2023-02-09 16:57:25 +00:00
import lodash from 'lodash'
2023-02-08 20:55:54 +00:00
import Base from './Base.js'
2023-03-07 17:52:11 +00:00
import { Data } from '#miao'
2023-10-18 17:01:11 +00:00
import { Avatar, ProfileRank, Character } from './index.js'
2023-02-08 20:55:54 +00:00
2023-10-19 09:48:52 +00:00
import MysAvatar from './avatar/MysAvatar.js'
import ProfileAvatar from './avatar/ProfileAvatar.js'
2023-02-08 20:55:54 +00:00
2023-02-19 17:08:05 +00:00
Data.createDir('/data/UserData', 'root')
2023-05-14 20:19:33 +00:00
Data.createDir('/data/PlayerData/gs', 'root')
Data.createDir('/data/PlayerData/sr', 'root')
2023-02-08 20:55:54 +00:00
export default class Player extends Base {
2024-05-13 12:05:34 +00:00
constructor (uid, game = 'gs') {
2023-02-08 20:55:54 +00:00
super()
2023-02-09 16:57:25 +00:00
uid = uid?._mys?.uid || uid?.uid || uid
2023-02-08 20:55:54 +00:00
if (!uid) {
return false
}
let cacheObj = this._getCache(`player:${game}:${uid}`)
2023-02-08 20:55:54 +00:00
if (cacheObj) {
return cacheObj
}
this.uid = uid
2023-05-14 20:19:33 +00:00
this.game = game
2023-02-08 20:55:54 +00:00
this.reload()
return this._cache(100)
2023-02-08 20:55:54 +00:00
}
get hasProfile () {
let ret = false
2023-10-19 11:24:42 +00:00
this.forEachAvatar((avatar) => {
if (avatar.isProfile) {
ret = true
return false
}
})
return ret
}
2023-05-14 20:19:33 +00:00
get _file () {
2023-10-18 13:19:12 +00:00
return `/data/PlayerData/${this.game}/${this.uid}.json`
2023-05-14 20:19:33 +00:00
}
2023-10-18 13:19:12 +00:00
// 玩家头像
2023-06-28 20:26:26 +00:00
get faceImgs () {
let char
if (this.isGs && this.face) {
char = Character.get(this.face)
}
if (!char) {
let charId = lodash.keys(this._avatars)[0]
if (charId) {
char = Character.get(charId)
}
}
let imgs = char?.imgs || {}
return {
face: imgs.face || '/common/item/face.webp',
2023-10-24 19:34:36 +00:00
banner: imgs.banner || `/meta-${this.game}/character/common/imgs/banner.webp`
2023-06-28 20:26:26 +00:00
}
}
2023-05-14 20:19:33 +00:00
static create (e, game = 'gs') {
2023-02-09 16:57:25 +00:00
if (e?._mys?.uid || e.uid) {
2023-02-08 20:55:54 +00:00
// 传入为e
2023-05-14 20:19:33 +00:00
let player = new Player(e?._mys?.uid || e.uid, (game === 'sr' || e.isSr) ? 'sr' : 'gs')
2023-02-08 20:55:54 +00:00
player.e = e
return player
} else {
2023-05-14 20:19:33 +00:00
return new Player(e, game)
2023-02-08 20:55:54 +00:00
}
}
// 获取面板更新服务名
2023-05-14 20:19:33 +00:00
static getProfileServName (uid, game = 'gs') {
2023-10-19 09:48:52 +00:00
return ProfileAvatar.getServ(uid, game)?.name
}
2023-05-14 20:19:33 +00:00
static delByUid (uid, game = 'gs') {
let player = Player.create(uid, game)
if (player) {
player.del()
}
}
2023-02-08 20:55:54 +00:00
/**
* 重新加载json文件
2023-10-19 11:24:42 +00:00
* 注意为了性能默认不初始化avatars数据按需初始化
* 如需获取avatar请使用 player.getAvatar() 来进行获取以确保初始化
2023-02-08 20:55:54 +00:00
*/
reload () {
2023-10-18 13:19:12 +00:00
let data = Data.readJSON(this._file, 'root')
2023-02-08 20:55:54 +00:00
this.setBasicData(data)
2023-10-19 11:24:42 +00:00
this.setAvatars(data.avatars || [], true)
if (data._ck) {
this._ck = data._ck
}
if (!data.avatars) {
this.save()
}
2023-02-08 20:55:54 +00:00
}
/**
* 保存json文件
2023-02-19 02:38:51 +00:00
* @param flag false时暂时禁用保存true时启用保存并保存数据
* @returns {boolean}
2023-02-08 20:55:54 +00:00
*/
2023-02-19 02:38:51 +00:00
save (flag = null) {
if (flag === true) {
this._save = true
} else if (flag === false || this._save === false) {
this._save = false
return false
}
let ret = Data.getData(this, 'uid,name,level,word,face,card,sign,info,_info,_mys,_profile')
2023-02-08 20:55:54 +00:00
ret.avatars = {}
this.forEachAvatar((avatar) => {
ret.avatars[avatar.id] = avatar.toJSON()
2023-02-08 20:55:54 +00:00
})
if (this._ck) {
ret._ck = this._ck
2023-02-08 20:55:54 +00:00
}
2023-10-18 13:19:12 +00:00
Data.writeJSON(this._file, ret, 'root')
2023-02-08 20:55:54 +00:00
}
del () {
try {
2023-05-14 20:19:33 +00:00
Data.delFile(this._file, 'root')
ProfileRank.delUidInfo(this.uid, this.game)
this._delCache()
Bot.logger.mark(`【面板数据删除】${this.uid}本地文件数据已删除...`)
} catch (e) {
console.log('del error', e)
}
return true
}
2023-02-08 20:55:54 +00:00
/**
* 设置玩家基础数据
* @param ds
*/
setBasicData (ds) {
this.name = ds.name || this.name || ''
this.level = ds.level || this.level || ''
this.word = ds.word || this.word || ''
2023-02-08 20:55:54 +00:00
this.face = ds.face || this.face || ''
this.card = ds.card || this.card || ''
this.sign = ds.sign || this.sign || ''
this.info = ds.info || this.info || false
2023-02-08 20:55:54 +00:00
this._avatars = this._avatars || {}
this._profile = ds._profile || this._profile
this._mys = ds._mys || this._mys
this._info = ds._info || this._info
2023-02-08 20:55:54 +00:00
}
2023-02-09 16:57:25 +00:00
// 设置角色列表
2023-10-19 11:24:42 +00:00
// lazy是否懒初始化avatar
setAvatars (ds, lazy = false) {
2023-02-08 20:55:54 +00:00
lodash.forEach(ds, (avatar) => {
2023-10-19 11:24:42 +00:00
if (!avatar.id) {
return true
}
if (lazy) {
this._avatars[avatar.id] = avatar
} else {
this.setAvatar(avatar)
}
2023-02-08 20:55:54 +00:00
})
}
2023-02-09 16:57:25 +00:00
// 设置角色数据
setAvatar (ds, source = '') {
let avatar = this.getAvatar(ds.id, true)
2023-02-08 20:55:54 +00:00
avatar.setAvatar(ds, source)
}
2023-10-19 11:24:42 +00:00
delAvatar (id) {
delete this._avatars[id]
}
hasAvatar (id = '') {
if (!id) {
return !lodash.isEmpty(this._avatars)
}
return !!this._avatars[id]
}
getAvatarIds () {
return lodash.keys(this._avatars)
}
2023-02-09 16:57:25 +00:00
// 获取Avatar角色
getAvatar (id, create = false) {
let char = Character.get(id)
let avatars = this._avatars
2023-05-14 20:19:33 +00:00
if (this.isGs) {
// 兼容处理旅行者的情况
if (char.isTraveler && !create) {
id = avatars['10000005'] ? 10000005 : 10000007
}
}
2023-10-19 16:31:35 +00:00
2024-05-13 12:05:34 +00:00
if (this.isSr) {
// 兼容处理开拓者的情况
if (char.isTrailblazer && !create) {
switch (id) {
case 8001:
id = avatars['8001'] ? 8001 : 8002
break
case 8003:
id = avatars['8003'] ? 8003 : 8004
break
case 8005:
id = avatars['8005'] ? 8005 : 8006
break
}
}
}
2023-10-19 11:24:42 +00:00
if (!avatars[id]) {
if (create) {
avatars[id] = Avatar.create({ id }, this.game)
} else {
2023-02-08 20:55:54 +00:00
return false
}
}
2023-10-19 16:31:35 +00:00
2023-10-19 11:24:42 +00:00
let avatar = avatars[id]
if (!avatar.isAvatar) {
let data = avatars[id]
avatar = avatars[id] = Avatar.create(avatars[id], this.game)
avatar.setAvatar(data)
}
2023-10-19 16:31:35 +00:00
return avatar
2023-02-08 20:55:54 +00:00
}
2023-02-09 16:57:25 +00:00
// 循环Avatar
2023-10-19 09:48:52 +00:00
async forEachAvatar (fn) {
2023-02-08 20:55:54 +00:00
for (let id in this._avatars) {
2023-10-19 11:24:42 +00:00
let avatar = this.getAvatar(id)
if (avatar && avatar.hasData && avatar.game === this.game) {
2023-10-19 11:24:42 +00:00
let ret = fn(avatar, id)
2023-10-19 09:48:52 +00:00
ret = Data.isPromise(ret) ? await ret : ret
if (ret === false) {
return false
}
2023-02-08 20:55:54 +00:00
}
}
}
2023-02-09 16:57:25 +00:00
// 获取所有Avatar数据
2023-02-08 20:55:54 +00:00
getAvatarData (ids = '') {
let ret = {}
if (!ids) {
this.forEachAvatar((avatar) => {
ret[avatar.id] = avatar.getDetail()
})
} else {
lodash.forEach(ids, (id) => {
let avatar = this.getAvatar(id)
if (avatar) {
ret[id] = avatar.getDetail()
}
2023-02-08 20:55:54 +00:00
})
}
return ret
}
2023-02-09 16:57:25 +00:00
// 获取指定角色的面板数据
2023-02-08 20:55:54 +00:00
getProfile (id) {
let avatar = this.getAvatar(id)
2023-10-19 09:48:52 +00:00
if (!avatar.isProfile) {
return false
}
2023-10-18 17:01:11 +00:00
return avatar
2023-02-08 20:55:54 +00:00
}
2023-02-09 16:57:25 +00:00
// 获取所有面板数据
2023-02-08 20:55:54 +00:00
getProfiles () {
let ret = {}
2023-10-19 09:48:52 +00:00
this.forEachAvatar((avatar) => {
if (avatar.isProfile) {
ret[avatar.id] = avatar
2023-02-08 20:55:54 +00:00
}
})
return ret
}
getUpdateTime () {
let ret = {}
if (this._profile) {
ret.profile = MysAvatar.getDate(this._profile)
}
if (this._mys) {
ret.mys = MysAvatar.getDate(this._mys)
}
return ret
}
getInfo () {
return MysAvatar.getInfo(this)
}
2023-02-09 16:57:25 +00:00
// 更新面板
async refreshProfile (force = 2) {
2023-10-19 09:48:52 +00:00
return await ProfileAvatar.refreshProfile(this, force)
2023-02-08 20:55:54 +00:00
}
// 更新米游社数据
/**
* 更新米游社数据
2023-10-18 13:19:12 +00:00
* @param force 0:不强制长超时时间 1短超时时间 2无视缓存强制刷新
* @returns {Promise<boolean>}
*/
async refreshMysDetail (force = 0) {
return MysAvatar.refreshMysDetail(this, force)
}
async refreshMysInfo (force = 0) {
return await MysAvatar.refreshMysInfo(this, force)
2023-02-08 20:55:54 +00:00
}
// 通过已有的Mys CharData更新
setMysCharData (charData) {
MysAvatar.setMysCharData(this, charData)
}
// 使用MysApi刷新指定角色的天赋信息
async refreshTalent (ids = '', force = 0) {
2023-02-08 20:55:54 +00:00
return await MysAvatar.refreshTalent(this, ids, force)
}
2023-10-19 16:31:35 +00:00
/**
* 刷新角色数据
*
* @param cfg
* @param cfg.detail mys-detail数据更新级别角色列表与详情
* @param cfg.talent mys-talent数据更新级别角色天赋数据
* @param cfg.index mys-index数据更新级别游戏统计数据
* @param cfg.profile 刷新面板数据
* @param cfg.ids 刷新的角色列表
*/
async refresh (cfg) {
2023-02-19 02:38:51 +00:00
this.save(false)
try {
if (cfg.index || cfg.index === 0) {
await this.refreshMysInfo(cfg.index)
}
if (cfg.detail || cfg.detail === 0) {
await this.refreshMysDetail(cfg.detail)
}
if (cfg.talent || cfg.talent === 0) {
2023-10-19 16:31:35 +00:00
await this.refreshTalent(cfg.ids || '', cfg.talent)
2023-02-19 02:38:51 +00:00
}
if (cfg.profile || cfg.profile === 0) {
await this.refreshProfile(cfg.profile)
}
} catch (e) {
Bot.logger.mark(`刷新uid${this.uid}数据遇到错误...`)
console.log(e)
}
2023-02-19 02:38:51 +00:00
this.save(true)
}
2023-10-19 16:31:35 +00:00
/**
* 刷新并获取角色数据
*
* @param cfg
* @param cfg.detail mys-detail数据更新级别角色列表与详情
* @param cfg.talent mys-talent数据更新级别角色天赋数据
* @param cfg.index mys-index数据更新级别游戏统计数据
2023-11-02 13:20:16 +00:00
* @param cfg.materials 是否返回角色的材料默认false
2023-10-19 16:31:35 +00:00
* @param cfg.retType 返回类型默认id为key对象设置为array时返回数组
2023-11-02 13:20:16 +00:00
* @param cfg.rank 面板数据是否参与群排序
* @param cfg.sort 返回为数组时数据是否排序排序规则等级星级天赋命座武器好感的顺序排序
2023-10-19 16:31:35 +00:00
* @returns {Promise<any[]|{}>}
*/
async refreshAndGetAvatarData (cfg) {
await this.refresh(cfg)
2023-02-10 14:01:18 +00:00
let rank = false
let e = this.e
if (cfg.rank === true && e && e.group_id) {
rank = await ProfileRank.create({ group: e.group_id, uid: this.uid, qq: e.user_id })
}
let avatarRet = {}
this.forEachAvatar((avatar) => {
let { talent } = avatar
let ds = avatar.getDetail()
ds.aeq = talent?.a?.original + talent?.e?.original + talent?.q?.original || 3
if (avatar.game === 'sr') {
ds.aeq = talent?.a?.original + talent?.e?.original + talent?.q?.original + talent?.t?.original || 4
}
2023-02-10 14:01:18 +00:00
avatarRet[ds.id] = ds
let profile = avatar.getProfile()
2023-10-19 16:31:35 +00:00
if (avatar.isProfile) {
ds.artisSet = avatar.artis.getSetData()
let mark = avatar.getArtisMark(false)
2023-02-10 14:01:18 +00:00
ds.artisMark = Data.getData(mark, 'mark,markClass,names')
if (rank) {
rank.getRank(profile)
}
}
2023-11-02 13:20:16 +00:00
if (cfg.materials) {
ds.materials = avatar.getMaterials()
}
2023-02-10 14:01:18 +00:00
})
if (cfg.retType !== 'array') {
return avatarRet
}
avatarRet = lodash.values(avatarRet)
if (cfg.sort) {
let sortKey = 'level,star,aeq,cons,weapon.level,weapon.star,weapon.affix,fetter'.split(',')
avatarRet = lodash.orderBy(avatarRet, sortKey)
avatarRet = avatarRet.reverse()
}
return avatarRet
}
2023-02-08 20:55:54 +00:00
}