-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
279 lines (247 loc) · 8.66 KB
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
var bangumi = require('./js/updateBangumi')
var httpServer = require('./js/httpServer')
var mark = require('./js/mark')
var mysql = require('mysql');
const Mirai = require('node-mirai-sdk');
const { Plain, At } = Mirai.MessageComponent;
let NoticeGroup = []
//初始化数据库
var con = InitDataBase();
//初始化机器人
var bot = InitMiraiBot();
//初始化接口服务
httpServer.InitHttpServer(con);
process.on('uncaughtException', (e) => {
console.log('有人点了份炒饭!');
// bot.sendGroupMessage("说了我们店里不卖炒饭!", 828937993)
console.log(e);
});
//注册事件
bot.onMessage(async message => {
console.log("message: ", message)
const { type, sender, messageChain, reply, quoteReply } = message;
let msg = '';
let img = ''
messageChain.forEach(chain => {
if (chain.type === 'Plain')
msg += Plain.value(chain); // 从 messageChain 中提取文字内容
if (chain.type === 'Image')
img = chain.url; // 从 messageChain 中提取文字内容
});
// console.log("msg: ", msg)
// console.log("img: ", img)
// console.log("sender: ", sender)
//测试主动群聊
if(msg.includes("t1")){
console.log("sender.group.id ", sender.group.id)
bot.sendGroupMessage("Hello", sender.group.id)
}
if(String(msg).split(" ")[0] == "bgm"){
//------------------------------------------
//-----------------番剧订阅 Start------------
// bgm <command> [params]
// bgm list : 查询可订阅番剧列表
// bgm mylist: 我的订阅列表
// bgm add|del <番剧ID,番剧ID>: 增删我的订阅
// bgm new: 我当前订阅番剧的最新资源
// bgm manage add|del <番剧名称>
// 主动更新番剧资源: bgm update
// 订阅通知开关选项: bgm notice on/off
// 查询最新订阅更新: bgm new
// 进入订阅管理网页: bgm manageWeb
// 查询自己订阅列表: bgm mylist
// 进行番剧列表管理: bgm manage <queryAll|add|del> [poarams]
// 新增删除订约番剧: bgm add|del 番剧id
//------------------------------------------
//主动查询番剧更新情况
if (msg.includes('bgm help') || msg.includes('bgm -h')){
let msg = `指令格式:bgm <command> [params]
查询当前可订阅番剧:bgm list
查询自己的订阅列表:bgm mylist
查询自己最新订阅:bgm new
新增我的订阅:bgm add 番剧ID,番剧ID
删除我的订阅:bgm del 番剧ID,番剧ID
新增番剧列表:bgm manage add 番剧名称,番剧别名
删除番剧列表:bgm manage del 番剧ID,番剧ID`
bot.quoteReply([Plain(msg)], message);
}
//主动查询番剧更新情况
if (msg.includes('bgm update')){
console.log("开始查询番剧更新情况")
// DealBangumiUpdate(true, sender.group.id, bot);
bangumi.autoUpdate(con).then(function(res){
console.log("res1 ", res)
if(res.hasUpdate){
let actions = [
Plain(res.msg)
]
res.users.forEach(qq => {
actions.push(At(qq))
});
bot.sendGroupMessage(actions, sender.group.id)
}
})
}
//开启订阅通知
if (msg.includes('bgm notice')){
if(msg.includes('bgm notice on')){
//检查是否已开启
if(NoticeGroup.filter(function(item){
return item.groupId == sender.group.id
}).length == 0) {
let interval = setInterval( function(){
bangumi.autoUpdate(con).then(function(res){
if(res.hasUpdate){
let actions = [
Plain(res.msg)
]
res.users.forEach(qq => {
actions.push(At(qq))
});
bot.sendGroupMessage(actions, sender.group.id)
}
})
}, 1000 * 60 * 1); //每1分钟拉取一次
NoticeGroup.push({
groupId: sender.group.id,
interval: interval
})
if(interval) bot.quoteReply([Plain('订阅通知已开启')], message);
}else{
bot.quoteReply([Plain('本群已开启订阅通知,憋重复发命令')], message);
}
}else if(msg.includes('bgm notice off')){
let arr = NoticeGroup.filter(function(item){
return item.groupId == sender.group.id
})
if(arr.length == 0){
bot.quoteReply([Plain('本群并未开启订阅通知')], message);
}else{
clearInterval(arr[0].interval)
bot.quoteReply([Plain('订阅通知已关闭')], message);
}
}
}
//查询该用户订阅的所有新番的最新一集
if(msg.includes('bgm new')){
bangumi.getUpdateInfo(con, sender.id).then(function(result){
bot.quoteReply([Plain(result)], message);
});
}
if(msg.includes('bgm manageWeb')){
let returnMsg = `目前仅提供网页端订阅管理功能,你的管理页面:http://budeliao.top/bangumi/subscribe?qq=${sender.id}`
reply(returnMsg);
}
//订阅列表
if(msg.includes('bgm mylist')){
bangumi.querySubscribeList(con, sender.id).then(msg => {
bot.quoteReply([Plain(msg)], message);
})
}
if(msg.includes('bgm manage')){
bangumi.bungumiManage(msg, sender, con).then( msg => {
bot.quoteReply([Plain(msg)], message);
})
}
if(msg.includes('bgm list')){
bangumi.bungumiManage("bgm manage queryAll", sender, con).then( msg => {
bot.quoteReply([Plain(msg)], message);
})
}
if(msg.includes('bgm add') || msg.includes('bgm del')){
bangumi.DealSubscribe(msg, sender, con).then( msg => {
bot.quoteReply([Plain(msg)], message);
})
}
}
//添加新mark
if(msg.includes('#mark ')){
mark.insert(con, sender.id, msg, img).then(function(result){
bot.quoteReply([Plain(result)], message);
});
}
//------------------------------------------
//-----------------番剧订阅 End--------------
//------------------------------------------
if(msg.includes('setu')){
reply('别急,你先别急');
}
// 直接回复
// if (msg.includes('收到了吗'))
// reply('收到了收到了'); // 或者: bot.reply('收到了收到了', message)
// // 引用回复
// else if (msg.includes('引用我'))
// quoteReply([At(sender.id), Plain('好的')]); // 或者: bot.quoteReply(messageChain, message)
// // 撤回消息
// else if (msg.includes('撤回'))
// bot.recall(message);
// // 发送图片,参数接受图片路径或 Buffer
// else if (msg.includes('来张图'))
// bot.sendImageMessage("./image.jpg", message);
});
/* 开始监听消息(*)
* 'all' - 监听好友和群
* 'friend' - 只监听好友
* 'group' - 只监听群
* 'temp' - 只监听临时会话
*/
bot.listen('all'); // 相当于 bot.listen('friend', 'group', 'temp')
// 退出前向 mirai-http-api 发送释放指令(*)
process.on('exit', () => {
bot.release();
});
function InitDataBase(){
var con = mysql.createConnection({
host : 'localhost',
user : 'root',
password : '139755',
database : 'bangumi'
});
con.connect();
return con;
}
function InitMiraiBot(){
const bot = new Mirai({
host: 'http://127.0.0.1:8082',
verifyKey: 'INITKEYEC6eueUp',
qq: 570918181,
enableWebsocket: true,
wsOnly: true,
});
// auth 认证(*)
bot.onSignal('authed', () => {
console.log(`Authed with session key ${bot.sessionKey}`);
bot.verify();
});
// session 校验回调
bot.onSignal('verified', async () => {
console.log(`Verified with session key ${bot.sessionKey}`);
// 获取好友列表,需要等待 session 校验之后 (verified) 才能调用 SDK 中的主动接口
const friendList = await bot.getFriendList();
console.log(`There are ${friendList.length} friends in bot`);
});
return bot;
}
function DealBangumiUpdate(isActice, groupId, bot){
console.log("DealBangumiUpdate")
bangumi.updateBangumi(con).then(function(res){
if(res.hasUpdate){
let actions = [
Plain(res.msg)
]
res.users.forEach(qq => {
actions.push(At(qq))
});
console.log("发生更新,进行通知 actions", actions)
console.log("发生更新,进行通知 groupId", groupId)
bot.sendGroupMessage(actions, groupId).then(res => {
console.log("res ", res)
})
}else {
console.log("未发生更新,如果主动则进行通知")
if(isActice)
bot.sendGroupMessage("很遗憾,并没有番剧更新捏", groupId);
// reply([Plain("很遗憾,并没有番剧更新捏"), At(sender.id)], message);
}
})
}