Miao-Yunzai/plugins/genshin/apps/user.js

190 lines
4.6 KiB
JavaScript
Raw Normal View History

2023-03-04 14:30:13 +08:00
import plugin from '../../../lib/plugins/plugin.js'
import fs from 'node:fs'
import gsCfg from '../model/gsCfg.js'
import User from '../model/user.js'
export class user extends plugin {
constructor (e) {
super({
name: '用户绑定',
dsc: '米游社ck绑定游戏uid绑定',
event: 'message',
priority: 300,
rule: [
{
reg: '^#?(体力|[Cc](oo)?[Kk](ie)?)帮助',
2023-03-04 14:30:13 +08:00
fnc: 'ckHelp'
},
{
reg: '^#[Cc](oo)?[Kk](ie)?代码$',
2023-03-04 14:30:13 +08:00
fnc: 'ckCode'
},
{
reg: '^#绑定[Cc](oo)?[Kk](ie)?$',
2023-03-04 14:30:13 +08:00
fnc: 'bingCk'
},
{
reg: '(.*)_MHYUUID(.*)',
event: 'message.private',
fnc: 'noLogin'
},
{
reg: '^#?(原神|星铁)?我的[Cc](oo)?[Kk](ie)?$',
2023-03-04 14:30:13 +08:00
event: 'message',
fnc: 'myCk'
},
{
reg: '^#?(原神|星铁)?删除[Cc](oo)?[Kk](ie)?$',
2023-03-04 14:30:13 +08:00
fnc: 'delCk'
},
2023-05-28 15:25:23 +08:00
{
reg: '^#?(原神|星铁)?(删除|解绑)(uid|UID)\\s*[0-9]{1,2}$',
2023-05-28 15:25:23 +08:00
fnc: 'delUid'
},
2023-03-04 14:30:13 +08:00
{
2023-11-23 20:10:09 +08:00
reg: '^#(原神|星铁)?绑定(uid|UID)?\\s*[1-9][0-9]{8}$',
2023-03-04 14:30:13 +08:00
fnc: 'bingUid'
},
{
reg: '^#(原神|星铁)?(我的)?(uid|UID)[0-9]{0,2}$',
2023-03-04 14:30:13 +08:00
fnc: 'showUid'
},
{
reg: '^#\\s*(检查|我的)*[Cc](oo)?[Kk](ie)?(状态)*$',
2023-03-04 14:30:13 +08:00
fnc: 'checkCkStatus'
},
{
reg: '^#(接受)?绑定(主|子)?(用户|账户|账号)(\\[[a-zA-Z0-9_\\-:\\]+\\]){0,2}$',
fnc: 'bindNoteUser'
},
{
reg: '^#(删除绑定|取消绑定|解除绑定|解绑|删除|取消)(主|子)(用户|账户|账号)$',
fnc: 'bindNoteUser'
2023-03-04 14:30:13 +08:00
}
]
})
this.User = new User(e)
}
async init () {
/** 加载旧的绑定ck json */
await this.loadOldData()
2023-03-04 14:30:13 +08:00
}
/** 接受到消息都会执行一次 */
accept () {
if (!this.e.msg) return
// 由于手机端米游社网页可能获取不到ltuid 可以尝试在通行证页面获取login_uid
if (/(ltoken|ltoken_v2)/.test(this.e.msg) && /(ltuid|login_uid|ltmid_v2)/.test(this.e.msg)) {
if (this.e.isGroup) {
this.reply('请私聊发送Cookie', false, { at: true })
2023-03-04 14:30:13 +08:00
return true
}
this.e.ck = this.e.msg
this.e.msg = '#绑定Cookie'
2023-03-04 14:30:13 +08:00
return true
}
if (this.e.msg == '#绑定uid') {
this.setContext('saveUid')
this.reply('请发送绑定的uid', false, { at: true })
return true
}
}
/** 绑定uid */
saveUid () {
if (!this.e.msg) return
2024-01-15 18:21:19 +08:00
let uid = this.e.msg.match(/[1|2|3|5-9][0-9]{8}/g)
2023-03-04 14:30:13 +08:00
if (!uid) {
this.reply('uid输入错误', false, { at: true })
return
}
this.e.msg = '#绑定' + this.e.msg
this.bingUid()
this.finish('saveUid')
}
/** 未登录ck */
async noLogin () {
this.reply('绑定Cookie失败\n请先【登录米游社】或【登录通行证】再获取Cookie')
2023-03-04 14:30:13 +08:00
}
/** #ck代码 */
async ckCode () {
await this.reply('javascript:(()=>{prompt(\'\',document.cookie)})();')
}
/** ck帮助 */
async ckHelp () {
let set = gsCfg.getConfig('mys', 'set')
await this.reply(`Cookie绑定配置教程${set.cookieDoc}\n获取Cookie后【私聊发送】进行绑定`)
2023-03-04 14:30:13 +08:00
}
/** 绑定ck */
async bingCk () {
let set = gsCfg.getConfig('mys', 'set')
if (!this.e.ck) {
await this.reply(`请【私聊】发送米游社Cookie获取教程\n${set.cookieDoc}`)
2023-03-04 14:30:13 +08:00
return
}
await this.User.bing()
}
/** 删除ck */
async delCk () {
let msg = await this.User.delCk()
await this.reply(msg)
}
/** 绑定uid */
async bingUid () {
await this.User.bingUid()
}
/** #uid */
async showUid () {
let index = this.e.msg.match(/[0-9]{1,2}/g)
if (index && index[0]) {
await this.User.toggleUid(index[0])
} else {
await this.User.showUid()
}
}
2023-05-28 15:25:23 +08:00
async delUid () {
let index = this.e.msg.match(/[0-9]{1,2}$/g)
let uidIdx = index && index[0]
let game = this.e
if (uidIdx) {
await this.User.delUid(uidIdx, game)
}
}
2023-03-04 14:30:13 +08:00
/** 我的ck */
async myCk () {
if (this.e.isGroup) {
await this.reply('请私聊查看')
return
}
await this.User.myCk()
}
/** 加载旧的绑定ck json */
async loadOldData () {
await this.User.loadOldDataV2()
await this.User.loadOldDataV3()
await this.User.loadOldUid()
2023-03-04 14:30:13 +08:00
}
/** 检查用户CK状态 **/
async checkCkStatus () {
await this.User.checkCkStatus()
}
async bindNoteUser () {
await this.User.bindNoteUser()
}
}