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

228 lines
7.0 KiB
JavaScript
Raw Normal View History

2023-03-04 14:30:13 +08:00
import plugin from '../../../lib/plugins/plugin.js'
import puppeteer from '../../../lib/puppeteer/puppeteer.js'
import fs from 'node:fs'
import GachaLog from '../model/gachaLog.js'
import ExportLog from '../model/exportLog.js'
import LogCount from '../model/logCount.js'
const _path = process.cwd() + '/plugins/genshin'
export class gcLog extends plugin {
constructor() {
2023-03-04 14:30:13 +08:00
super({
name: '抽卡记录',
dsc: '抽卡记录数据统计',
event: 'message',
priority: 300,
rule: [
{
reg: '(.*)authkey=(.*)',
fnc: 'logUrl'
},
{
reg: '#txt(日志)?(文件)?导入记录',
2023-03-04 14:30:13 +08:00
fnc: 'logFile'
},
{
reg: '#*(原神|星铁)?(xlsx|excel)(文件)?导入记录',
2023-03-04 14:30:13 +08:00
fnc: 'logXlsx'
},
{
reg: '#*(原神|星铁)?json(文件)?导入记录',
2023-03-04 14:30:13 +08:00
fnc: 'logJson'
},
{
reg: '^#*(原神|星铁)?(全部)?(抽卡|抽奖|角色|武器|常驻|up|新手|光锥|全部)池*(记录|祈愿|分析)$',
2023-03-04 14:30:13 +08:00
fnc: 'getLog'
},
{
reg: '^#*(原神|星铁)?导出记录(excel|xlsx|json)*$',
2023-03-04 14:30:13 +08:00
fnc: 'exportLog'
},
{
reg: '^#*(记录帮助|抽卡帮助)$',
fnc: 'help'
},
{
reg: '^#*(安卓|苹果|电脑|pc|ios)帮助$',
fnc: 'helpPort'
},
{
reg: '^#*(原神|星铁)?(抽卡|抽奖|角色|武器|常驻|up|新手|光锥)池*统计$',
2023-03-04 14:30:13 +08:00
fnc: 'logCount'
}
]
})
this.androidUrl = 'https://docs.qq.com/doc/DUWpYaXlvSklmVXlX'
2023-03-04 14:30:13 +08:00
}
async init() {
2023-08-18 10:19:48 +08:00
let file = ['./data/gachaJson', './data/srJson', './temp/html/StarRail']
for (let i of file) {
if (!fs.existsSync(i)) {
fs.mkdirSync(i)
}
2023-03-04 14:30:13 +08:00
}
}
accept() {
2023-03-04 14:30:13 +08:00
if (this.e.file && this.e.isPrivate) {
let name = this.e.file?.name
if (name.includes('txt')) {
this.e.msg = '#txt日志文件导入记录'
if (name.includes('output')) return true
}
if (/(.*)[1-9][0-9]{8}(.*).xlsx$/ig.test(name)) {
this.e.msg = '#xlsx文件导入记录'
return true
}
if (/(.*)[1-9][0-9]{8}(.*).json/ig.test(name)) {
this.e.msg = '#json文件导入记录'
return true
}
}
if (this.e.msg && /^#*(角色|武器)统计$/g.test(this.e.msg)) {
this.e.msg = this.e.msg.replace('统计', '池统计')
return true
}
}
/** 抽卡记录链接 */
async logUrl() {
2023-03-04 14:30:13 +08:00
if (!this.e.isPrivate) {
this.e.reply('请私聊发送链接', false, { at: true })
return true
}
let data = await new GachaLog(this.e).logUrl()
if (!data) return
2023-08-18 10:19:48 +08:00
2023-08-19 19:48:02 +08:00
let img = await puppeteer.screenshot(`${data.srtempFile}gachaLog`, data)
2023-03-04 14:30:13 +08:00
if (img) await this.reply(img)
}
/** 发送output_log.txt日志文件 */
async logFile() {
2023-03-04 14:30:13 +08:00
if (!this.e.isPrivate) {
await this.e.reply('请私聊发送日志文件', false, { at: true })
return true
}
if (!this.e.file || !this.e.file.name.includes('txt')) {
await this.e.reply('请发送日志文件')
} else {
await this.e.reply('3.0版本后,日志文件已不能获取抽取记录链接\n请用安卓方式获取')
return true
}
let data = await new GachaLog(this.e).logFile()
if (!data) return false
if (typeof data != 'object') return
2023-08-18 10:19:48 +08:00
2023-08-19 19:48:02 +08:00
let img = await puppeteer.screenshot(`${data.srtempFile}gachaLog`, data)
2023-03-04 14:30:13 +08:00
if (img) await this.reply(img)
}
/** #抽卡记录 */
async getLog() {
this.e.isAll = !!(this.e.msg.includes('全部'))
2023-03-04 14:30:13 +08:00
let data = await new GachaLog(this.e).getLogData()
if (!data) return
let name = `${data.srtempFile}gachaLog`
if (this.e.isAll) {
name = `${data.srtempFile}gachaAllLog`
}
let img = await puppeteer.screenshot(name, data)
2023-03-04 14:30:13 +08:00
if (img) await this.reply(img)
}
/** 导出记录 */
async exportLog() {
2023-03-04 14:30:13 +08:00
if (this.e.isGroup) {
await this.reply('请私聊导出', false, { at: true })
return
}
let exportLog = new ExportLog(this.e)
if (this.e.msg.includes('json')) {
return await exportLog.exportJson()
} else {
return await exportLog.exportXlsx()
}
}
async logXlsx() {
2023-03-04 14:30:13 +08:00
if (!this.e.isPrivate) {
await this.e.reply('请私聊发送日志文件', false, { at: true })
return true
}
const gsTips = `不支持https://github.com/biuuu/genshin-wish-export项目导出的excel文件,如果是该项目的文件请发送任意消息取消excel导入后使用【#json导入记录】`;
const srTips = `注:适配https://github.com/biuuu/star-rail-warp-export项目导出的excel文件`;
await this.e.reply(`请发送xlsx文件该文件需要以${this.e?.isSr ? '*' : '#'}的uid命名100000000.xlsx\n否则可能无法正确识别,如果误触可发送任意消息取消导入\n${this.e?.isSr ? srTips : gsTips}`);
this.setContext('importLogXlsx');
}
async importLogXlsx() {
2023-03-04 14:30:13 +08:00
if (!this.e.file) {
await this.e.reply(`未检测到excel文件操作已取消请重新发送【${this.e?.isSr ? '*' : '#'}excel导入记录】`);
2023-03-04 14:30:13 +08:00
}
else {
this.e.isSr = this.getContext()?.importLogXlsx.isSr;
await new ExportLog(this.e).logXlsx();
}
this.finish('importLogXlsx');
2023-03-04 14:30:13 +08:00
}
async logJson() {
2023-03-04 14:30:13 +08:00
if (!this.e.isPrivate) {
await this.e.reply('请私聊发送日志文件', false, { at: true })
2023-03-04 14:30:13 +08:00
return true
}
const gsTips = `适配https://github.com/biuuu/genshin-wish-export项目导出的json文件`;
const srTips = `注:适配https://github.com/biuuu/star-rail-warp-export项目导出的json文件`;
await this.e.reply(`请发送json文件该文件需要以${this.e?.isSr ? '*' : '#'}的uid命名\n100000000.json否则可能无法正确识别如果误触可发送任意消息取消导入\n${this.e?.isSr ? srTips : gsTips}`);
this.setContext('importLogJson');
}
async importLogJson() {
this.e.isSr = this.getContext()?.importLogJson.isSr;
2023-03-04 14:30:13 +08:00
if (!this.e.file) {
await this.e.reply(`未检测到json文件操作已取消请重新发送【${this.e?.isSr ? '*' : '#'}json导入记录】`);
2023-03-04 14:30:13 +08:00
}
else {
await new ExportLog(this.e).logJson();
}
this.finish('importLogJson');
2023-03-04 14:30:13 +08:00
}
async help() {
await this.e.reply(segment.image(`file://${_path}/resources/logHelp/记录帮助.png`))
2023-03-04 14:30:13 +08:00
}
async helpPort() {
2023-03-04 14:30:13 +08:00
let msg = this.e.msg.replace(/#|帮助/g, '')
if (['电脑', 'pc'].includes(msg)) {
await this.e.reply(segment.image(`file://${_path}/resources/logHelp/记录帮助-电脑.png`))
2023-03-04 14:30:13 +08:00
} else if (['安卓'].includes(msg)) {
await this.e.reply(`安卓抽卡记录获取教程:${this.androidUrl}`)
} else if (['苹果', 'ios'].includes(msg)) {
await this.e.reply(segment.image(`file://${_path}/resources/logHelp/记录帮助-苹果.png`))
2023-03-04 14:30:13 +08:00
}
}
2023-08-18 10:19:48 +08:00
async logCount() {
2023-03-04 14:30:13 +08:00
let data = await new LogCount(this.e).count()
if (!data) return
let img = await puppeteer.screenshot(`${data.srtempFile}logCount`, data)
2023-03-04 14:30:13 +08:00
if (img) await this.reply(img)
}
}