2023-03-04 14:30:13 +08:00
|
|
|
import plugin from '../../../lib/plugins/plugin.js'
|
|
|
|
import MysNews from '../model/mysNews.js'
|
|
|
|
import fs from 'node:fs'
|
|
|
|
import lodash from 'lodash'
|
|
|
|
import gsCfg from '../model/gsCfg.js'
|
|
|
|
import YAML from 'yaml'
|
2024-04-19 00:45:50 +08:00
|
|
|
import common from '../../../lib/common/common.js'
|
|
|
|
import fetch from 'node-fetch'
|
2023-03-04 14:30:13 +08:00
|
|
|
|
|
|
|
gsCfg.cpCfg('mys', 'pushNews')
|
|
|
|
export class mysNews extends plugin {
|
2023-07-30 11:05:48 +08:00
|
|
|
constructor(e) {
|
2023-03-04 14:30:13 +08:00
|
|
|
super({
|
|
|
|
name: '米游社公告',
|
|
|
|
dsc: '#公告 #资讯 #活动',
|
|
|
|
event: 'message',
|
2023-12-12 03:15:32 +08:00
|
|
|
priority: 7000,
|
2023-03-04 14:30:13 +08:00
|
|
|
rule: [
|
|
|
|
{
|
2023-12-12 03:15:32 +08:00
|
|
|
reg: '^#*(官方|星铁|原神|崩坏三|崩三|绝区零|崩坏二|崩二|崩坏学园二|未定|未定事件簿)?(公告|资讯|活动)(列表|[0-9])*$',
|
2023-03-04 14:30:13 +08:00
|
|
|
fnc: 'news'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
reg: '^(#米游社|#mys)(.*)',
|
|
|
|
fnc: 'mysSearch'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
reg: '(.*)(bbs.mihoyo.com|miyoushe.com)/ys(.*)/article(.*)',
|
|
|
|
fnc: 'mysUrl'
|
|
|
|
},
|
|
|
|
{
|
2024-01-31 17:41:09 +08:00
|
|
|
reg: '^#(原(神|石)|星(铁|琼))?(预估|盘点)$',
|
2024-01-27 17:53:32 +08:00
|
|
|
fnc: 'mysEstimate'
|
2023-03-04 14:30:13 +08:00
|
|
|
},
|
|
|
|
{
|
2023-07-30 11:05:48 +08:00
|
|
|
reg: '^#*(星铁|原神|崩坏三|崩三|绝区零|崩坏二|崩二|崩坏学园二|未定|未定事件簿)?(开启|关闭)(公告|资讯)推送$',
|
2023-03-04 14:30:13 +08:00
|
|
|
fnc: 'setPush'
|
|
|
|
},
|
|
|
|
{
|
2023-07-30 11:05:48 +08:00
|
|
|
reg: '^#(星铁|原神|崩坏三|崩三|绝区零|崩坏二|崩二|崩坏学园二|未定|未定事件簿)?推送(公告|资讯)$',
|
2023-03-04 14:30:13 +08:00
|
|
|
permission: 'master',
|
|
|
|
fnc: 'mysNewsTask'
|
2024-04-20 01:26:14 +08:00
|
|
|
},
|
|
|
|
{
|
|
|
|
reg: '^#(星铁|原神)(开启|关闭)到期活动(预警)?(推送)?$',
|
2024-04-19 00:45:50 +08:00
|
|
|
fnc: 'setActivityPush'
|
2023-03-04 14:30:13 +08:00
|
|
|
}
|
|
|
|
]
|
|
|
|
})
|
|
|
|
|
|
|
|
this.file = './plugins/genshin/config/mys.pushNews.yaml'
|
|
|
|
|
|
|
|
/** 定时任务 */
|
2023-07-30 11:05:48 +08:00
|
|
|
this.task = {
|
|
|
|
cron: gsCfg.getConfig('mys', 'pushNews').pushTime,
|
|
|
|
name: '米游社公告推送任务',
|
|
|
|
fnc: () => this.mysNewsTask(),
|
|
|
|
log: false
|
|
|
|
}
|
2023-03-04 14:30:13 +08:00
|
|
|
}
|
|
|
|
|
2023-07-30 11:05:48 +08:00
|
|
|
async init() {
|
2023-03-04 14:30:13 +08:00
|
|
|
if (fs.existsSync(this.file)) return
|
|
|
|
|
|
|
|
fs.copyFileSync('./plugins/genshin/defSet/mys/pushNews.yaml', this.file)
|
|
|
|
}
|
|
|
|
|
2023-07-30 11:05:48 +08:00
|
|
|
async news() {
|
|
|
|
let gids = this.gids()
|
|
|
|
let data = await new MysNews(this.e).getNews(gids)
|
2023-03-04 14:30:13 +08:00
|
|
|
if (!data) return
|
|
|
|
await this.reply(data)
|
|
|
|
}
|
|
|
|
|
2023-07-30 11:05:48 +08:00
|
|
|
async mysNewsTask() {
|
2023-05-28 15:25:23 +08:00
|
|
|
let mysNews = new MysNews(this.e)
|
2024-04-19 00:45:50 +08:00
|
|
|
this.ActivityPush()
|
2023-05-07 01:28:09 +08:00
|
|
|
await mysNews.mysNewsTask()
|
|
|
|
}
|
2024-04-19 00:45:50 +08:00
|
|
|
async ActivityPush() {
|
|
|
|
let now = new Date()
|
|
|
|
now = now.getHours();
|
|
|
|
if(now < 10) return
|
|
|
|
let pushGroupList
|
|
|
|
try {
|
|
|
|
pushGroupList = YAML.parse(fs.readFileSync(this.file, `utf8`))
|
|
|
|
} catch (error) {
|
2024-04-20 01:26:14 +08:00
|
|
|
logger.error(`[米游社活动到期推送] 活动到期预警推送失败:无法获取配置文件信息\n${error}`)
|
2024-04-19 00:45:50 +08:00
|
|
|
return
|
|
|
|
}
|
2024-04-20 01:26:14 +08:00
|
|
|
if((!pushGroupList.gsActivityPush || pushGroupList.gsActivityPush == {}) && (!pushGroupList.srActivityPush || pushGroupList.srActivityPush == {})) return
|
2024-04-19 00:45:50 +08:00
|
|
|
let BotidList = []
|
2024-04-20 01:26:14 +08:00
|
|
|
let ActivityPushYaml = {...pushGroupList.gsActivityPush, ...pushGroupList.srActivityPush}
|
|
|
|
for (let item in ActivityPushYaml) {
|
2024-04-19 00:45:50 +08:00
|
|
|
BotidList.push(item)
|
|
|
|
}
|
2024-04-20 01:26:14 +08:00
|
|
|
let gsActivityList = await this.getGsActivity()
|
|
|
|
let srActivityList = await this.getSrActivity()
|
|
|
|
let ActivityList = []
|
|
|
|
for (let item of srActivityList) {
|
|
|
|
ActivityList.push({ game: `sr`, subtitle: item.title, banner: item.img, title: item.title, end_time: item.end_time })
|
|
|
|
}
|
|
|
|
for (let item of gsActivityList) {
|
|
|
|
ActivityList.push({ game: 'gs', subtitle: item.subtitle, banner: item.banner, title: item.title, end_time: item.end_time})
|
|
|
|
}
|
2024-04-19 00:45:50 +08:00
|
|
|
if(ActivityList.length === 0) return
|
|
|
|
for (let item of BotidList) {
|
|
|
|
let redisapgl = await redis.get(`Yz:apgl:${item}`)
|
|
|
|
let date = await this.getDate()
|
|
|
|
redisapgl = JSON.parse(redisapgl)
|
|
|
|
if(!redisapgl || redisapgl.date !== date) {
|
|
|
|
redisapgl = {
|
|
|
|
date,
|
2024-04-20 01:26:14 +08:00
|
|
|
GroupList: ActivityPushYaml[item]
|
2024-04-19 00:45:50 +08:00
|
|
|
}
|
|
|
|
}
|
2024-04-20 01:26:14 +08:00
|
|
|
if(!Array.isArray(redisapgl.GroupList) || redisapgl.GroupList.length == 0) continue
|
|
|
|
if(!Bot[item]) {
|
|
|
|
redisapgl.GroupList.shift()
|
|
|
|
await redis.set(`Yz:apgl:${item}`, JSON.stringify(redisapgl))
|
|
|
|
continue
|
|
|
|
}
|
2024-04-19 00:45:50 +08:00
|
|
|
for (let a of ActivityList) {
|
2024-04-20 13:54:15 +08:00
|
|
|
if((!pushGroupList.srActivityPush || !pushGroupList.srActivityPush[item] || !pushGroupList.srActivityPush[item].includes(redisapgl.GroupList[0])) && a.game === `sr`) continue
|
|
|
|
if((!pushGroupList.gsActivityPush || !pushGroupList.gsActivityPush[item] || !pushGroupList.gsActivityPush[item].includes(redisapgl.GroupList[0])) && a.game === `gs`) continue
|
2024-04-20 01:26:14 +08:00
|
|
|
let pushGame
|
|
|
|
if(a.game === `sr`) pushGame = `星铁`
|
|
|
|
if(a.game === `gs`) pushGame = `原神`
|
2024-04-19 00:45:50 +08:00
|
|
|
let endDt = a.end_time
|
|
|
|
endDt = endDt.replace(/\s/, `T`)
|
|
|
|
let todayt = new Date()
|
|
|
|
endDt = new Date(endDt)
|
|
|
|
let sydate = await this.calculateRemainingTime(todayt, endDt)
|
|
|
|
let msgList = [
|
2024-04-20 01:26:14 +08:00
|
|
|
`【${pushGame}活动即将结束通知】`,
|
2024-04-19 00:45:50 +08:00
|
|
|
`\n活动:${a.subtitle}`,
|
|
|
|
segment.image(a.banner),
|
|
|
|
`描述:${a.title}`,
|
|
|
|
`\n活动剩余时间:${sydate.days}天${sydate.hours}小时${sydate.minutes}分钟${sydate.seconds}秒`,
|
|
|
|
`\n活动结束时间:${a.end_time}`
|
|
|
|
]
|
2024-04-19 12:16:55 +08:00
|
|
|
logger.mark(`[米游社活动到期推送] 开始推送 ${item}:${redisapgl.GroupList[0]} ${a.subtitle}`)
|
2024-04-19 00:45:50 +08:00
|
|
|
await common.sleep(5000)
|
|
|
|
Bot[item].pickGroup(redisapgl.GroupList[0]).sendMsg(msgList)
|
2024-04-19 12:16:55 +08:00
|
|
|
.then(() => {}).catch((err) => logger.error(`[米游社活动到期推送] ${item}:${redisapgl.GroupList[0]} 推送失败,错误信息${err}`))
|
2024-04-19 00:45:50 +08:00
|
|
|
}
|
|
|
|
redisapgl.GroupList.shift()
|
|
|
|
await redis.set(`Yz:apgl:${item}`, JSON.stringify(redisapgl))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
async getDate() {
|
|
|
|
const currentDate = new Date();
|
|
|
|
const year = currentDate.getFullYear();
|
|
|
|
const month = (currentDate.getMonth() + 1).toString().padStart(2, '0');
|
|
|
|
const day = currentDate.getDate().toString().padStart(2, '0');
|
|
|
|
return `${year}-${month}-${day}`
|
|
|
|
}
|
|
|
|
async getGsActivity() {
|
|
|
|
let gshd
|
|
|
|
try {
|
|
|
|
gshd = await fetch(`https://hk4e-api.mihoyo.com/common/hk4e_cn/announcement/api/getAnnList?game=hk4e&game_biz=hk4e_cn&lang=zh-cn&bundle_id=hk4e_cn&platform=pc®ion=cn_gf01&level=55&uid=100000000`)
|
|
|
|
gshd = await gshd.json()
|
|
|
|
} catch {
|
|
|
|
return []
|
|
|
|
}
|
|
|
|
let hdlist = []
|
|
|
|
let result = []
|
|
|
|
for (let item of gshd.data.list[1].list) {
|
|
|
|
if(item.tag_label.includes(`活动`) && !item.title.includes(`传说任务`) && !item.title.includes(`游戏公告`)) hdlist.push(item)
|
|
|
|
}
|
|
|
|
for (let item of hdlist) {
|
|
|
|
let endDt = item.end_time
|
|
|
|
endDt = endDt.replace(/\s/, `T`)
|
|
|
|
let todayt = new Date()
|
|
|
|
endDt = new Date(endDt)
|
|
|
|
let sydate = await this.calculateRemainingTime(todayt, endDt)
|
|
|
|
if(sydate.days <= 1) result.push(item)
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
2024-04-20 01:26:14 +08:00
|
|
|
async getSrActivity() {
|
|
|
|
let srhd
|
|
|
|
try {
|
|
|
|
srhd = await fetch(`https://hkrpg-api.mihoyo.com/common/hkrpg_cn/announcement/api/getAnnList?game=hkrpg&game_biz=hkrpg_cn&lang=zh-cn&auth_appid=announcement&authkey_ver=1&bundle_id=hkrpg_cn&channel_id=1&level=65&platform=pc®ion=prod_gf_cn&sdk_presentation_style=fullscreen&sdk_screen_transparent=true&sign_type=2&uid=100000000`)
|
|
|
|
srhd = await srhd.json()
|
|
|
|
} catch {
|
|
|
|
return []
|
|
|
|
}
|
|
|
|
let hdlist = []
|
|
|
|
let result = []
|
|
|
|
for (let item of srhd.data.pic_list[0].type_list[0].list) {
|
|
|
|
if (item.title) hdlist.push(item)
|
|
|
|
}
|
|
|
|
for (let item of hdlist) {
|
|
|
|
let endDt = item.end_time
|
|
|
|
endDt = endDt.replace(/\s/, `T`)
|
|
|
|
let todayt = new Date()
|
|
|
|
endDt = new Date(endDt)
|
|
|
|
let sydate = await this.calculateRemainingTime(todayt, endDt)
|
|
|
|
if (sydate.days <= 1) result.push(item)
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
2024-04-19 00:45:50 +08:00
|
|
|
async calculateRemainingTime(startDate, endDate) {
|
|
|
|
const difference = endDate - startDate;
|
|
|
|
|
|
|
|
const days = Math.floor(difference / (1000 * 60 * 60 * 24));
|
|
|
|
const hours = Math.floor((difference % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
|
|
|
|
const minutes = Math.floor((difference % (1000 * 60 * 60)) / (1000 * 60));
|
|
|
|
const seconds = Math.floor((difference % (1000 * 60)) / 1000);
|
|
|
|
|
|
|
|
return { days, hours, minutes, seconds };
|
|
|
|
}
|
|
|
|
async setActivityPush() {
|
|
|
|
if (!this.e.isGroup) {
|
|
|
|
await this.reply('推送请在群聊中设置')
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if (!this.e.member?.is_admin && !this.e.isMaster) {
|
|
|
|
await this.reply('暂无权限,只有管理员才能操作', true)
|
|
|
|
return true
|
|
|
|
}
|
2024-04-20 01:26:14 +08:00
|
|
|
let typeName
|
|
|
|
let pushGame
|
|
|
|
if(this.e.msg.includes('星铁')) {
|
|
|
|
typeName = `srActivityPush`
|
|
|
|
pushGame = `星铁`
|
|
|
|
} else {
|
|
|
|
typeName = `gsActivityPush`
|
|
|
|
pushGame = `原神`
|
|
|
|
}
|
2024-04-19 00:45:50 +08:00
|
|
|
let cfg = gsCfg.getConfig('mys', 'pushNews')
|
2024-04-20 01:26:14 +08:00
|
|
|
if(!cfg[typeName]) cfg[typeName] = {}
|
|
|
|
if(!Array.isArray(cfg[typeName][this.e.self_id])) cfg[typeName][this.e.self_id] = []
|
2024-04-19 00:45:50 +08:00
|
|
|
let model
|
2024-04-20 01:26:14 +08:00
|
|
|
let msg = `${pushGame}活动到期预警推送已`
|
2024-04-19 00:45:50 +08:00
|
|
|
if(this.e.msg.includes('开启')) {
|
|
|
|
model = '开启'
|
2024-04-20 01:26:14 +08:00
|
|
|
cfg[typeName][this.e.self_id].push(this.e.group_id)
|
|
|
|
cfg[typeName][this.e.self_id] = lodash.uniq(cfg[typeName][this.e.self_id])
|
2024-04-19 00:45:50 +08:00
|
|
|
msg += `${model}\n如有即将到期的活动将自动推送至此`
|
|
|
|
} else {
|
|
|
|
model = '关闭'
|
|
|
|
msg += model
|
2024-04-20 01:26:14 +08:00
|
|
|
cfg[typeName][this.e.self_id] = lodash.difference(cfg[typeName][this.e.self_id], [this.e.group_id])
|
|
|
|
if (lodash.isEmpty(cfg[typeName][this.e.self_id]))
|
|
|
|
delete cfg[typeName][this.e.self_id]
|
2024-04-19 00:45:50 +08:00
|
|
|
}
|
|
|
|
let yaml = YAML.stringify(cfg)
|
|
|
|
fs.writeFileSync(this.file, yaml, 'utf8')
|
2023-05-07 01:28:09 +08:00
|
|
|
|
2024-04-20 01:26:14 +08:00
|
|
|
logger.mark(`${this.e.logFnc} ${model}${pushGame}活动到期预警:${this.e.group_id}`)
|
2024-04-19 00:45:50 +08:00
|
|
|
await this.reply(msg)
|
|
|
|
}
|
2023-07-30 11:05:48 +08:00
|
|
|
async mysSearch() {
|
2023-03-04 14:30:13 +08:00
|
|
|
if (/签到/g.test(this.e.msg)) return false
|
|
|
|
let data = await new MysNews(this.e).mysSearch()
|
|
|
|
if (!data) return
|
|
|
|
await this.reply(data)
|
|
|
|
}
|
|
|
|
|
2023-07-30 11:05:48 +08:00
|
|
|
async mysUrl() {
|
2023-03-04 14:30:13 +08:00
|
|
|
let data = await new MysNews(this.e).mysUrl()
|
|
|
|
if (!data) return
|
|
|
|
await this.reply(data)
|
|
|
|
}
|
|
|
|
|
2024-01-27 17:53:32 +08:00
|
|
|
async mysEstimate() {
|
|
|
|
let args = ['版本原石', 218945821]
|
|
|
|
if (/星(琼|铁)/.test(this.e.msg))
|
|
|
|
args = ['可获取星琼', 73779489]
|
|
|
|
let data = await new MysNews(this.e).mysEstimate(...args)
|
2023-03-04 14:30:13 +08:00
|
|
|
if (!data) return
|
|
|
|
await this.reply(data)
|
|
|
|
}
|
|
|
|
|
2023-07-30 11:05:48 +08:00
|
|
|
async setPush() {
|
2023-05-07 01:28:09 +08:00
|
|
|
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')
|
2023-07-30 11:05:48 +08:00
|
|
|
let gids = this.gids()
|
2023-05-07 01:28:09 +08:00
|
|
|
|
2023-07-30 11:05:48 +08:00
|
|
|
let game = gids == 1 ? 'bbb' : gids == 2 ? 'gs' : gids == 3 ? 'bb' : gids == 4 ? 'wd' : gids == 6 ? 'sr' : 'zzz'
|
|
|
|
let type = `${game}announceGroup`
|
2023-05-07 01:28:09 +08:00
|
|
|
let typeName = '公告'
|
|
|
|
if (this.e.msg.includes('资讯')) {
|
2023-07-30 11:05:48 +08:00
|
|
|
type = `${game}infoGroup`
|
2023-05-07 01:28:09 +08:00
|
|
|
typeName = '资讯'
|
|
|
|
}
|
|
|
|
|
|
|
|
let model
|
2023-07-30 11:05:48 +08:00
|
|
|
let name = await new MysNews(this.e).game(gids)
|
|
|
|
let msg = `${name}${typeName}推送已`
|
|
|
|
if (!Array.isArray(cfg[type][this.e.self_id]))
|
|
|
|
cfg[type][this.e.self_id] = []
|
|
|
|
|
2023-05-07 01:28:09 +08:00
|
|
|
if (this.e.msg.includes('开启')) {
|
|
|
|
model = '开启'
|
2023-07-30 11:05:48 +08:00
|
|
|
cfg[type][this.e.self_id].push(this.e.group_id)
|
|
|
|
cfg[type][this.e.self_id] = lodash.uniq(cfg[type][this.e.self_id])
|
2023-05-07 01:28:09 +08:00
|
|
|
msg += `${model}\n如有最新${typeName}将自动推送至此`
|
|
|
|
} else {
|
|
|
|
model = '关闭'
|
|
|
|
msg += `${model}`
|
2023-07-30 11:05:48 +08:00
|
|
|
cfg[type][this.e.self_id] = lodash.difference(cfg[type][this.e.self_id], [this.e.group_id])
|
2023-08-05 19:38:26 +08:00
|
|
|
if (lodash.isEmpty(cfg[type][this.e.self_id]))
|
|
|
|
delete cfg[type][this.e.self_id]
|
2023-05-07 01:28:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
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-07-30 11:05:48 +08:00
|
|
|
gids() {
|
2023-12-27 22:46:34 +08:00
|
|
|
let msg = this.e.msg.replace(/[#公告资讯活动开启关闭推送列表0-9]/g, '');
|
2023-07-30 11:05:48 +08:00
|
|
|
switch (msg) {
|
|
|
|
case '崩坏三':
|
|
|
|
case '崩三':
|
|
|
|
return 1
|
|
|
|
case '原神':
|
|
|
|
return 2
|
|
|
|
case '崩坏学园二':
|
|
|
|
case '崩坏二':
|
|
|
|
case '崩二':
|
|
|
|
return 3
|
|
|
|
case '未定事件簿':
|
|
|
|
case '未定':
|
|
|
|
return 4
|
|
|
|
case '星铁':
|
|
|
|
return 6
|
|
|
|
case '绝区零':
|
|
|
|
return 8
|
2023-03-04 14:30:13 +08:00
|
|
|
}
|
2023-07-30 11:05:48 +08:00
|
|
|
return 2
|
2023-03-04 14:30:13 +08:00
|
|
|
}
|
2023-06-07 04:51:35 +08:00
|
|
|
}
|