import { BuddyReqType, ChatType, GroupNotifyMsgStatus, GroupNotifyMsgType, InstanceContext, NapCatCore, NodeIKernelBuddyListener, NodeIKernelGroupListener, NodeIKernelMsgListener, Peer, RawMessage, SendStatusType, NTMsgType, MessageElement, } from '@/core'; import { OB11ConfigLoader } from '@/onebot/config'; import { OB11ActiveHttpAdapter, OB11ActiveWebSocketAdapter, OB11NetworkManager, OB11NetworkReloadType, OB11PassiveHttpAdapter, OB11PassiveWebSocketAdapter, } from '@/onebot/network'; import { NapCatPathWrapper } from '@/common/path'; import { OneBotFriendApi, OneBotGroupApi, OneBotMsgApi, OneBotQuickActionApi, OneBotUserApi, } from '@/onebot/api'; import { ActionMap, createActionMap } from '@/onebot/action'; import { WebUiDataRuntime } from '@/webui/src/helper/Data'; import { OB11InputStatusEvent } from '@/onebot/event/notice/OB11InputStatusEvent'; import { MessageUnique } from '@/common/message-unique'; import { proxiedListenerOf } from '@/common/proxy-handler'; import { OB11FriendRequestEvent } from '@/onebot/event/request/OB11FriendRequest'; import { OB11GroupRequestEvent } from '@/onebot/event/request/OB11GroupRequest'; import { OB11FriendRecallNoticeEvent } from '@/onebot/event/notice/OB11FriendRecallNoticeEvent'; import { OB11GroupRecallNoticeEvent } from '@/onebot/event/notice/OB11GroupRecallNoticeEvent'; import { LRUCache } from '@/common/lru-cache'; import { NodeIKernelRecentContactListener } from '@/core/listeners/NodeIKernelRecentContactListener'; import { BotOfflineEvent } from './event/notice/BotOfflineEvent'; import { AdapterConfigWrap, mergeOneBotConfigs, migrateOneBotConfigsV1, NetworkConfigAdapter, OneBotConfig, } from './config/config'; import { OB11Message } from './types'; import { OB11PluginAdapter } from './network/plugin'; import { IOB11NetworkAdapter } from "@/onebot/network/adapter"; import { OB11ActiveHttpSSEAdapter } from './network/active-http-sse'; //OneBot实现类 export class NapCatOneBot11Adapter { readonly core: NapCatCore; readonly context: InstanceContext; configLoader: OB11ConfigLoader; public readonly apis; networkManager: OB11NetworkManager; actions: ActionMap; private readonly bootTime = Date.now() / 1000; recallMsgCache = new LRUCache(100); constructor(core: NapCatCore, context: InstanceContext, pathWrapper: NapCatPathWrapper) { this.core = core; this.context = context; this.configLoader = new OB11ConfigLoader(core, pathWrapper.configPath); this.configLoader.save(migrateOneBotConfigsV1(this.configLoader.configData)); this.configLoader.save(mergeOneBotConfigs(this.configLoader.configData)); this.apis = { GroupApi: new OneBotGroupApi(this, core), UserApi: new OneBotUserApi(this, core), FriendApi: new OneBotFriendApi(this, core), MsgApi: new OneBotMsgApi(this, core), QuickActionApi: new OneBotQuickActionApi(this, core) } as const; this.actions = createActionMap(this, core); this.networkManager = new OB11NetworkManager(); } async creatOneBotLog(ob11Config: OneBotConfig) { let log = `[network] 配置加载\n`; for (const key of ob11Config.network.httpServers) { log += `HTTP服务: ${key.host}:${key.port}, : ${key.enable ? '已启动' : '未启动'}\n`; } for (const key of ob11Config.network.httpSseServers) { log += `HTTP-SSE服务: ${key.host}:${key.port}, : ${key.enable ? '已启动' : '未启动'}\n`; } for (const key of ob11Config.network.httpClients) { log += `HTTP上报服务: ${key.url}, : ${key.enable ? '已启动' : '未启动'}\n`; } for (const key of ob11Config.network.websocketServers) { log += `WebSocket服务: ${key.host}:${key.port}, : ${key.enable ? '已启动' : '未启动'}\n`; } for (const key of ob11Config.network.websocketClients) { log += `WebSocket反向服务: ${key.url}, : ${key.enable ? '已启动' : '未启动'}\n`; } return log; } async InitOneBot() { const selfInfo = this.core.selfInfo; const ob11Config = this.configLoader.configData; this.core.apis.UserApi.getUserDetailInfo(selfInfo.uid) .then((user) => { selfInfo.nick = user.nick; this.context.logger.setLogSelfInfo(selfInfo); }) .catch(e => this.context.logger.logError(e)); const serviceInfo = await this.creatOneBotLog(ob11Config); this.context.logger.log(`[Notice] [OneBot11] ${serviceInfo}`); //创建NetWork服务 // 注册Plugin 如果需要基于NapCat进行快速开发 // this.networkManager.registerAdapter( // new OB11PluginAdapter('myPlugin', this.core, this,this.actions) // ); for (const key of ob11Config.network.httpServers) { if (key.enable) { this.networkManager.registerAdapter( new OB11PassiveHttpAdapter(key.name, key, this.core, this, this.actions) ); } } for (const key of ob11Config.network.httpSseServers) { if (key.enable) { this.networkManager.registerAdapter( new OB11ActiveHttpSSEAdapter(key.name, key, this.core, this, this.actions) ); } } for (const key of ob11Config.network.httpClients) { if (key.enable) { this.networkManager.registerAdapter( new OB11ActiveHttpAdapter(key.name, key, this.core, this, this.actions) ); } } for (const key of ob11Config.network.websocketServers) { if (key.enable) { this.networkManager.registerAdapter( new OB11PassiveWebSocketAdapter( key.name, key, this.core, this, this.actions ) ); } } for (const key of ob11Config.network.websocketClients) { if (key.enable) { this.networkManager.registerAdapter( new OB11ActiveWebSocketAdapter( key.name, key, this.core, this, this.actions ) ); } } await this.networkManager.openAllAdapters(); this.initMsgListener(); this.initBuddyListener(); this.initGroupListener(); WebUiDataRuntime.setQQVersion(this.core.context.basicInfoWrapper.getFullQQVesion()); WebUiDataRuntime.setQQLoginInfo(selfInfo); WebUiDataRuntime.setQQLoginStatus(true); WebUiDataRuntime.setOnOB11ConfigChanged(async (newConfig) => { const prev = this.configLoader.configData; // 保证默认配置 newConfig = mergeOneBotConfigs(newConfig); this.configLoader.save(newConfig); //this.context.logger.log(`OneBot11 配置更改:${JSON.stringify(prev)} -> ${JSON.stringify(newConfig)}`); await this.reloadNetwork(prev, newConfig); }); } initRecentContactListener() { const recentContactListener = new NodeIKernelRecentContactListener(); recentContactListener.onRecentContactNotification = function ( msgList: any[] /* arg0: { msgListUnreadCnt: string }, arg1: number */ ) { msgList.forEach((msg) => { if (msg.chatType == ChatType.KCHATTYPEGROUP) { // log("recent contact", msgList, arg0, arg1); } }); }; } private async reloadNetwork(prev: OneBotConfig, now: OneBotConfig): Promise { const prevLog = await this.creatOneBotLog(prev); const newLog = await this.creatOneBotLog(now); this.context.logger.log(`[Notice] [OneBot11] 配置变更前:\n${prevLog}`); this.context.logger.log(`[Notice] [OneBot11] 配置变更后:\n${newLog}`); await this.handleConfigChange(prev.network.httpServers, now.network.httpServers, OB11PassiveHttpAdapter); await this.handleConfigChange(prev.network.httpClients, now.network.httpClients, OB11ActiveHttpAdapter); await this.handleConfigChange(prev.network.httpSseServers, now.network.httpSseServers, OB11ActiveHttpSSEAdapter); await this.handleConfigChange(prev.network.websocketServers, now.network.websocketServers, OB11PassiveWebSocketAdapter); await this.handleConfigChange(prev.network.websocketClients, now.network.websocketClients, OB11ActiveWebSocketAdapter); } private async handleConfigChange( prevConfig: NetworkConfigAdapter[], nowConfig: NetworkConfigAdapter[], adapterClass: new ( ...args: ConstructorParameters> ) => IOB11NetworkAdapter ): Promise { // 比较旧的在新的找不到的回收 for (const adapterConfig of prevConfig) { const existingAdapter = nowConfig.find((e) => e.name === adapterConfig.name); if (!existingAdapter) { const existingAdapter = this.networkManager.findSomeAdapter(adapterConfig.name); if (existingAdapter) { await this.networkManager.closeSomeAdaterWhenOpen([existingAdapter]); } } } // 通知新配置重载 删除关闭的 加入新开的 for (const adapterConfig of nowConfig) { const existingAdapter = this.networkManager.findSomeAdapter(adapterConfig.name); if (existingAdapter) { const networkChange = await existingAdapter.reload(adapterConfig); if (networkChange === OB11NetworkReloadType.NetWorkClose) { await this.networkManager.closeSomeAdaterWhenOpen([existingAdapter]); } } else if (adapterConfig.enable) { const newAdapter = new adapterClass(adapterConfig.name, adapterConfig as CT, this.core, this, this.actions); await this.networkManager.registerAdapterAndOpen(newAdapter); } } } private initMsgListener() { const msgListener = new NodeIKernelMsgListener(); msgListener.onRecvSysMsg = (msg) => { this.apis.MsgApi.parseSysMessage(msg) .then((event) => { if (event) this.networkManager.emitEvent(event); }) .catch((e) => this.context.logger.logError( 'constructSysMessage error: ', e, '\n Parse Hex:', Buffer.from(msg).toString('hex') ) ); }; msgListener.onInputStatusPush = async (data) => { const uin = await this.core.apis.UserApi.getUinByUidV2(data.fromUin); this.context.logger.log(`[Notice] [输入状态] ${uin} ${data.statusText}`); await this.networkManager.emitEvent( new OB11InputStatusEvent(this.core, parseInt(uin), data.eventType, data.statusText) ); }; msgListener.onRecvMsg = async (msg) => { for (const m of msg) { if (this.bootTime > parseInt(m.msgTime)) { this.context.logger.logDebug(`消息时间${m.msgTime}早于启动时间${this.bootTime},忽略上报`); continue; } m.id = MessageUnique.createUniqueMsgId( { chatType: m.chatType, peerUid: m.peerUid, guildId: '', }, m.msgId ); await this.emitMsg(m).catch((e) => this.context.logger.logError('处理消息失败', e) ); } }; msgListener.onAddSendMsg = async (msg) => { try { if (msg.sendStatus == SendStatusType.KSEND_STATUS_SENDING) { const [updatemsgs] = await this.core.eventWrapper.registerListen('NodeIKernelMsgListener/onMsgInfoListUpdate', (msgList: RawMessage[]) => { const report = msgList.find((e) => e.senderUin == this.core.selfInfo.uin && e.sendStatus !== SendStatusType.KSEND_STATUS_SENDING && e.msgId === msg.msgId ); return !!report; }, 1, 10 * 60 * 1000); // 10分钟 超时 const updatemsg = updatemsgs.find((e) => e.msgId === msg.msgId); if (updatemsg?.sendStatus == SendStatusType.KSEND_STATUS_SUCCESS || updatemsg?.sendStatus == SendStatusType.KSEND_STATUS_SUCCESS_NOSEQ) { updatemsg.id = MessageUnique.createUniqueMsgId( { chatType: updatemsg.chatType, peerUid: updatemsg.peerUid, guildId: '', }, updatemsg.msgId ); this.emitMsg(updatemsg); } } } catch (error) { this.context.logger.logError('处理发送消息失败', error); } }; msgListener.onMsgRecall = async (chatType: ChatType, uid: string, msgSeq: string) => { const peer: Peer = { chatType: chatType, peerUid: uid, guildId: '' }; const msg = (await this.core.apis.MsgApi.queryMsgsWithFilterExWithSeq(peer, msgSeq)).msgList.find(e => e.msgType == NTMsgType.KMSGTYPEGRAYTIPS); const element = msg?.elements.find(e => !!e.grayTipElement?.revokeElement); if (msg && element) { const recallEvent = await this.emitRecallMsg(msg, element); try { if (recallEvent) { await this.networkManager.emitEvent(recallEvent); } } catch (e) { this.context.logger.logError('处理消息撤回失败', e); } } }; msgListener.onKickedOffLine = async (kick) => { const event = new BotOfflineEvent(this.core, kick.tipsTitle, kick.tipsDesc); this.networkManager .emitEvent(event) .catch((e) => this.context.logger.logError('处理Bot掉线失败', e)); }; this.context.session.getMsgService().addKernelMsgListener(proxiedListenerOf(msgListener, this.context.logger)); } private initBuddyListener() { const buddyListener = new NodeIKernelBuddyListener(); buddyListener.onBuddyReqChange = async (reqs) => { this.core.apis.FriendApi.clearBuddyReqUnreadCnt(); for (let i = 0; i < reqs.unreadNums; i++) { const req = reqs.buddyReqs[i]; if (!!req.isInitiator || (req.isDecide && req.reqType !== BuddyReqType.KMEINITIATORWAITPEERCONFIRM)) { continue; } try { const requesterUin = await this.core.apis.UserApi.getUinByUidV2(req.friendUid); await this.networkManager.emitEvent( new OB11FriendRequestEvent( this.core, +requesterUin, req.extWords, req.reqTime ) ); } catch (e) { this.context.logger.logDebug('获取加好友者QQ号失败', e); } } }; this.context.session .getBuddyService() .addKernelBuddyListener(proxiedListenerOf(buddyListener, this.context.logger)); } private initGroupListener() { const groupListener = new NodeIKernelGroupListener(); groupListener.onGroupNotifiesUpdated = async (_, notifies) => { await this.core.apis.GroupApi.clearGroupNotifiesUnreadCount(false); if ( ![ GroupNotifyMsgType.SET_ADMIN, GroupNotifyMsgType.CANCEL_ADMIN_NOTIFY_CANCELED, GroupNotifyMsgType.CANCEL_ADMIN_NOTIFY_ADMIN, ].includes(notifies[0]?.type) ) { for (const notify of notifies) { const notifyTime = parseInt(notify.seq) / 1000 / 1000; // log(`群通知时间${notifyTime}`, `启动时间${this.bootTime}`); if (notifyTime < this.bootTime) { continue; } const flag = notify.seq; this.context.logger.logDebug('收到群通知', notify); if ( [GroupNotifyMsgType.REQUEST_JOIN_NEED_ADMINI_STRATOR_PASS].includes(notify.type) && notify.status == GroupNotifyMsgStatus.KUNHANDLE ) { this.context.logger.logDebug('有加群请求'); try { const requestUin = await this.core.apis.UserApi.getUinByUidV2(notify.user1.uid); const groupRequestEvent = new OB11GroupRequestEvent( this.core, parseInt(notify.group.groupCode), parseInt(requestUin), 'add', notify.postscript, flag ); this.networkManager .emitEvent(groupRequestEvent) .catch((e) => this.context.logger.logError('处理加群请求失败', e) ); } catch (e) { this.context.logger.logError( '获取加群人QQ号失败 Uid:', notify.user1.uid, e ); } } else if ( notify.type == GroupNotifyMsgType.INVITED_BY_MEMBER && notify.status == GroupNotifyMsgStatus.KUNHANDLE ) { this.context.logger.logDebug(`收到邀请我加群通知:${notify}`); const groupInviteEvent = new OB11GroupRequestEvent( this.core, +notify.group.groupCode, +await this.core.apis.UserApi.getUinByUidV2(notify.user2.uid), 'invite', notify.postscript, flag ); this.networkManager .emitEvent(groupInviteEvent) .catch((e) => this.context.logger.logError('处理邀请本人加群失败', e) ); } else if ( notify.type == GroupNotifyMsgType.INVITED_NEED_ADMINI_STRATOR_PASS && notify.status == GroupNotifyMsgStatus.KUNHANDLE ) { this.context.logger.logDebug(`收到群员邀请加群通知:${notify}`); const groupInviteEvent = new OB11GroupRequestEvent( this.core, +notify.group.groupCode, +await this.core.apis.UserApi.getUinByUidV2(notify.user1.uid), 'add', notify.postscript, flag ); this.networkManager .emitEvent(groupInviteEvent) .catch((e) => this.context.logger.logError('处理邀请本人加群失败', e) ); } } } }; this.context.session .getGroupService() .addKernelGroupListener(proxiedListenerOf(groupListener, this.context.logger)); } private async emitMsg(message: RawMessage) { const network = await this.networkManager.getAllConfig(); this.context.logger.logDebug('收到新消息 RawMessage', message); await Promise.allSettled([ this.handleMsg(message, network), message.chatType == ChatType.KCHATTYPEGROUP ? this.handleGroupEvent(message) : this.handlePrivateMsgEvent(message) ]); } private async handleMsg(message: RawMessage, network: Array) { // 过滤无效消息 if (message.msgType === NTMsgType.KMSGTYPENULL) { return; } try { const ob11Msg = await this.apis.MsgApi.parseMessageV2(message, this.configLoader.configData.parseMultMsg); if (ob11Msg) { const isSelfMsg = this.isSelfMessage(ob11Msg); this.context.logger.logDebug('转化为 OB11Message', ob11Msg); const msgMap = this.createMsgMap(network, ob11Msg, isSelfMsg, message); this.handleDebugNetwork(network, msgMap, message); this.handleNotReportSelfNetwork(network, msgMap, isSelfMsg); this.networkManager.emitEventByNames(msgMap); } } catch (e) { this.context.logger.logError('constructMessage error: ', e); } } private isSelfMessage(ob11Msg: { stringMsg: OB11Message; arrayMsg: OB11Message; }): boolean { return ob11Msg.stringMsg.user_id.toString() == this.core.selfInfo.uin || ob11Msg.arrayMsg.user_id.toString() == this.core.selfInfo.uin; } private createMsgMap(network: Array, ob11Msg: any, isSelfMsg: boolean, message: RawMessage): Map { const msgMap: Map = new Map(); network.filter(e => e.enable).forEach(e => { if (isSelfMsg || message.chatType !== ChatType.KCHATTYPEGROUP) { ob11Msg.stringMsg.target_id = parseInt(message.peerUin); ob11Msg.arrayMsg.target_id = parseInt(message.peerUin); } if ('messagePostFormat' in e && e.messagePostFormat == 'string') { msgMap.set(e.name, structuredClone(ob11Msg.stringMsg)); } else { msgMap.set(e.name, structuredClone(ob11Msg.arrayMsg)); } }); return msgMap; } private handleDebugNetwork(network: Array, msgMap: Map, message: RawMessage) { const debugNetwork = network.filter(e => e.enable && e.debug); if (debugNetwork.length > 0) { debugNetwork.forEach(adapter => { const msg = msgMap.get(adapter.name); if (msg) { msg.raw = message; } }); } else if (msgMap.size === 0) { return; } } private handleNotReportSelfNetwork(network: Array, msgMap: Map, isSelfMsg: boolean) { if (isSelfMsg) { const notReportSelfNetwork = network.filter(e => e.enable && (('reportSelfMessage' in e && !e.reportSelfMessage) || !('reportSelfMessage' in e))); notReportSelfNetwork.forEach(adapter => { msgMap.delete(adapter.name); }); } } private async handleGroupEvent(message: RawMessage) { try { // 群名片修改事件解析 任何都该判断 if (message.senderUin && message.senderUin !== '0') { const cardChangedEvent = await this.apis.GroupApi.parseCardChangedEvent(message); if (cardChangedEvent) { await this.networkManager.emitEvent(cardChangedEvent); } } if (message.msgType === NTMsgType.KMSGTYPEFILE) { // 文件为单元素消息 const elementWrapper = message.elements.find(e => !!e.fileElement); if (elementWrapper?.fileElement) { const uploadGroupFileEvent = await this.apis.GroupApi.parseGroupUploadFileEvene(message, elementWrapper.fileElement, elementWrapper); if (uploadGroupFileEvent) { await this.networkManager.emitEvent(uploadGroupFileEvent); } } } else if (message.msgType === NTMsgType.KMSGTYPEGRAYTIPS) { // 灰条为单元素消息 const grayTipElement = message.elements[0].grayTipElement; if (grayTipElement) { const event = await this.apis.GroupApi.parseGrayTipElement(message, grayTipElement); if (event) { await this.networkManager.emitEvent(event); } } } } catch (e) { this.context.logger.logError('constructGroupEvent error: ', e); } } private async handlePrivateMsgEvent(message: RawMessage) { try { if (message.msgType === NTMsgType.KMSGTYPEGRAYTIPS) { // 灰条为单元素消息 const grayTipElement = message.elements[0].grayTipElement; if (grayTipElement) { const event = await this.apis.MsgApi.parsePrivateMsgEvent(message, grayTipElement); if (event) { await this.networkManager.emitEvent(event); } } } } catch (e) { this.context.logger.logError('constructPrivateEvent error: ', e); } } private async emitRecallMsg(message: RawMessage, element: MessageElement) { const peer: Peer = { chatType: message.chatType, peerUid: message.peerUid, guildId: '' }; const oriMessageId = MessageUnique.getShortIdByMsgId(message.msgId) ?? MessageUnique.createUniqueMsgId(peer, message.msgId); if (message.chatType == ChatType.KCHATTYPEC2C) { return await this.emitFriendRecallMsg(message, oriMessageId, element); } else if (message.chatType == ChatType.KCHATTYPEGROUP) { return await this.emitGroupRecallMsg(message, oriMessageId, element); } } private async emitFriendRecallMsg(message: RawMessage, oriMessageId: number, element: MessageElement) { const operatorUid = element.grayTipElement?.revokeElement.operatorUid; if (!operatorUid) return undefined; return new OB11FriendRecallNoticeEvent( this.core, +message.senderUin, oriMessageId ); } private async emitGroupRecallMsg(message: RawMessage, oriMessageId: number, element: MessageElement) { const operatorUid = element.grayTipElement?.revokeElement.operatorUid; if (!operatorUid) return undefined; const operatorId = await this.core.apis.UserApi.getUinByUidV2(operatorUid); return new OB11GroupRecallNoticeEvent( this.core, +message.peerUin, +message.senderUin, +operatorId, oriMessageId ); } } export * from './types';