mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-05 23:19:37 +00:00
88 lines
3.4 KiB
TypeScript
88 lines
3.4 KiB
TypeScript
import { ActionName, BaseCheckResult } from './router';
|
|
import Ajv, { ErrorObject, ValidateFunction } from 'ajv';
|
|
import { NapCatCore } from '@/core';
|
|
import { NapCatOneBot11Adapter, OB11Return } from '@/onebot';
|
|
|
|
export class OB11Response {
|
|
private static createResponse<T>(data: T, status: string, retcode: number, message: string = '', echo: any = null): OB11Return<T> {
|
|
return {
|
|
status,
|
|
retcode,
|
|
data,
|
|
message,
|
|
wording: message,
|
|
echo,
|
|
};
|
|
}
|
|
|
|
static res<T>(data: T, status: string, retcode: number, message: string = ''): OB11Return<T> {
|
|
return this.createResponse(data, status, retcode, message);
|
|
}
|
|
|
|
static ok<T>(data: T, echo: any = null): OB11Return<T> {
|
|
return this.createResponse(data, 'ok', 0, '', echo);
|
|
}
|
|
|
|
static error(err: string, retcode: number, echo: any = null): OB11Return<null> {
|
|
return this.createResponse(null, 'failed', retcode, err, echo);
|
|
}
|
|
}
|
|
|
|
export abstract class OneBotAction<PayloadType, ReturnDataType> {
|
|
actionName: typeof ActionName[keyof typeof ActionName] = ActionName.Unknown;
|
|
core: NapCatCore;
|
|
private validate: ValidateFunction<any> | undefined = undefined;
|
|
payloadSchema: any = undefined;
|
|
obContext: NapCatOneBot11Adapter;
|
|
|
|
constructor(obContext: NapCatOneBot11Adapter, core: NapCatCore) {
|
|
this.obContext = obContext;
|
|
this.core = core;
|
|
}
|
|
|
|
protected async check(payload: PayloadType): Promise<BaseCheckResult> {
|
|
if (this.payloadSchema) {
|
|
this.validate = new Ajv({ allowUnionTypes: true, useDefaults: true }).compile(this.payloadSchema);
|
|
}
|
|
if (this.validate && !this.validate(payload)) {
|
|
const errors = this.validate.errors as ErrorObject[];
|
|
const errorMessages = errors.map(e => `Key: ${e.instancePath.split('/').slice(1).join('.')}, Message: ${e.message}`);
|
|
return {
|
|
valid: false,
|
|
message: errorMessages.join('\n') ?? '未知错误',
|
|
};
|
|
}
|
|
return { valid: true };
|
|
}
|
|
|
|
public async handle(payload: PayloadType, adaptername: string): Promise<OB11Return<ReturnDataType | null>> {
|
|
const result = await this.check(payload);
|
|
if (!result.valid) {
|
|
return OB11Response.error(result.message, 400);
|
|
}
|
|
try {
|
|
const resData = await this._handle(payload, adaptername);
|
|
return OB11Response.ok(resData);
|
|
} catch (e: any) {
|
|
this.core.context.logger.logError('发生错误', e);
|
|
return OB11Response.error((e as Error).message.toString() || e?.stack?.toString() || '未知错误,可能操作超时', 200);
|
|
}
|
|
}
|
|
|
|
public async websocketHandle(payload: PayloadType, echo: any, adaptername: string): Promise<OB11Return<ReturnDataType | null>> {
|
|
const result = await this.check(payload);
|
|
if (!result.valid) {
|
|
return OB11Response.error(result.message, 1400, echo);
|
|
}
|
|
try {
|
|
const resData = await this._handle(payload, adaptername);
|
|
return OB11Response.ok(resData, echo);
|
|
} catch (e: any) {
|
|
this.core.context.logger.logError('发生错误', e);
|
|
return OB11Response.error((e as Error).message.toString() || e.stack?.toString(), 1200, echo);
|
|
}
|
|
}
|
|
|
|
abstract _handle(payload: PayloadType, adaptername: string): PromiseLike<ReturnDataType>;
|
|
}
|