mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-21 09:36:35 +00:00
69 lines
2.3 KiB
TypeScript
69 lines
2.3 KiB
TypeScript
import { IOB11NetworkAdapter, OB11EmitEventContent } from '@/onebot/network/index';
|
||
import { createHmac } from 'crypto';
|
||
import { LogWrapper } from '@/common/log';
|
||
import { QuickAction, QuickActionEvent } from '../types';
|
||
import { NapCatCore } from '@/core';
|
||
import { NapCatOneBot11Adapter } from '..';
|
||
|
||
export class OB11ActiveHttpAdapter implements IOB11NetworkAdapter {
|
||
logger: LogWrapper;
|
||
isOpen: boolean = false;
|
||
|
||
constructor(
|
||
public url: string,
|
||
public secret: string | undefined,
|
||
public core: NapCatCore,
|
||
public obContext: NapCatOneBot11Adapter,
|
||
) {
|
||
this.logger = core.context.logger;
|
||
}
|
||
|
||
onEvent<T extends OB11EmitEventContent>(event: T) {
|
||
if (!this.isOpen) {
|
||
return;
|
||
}
|
||
const headers: Record<string, string> = {
|
||
'Content-Type': 'application/json',
|
||
'x-self-id': this.core.selfInfo.uin,
|
||
};
|
||
const msgStr = JSON.stringify(event);
|
||
if (this.secret && this.secret.length > 0) {
|
||
const hmac = createHmac('sha1', this.secret);
|
||
hmac.update(msgStr);
|
||
const sig = hmac.digest('hex');
|
||
headers['x-signature'] = 'sha1=' + sig;
|
||
}
|
||
fetch(this.url, {
|
||
method: 'POST',
|
||
headers,
|
||
body: msgStr,
|
||
}).then(async (res) => {
|
||
let resJson: QuickAction;
|
||
try {
|
||
resJson = await res.json();
|
||
//logDebug('新消息事件HTTP上报返回快速操作: ', JSON.stringify(resJson));
|
||
} catch (e) {
|
||
this.logger.logDebug('[OneBot] [Http Client] 新消息事件HTTP上报没有返回快速操作,不需要处理');
|
||
return;
|
||
}
|
||
try {
|
||
this.obContext.apis.QuickActionApi
|
||
.handleQuickOperation(event as QuickActionEvent, resJson)
|
||
.catch(this.logger.logError);
|
||
} catch (e: any) {
|
||
this.logger.logError('[OneBot] [Http Client] 新消息事件HTTP上报返回快速操作失败', e);
|
||
}
|
||
}).catch((e) => {
|
||
this.logger.logError('[OneBot] [Http Client] 新消息事件HTTP上报失败', e);
|
||
});
|
||
}
|
||
|
||
open() {
|
||
this.isOpen = true;
|
||
}
|
||
|
||
close() {
|
||
this.isOpen = false;
|
||
}
|
||
}
|