代码拉取完成,页面将自动刷新
同步操作将从 高厉害/Mirai-js 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
const { Bot, Message, Middleware } = require('./src');
(async () => {
try {
const baseUrl = 'http://localhost:8080';
const verifyKey = '123456789';
const qq = 3070539027;
const bot = new Bot();
// 在 mirai-console 登录你的 bot
// 创建一个会话
await bot.open({
// mirai-api-http 的服务端地址,
baseUrl,
// 要绑定的 qq,须确保该用户已在 mirai-console 登录
qq,
// verifyKey 用于验证连接者的身份,在插件配置文件中设置
verifyKey,
});
// 监听好友消息事件
bot.on('FriendMessage', async ({
messageChain,
sender: {
id: fromQQ,
nickname: fromQQNickName,
remark
}
}) => {
console.log({ fromQQ, fromQQNickName, remark });
const { id: messageId } = messageChain[0];
bot.sendMessage({
friend: fromQQ,
quote: messageId,
message: new Message().addText('hello world!'),
});
});
// 监听群消息事件
bot.on('GroupMessage', async ({
messageChain,
sender: {
id: fromQQ,
memberName: fromNickname,
permission: fromQQPermission,
group: {
id: fromGroup,
name: groupName,
permission: botPermission
}
}
}) => {
console.log({ fromQQ, fromNickname, fromQQPermission });
console.log({ fromGroup, groupName, botPermission });
// 复读机 ;)
const { id: messageId } = messageChain[0];
bot.sendMessage({
group: fromGroup,
quote: messageId,
messageChain
});
// 你可以像这样来判断群成员的权限
switch (fromQQPermission) {
case Bot.groupPermission.OWNER:
// 群主
break;
case Bot.groupPermission.ADMINISTRATOR:
// 管理员
break;
case Bot.groupPermission.MEMBER:
// 普通群成员
break;
}
});
// 使用中间件
// 过滤分类 message
bot.on('FriendMessage', new Middleware()
.messageProcessor(['Plain', 'Image'])
.textProcessor().done(({
// 第一个中间件,分类过的 messageChain
classified,
// 第二个中间件,文本部分
text,
messageChain,
sender: {
id: fromQQ,
nickname: fromQQNickName,
remark
}
}) => {
console.log({ fromQQ, fromQQNickName, remark, messageChain, classified, text });
bot.sendMessage({
friend: fromQQ,
message: new Message().addText(text),
});
}));
// 自动重新登陆
bot.on('BotOfflineEventForce',
new Middleware()
.autoReLogin({ password: 'your password' })
.done()
);
} catch (err) {
console.log(err);
}
})();
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。