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

204 lines
5.2 KiB
JavaScript
Raw Normal View History

2023-03-04 14:30:13 +08:00
import plugin from '../../../lib/plugins/plugin.js'
import MysNews from '../model/mysNews.js'
import MysSrNews from '../model/mysSrNews.js'
2023-03-04 14:30:13 +08:00
import fs from 'node:fs'
import lodash from 'lodash'
import gsCfg from '../model/gsCfg.js'
import YAML from 'yaml'
gsCfg.cpCfg('mys', 'pushNews')
export class mysNews extends plugin {
constructor (e) {
super({
name: '米游社公告',
dsc: '#公告 #资讯 #活动',
event: 'message',
priority: 700,
rule: [
{
reg: '^(#*官方(公告|资讯|活动)|#*原神(公告|资讯|活动)|#公告|#资讯|#活动)[0-9]*$',
fnc: 'news'
},
{
reg: '^(#米游社|#mys)(.*)',
fnc: 'mysSearch'
},
{
reg: '^(#*铁道(公告|资讯|活动)|#*星铁(公告|资讯|活动)|#星穹公告|#星穹资讯|#星穹活动)[0-9]*$',
fnc: 'srNews'
},
{
reg: '^#*(开启|关闭)(铁道|星铁|星穹)(公告|资讯)推送$',
fnc: 'srSetPush'
},
{
reg: '^#推送(铁道|星铁|星穹)(公告|资讯)$',
permission: 'master',
fnc: 'srMysNewsTask'
},
2023-03-04 14:30:13 +08:00
{
reg: '(.*)(bbs.mihoyo.com|miyoushe.com)/ys(.*)/article(.*)',
fnc: 'mysUrl'
},
{
reg: '#*原(石|神)(预估|盘点)$',
fnc: 'ysEstimate'
},
{
reg: '^#*(开启|关闭)(公告|资讯)推送$',
fnc: 'setPush'
},
{
reg: '^#推送(公告|资讯)$',
permission: 'master',
fnc: 'mysNewsTask'
}
]
})
this.file = './plugins/genshin/config/mys.pushNews.yaml'
/** 定时任务 */
2023-05-28 15:25:23 +08:00
this.task = [
{
cron: gsCfg.getConfig('mys', 'pushNews').pushTime,
name: '米游社公告推送任务',
fnc: () => this.mysNewsTask(),
log: false
},
{
cron: gsCfg.getConfig('mys', 'pushNews').pushTime,
name: '崩坏星穹铁道公告推送任务',
fnc: () => this.srMysNewsTask(),
2023-05-28 15:25:23 +08:00
log: false
}
]
2023-03-04 14:30:13 +08:00
}
async init () {
if (fs.existsSync(this.file)) return
fs.copyFileSync('./plugins/genshin/defSet/mys/pushNews.yaml', this.file)
}
async news () {
let data = await new MysNews(this.e).getNews()
if (!data) return
await this.reply(data)
}
async srNews () {
let data = await new MysSrNews(this.e).getNews()
if (!data) return
await this.reply(data)
}
2023-03-04 14:30:13 +08:00
async mysNewsTask () {
2023-05-28 15:25:23 +08:00
let mysNews = new MysNews(this.e)
await mysNews.mysNewsTask()
}
async srMysNewsTask () {
let mysNews = new MysSrNews(this.e)
2023-03-04 14:30:13 +08:00
await mysNews.mysNewsTask()
}
async mysSearch () {
if (/签到/g.test(this.e.msg)) return false
let data = await new MysNews(this.e).mysSearch()
if (!data) return
await this.reply(data)
}
async mysUrl () {
let data = await new MysNews(this.e).mysUrl()
if (!data) return
await this.reply(data)
}
async ysEstimate () {
let data = await new MysNews(this.e).ysEstimate()
if (!data) return
await this.reply(data)
}
async srSetPush () {
if (!this.e.isGroup) {
await this.reply('推送请在群聊中设置')
return
}
if (!this.e.member?.is_admin && !this.e.isMaster) {
await this.reply('暂无权限,只有管理员才能操作', true)
return true
}
let cfg = gsCfg.getConfig('mys', 'pushNews')
let type = 'srannounceGroup'
let typeName = '公告'
if (this.e.msg.includes('资讯')) {
type = 'srinfoGroup'
typeName = '资讯'
}
let model
let msg = `崩坏星穹铁道${typeName}推送已`
if (this.e.msg.includes('开启')) {
model = '开启'
cfg[type].push(this.e.group_id)
cfg[type] = lodash.uniq(cfg[type])
msg += `${model}\n如有最新${typeName}将自动推送至此`
} else {
model = '关闭'
msg += `${model}`
cfg[type] = lodash.difference(cfg[type], [this.e.group_id])
}
let yaml = YAML.stringify(cfg)
fs.writeFileSync(this.file, yaml, 'utf8')
logger.mark(`${this.e.logFnc} ${model}${typeName}推送:${this.e.group_id}`)
await this.reply(msg)
}
2023-03-04 14:30:13 +08:00
async setPush () {
if (!this.e.isGroup) {
await this.reply('推送请在群聊中设置')
return
}
if (!this.e.member?.is_admin && !this.e.isMaster) {
await this.reply('暂无权限,只有管理员才能操作', true)
return true
}
let cfg = gsCfg.getConfig('mys', 'pushNews')
let type = 'announceGroup'
let typeName = '公告'
if (this.e.msg.includes('资讯')) {
type = 'infoGroup'
typeName = '资讯'
}
let model
let msg = `原神${typeName}推送已`
if (this.e.msg.includes('开启')) {
model = '开启'
cfg[type].push(this.e.group_id)
cfg[type] = lodash.uniq(cfg[type])
msg += `${model}\n如有最新${typeName}将自动推送至此`
} else {
model = '关闭'
msg += `${model}`
cfg[type] = lodash.difference(cfg[type], [this.e.group_id])
}
let yaml = YAML.stringify(cfg)
fs.writeFileSync(this.file, yaml, 'utf8')
logger.mark(`${this.e.logFnc} ${model}${typeName}推送:${this.e.group_id}`)
await this.reply(msg)
}
}