mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-19 13:10:16 +08:00
* feat: pnpm new * Refactor build and release workflows, update dependencies Switch build scripts and workflows from npm to pnpm, update build and artifact paths, and simplify release workflow by removing version detection and changelog steps. Add new dependencies (silk-wasm, express, ws, node-pty-prebuilt-multiarch), update exports in package.json files, and add vite config for napcat-framework. Also, rename manifest.json for framework package and fix static asset copying in shell build config.
62 lines
2.0 KiB
TypeScript
62 lines
2.0 KiB
TypeScript
import { OB11EmitEventContent, OB11NetworkReloadType } from '@/napcat-onebot/network/index';
|
|
import { createHmac } from 'crypto';
|
|
import { QuickAction, QuickActionEvent } from '@/napcat-onebot/types';
|
|
import { RequestUtil } from 'napcat-common/src/request';
|
|
import { HttpClientConfig } from '@/napcat-onebot/config/config';
|
|
import { IOB11NetworkAdapter } from '@/napcat-onebot/network/adapter';
|
|
import json5 from 'json5';
|
|
|
|
export class OB11HttpClientAdapter extends IOB11NetworkAdapter<HttpClientConfig> {
|
|
async onEvent<T extends OB11EmitEventContent> (event: T) {
|
|
this.emitEventAsync(event).catch(e => this.logger.logError('[OneBot] [Http Client] 新消息事件HTTP上报返回快速操作失败', e));
|
|
}
|
|
|
|
async emitEventAsync<T extends OB11EmitEventContent> (event: T) {
|
|
if (!this.isEnable) return;
|
|
const headers: Record<string, string> = {
|
|
'Content-Type': 'application/json',
|
|
'x-self-id': this.core.selfInfo.uin,
|
|
};
|
|
|
|
const msgStr = JSON.stringify(event);
|
|
if (this.config.token) {
|
|
const hmac = createHmac('sha1', this.config.token);
|
|
hmac.update(msgStr);
|
|
headers['x-signature'] = 'sha1=' + hmac.digest('hex');
|
|
}
|
|
|
|
const data = await RequestUtil.HttpGetText(this.config.url, 'POST', msgStr, headers);
|
|
const resJson: QuickAction = data ? json5.parse(data) : {};
|
|
|
|
await this.obContext.apis.QuickActionApi.handleQuickOperation(event as QuickActionEvent, resJson);
|
|
}
|
|
|
|
open () {
|
|
this.isEnable = true;
|
|
}
|
|
|
|
close () {
|
|
this.isEnable = false;
|
|
}
|
|
|
|
async reload (newConfig: HttpClientConfig) {
|
|
const wasEnabled = this.isEnable;
|
|
const oldUrl = this.config.url;
|
|
this.config = newConfig;
|
|
|
|
if (newConfig.enable && !wasEnabled) {
|
|
this.open();
|
|
return OB11NetworkReloadType.NetWorkOpen;
|
|
} else if (!newConfig.enable && wasEnabled) {
|
|
this.close();
|
|
return OB11NetworkReloadType.NetWorkClose;
|
|
}
|
|
|
|
if (oldUrl !== newConfig.url) {
|
|
return OB11NetworkReloadType.NetWorkReload;
|
|
}
|
|
|
|
return OB11NetworkReloadType.Normal;
|
|
}
|
|
}
|