mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-06 13:05:09 +00:00
Introduced explicit payloadSchema and returnSchema definitions for all OneBotAction classes using @sinclair/typebox. This improves type safety, API documentation, and validation for action payloads and return values. Also refactored method signatures and types for consistency across the codebase.
28 lines
1.1 KiB
TypeScript
28 lines
1.1 KiB
TypeScript
import { OneBotAction } from '@/napcat-onebot/action/OneBotAction';
|
|
import { ActionName } from '@/napcat-onebot/action/router';
|
|
import { FileNapCatOneBotUUID } from 'napcat-common/src/file-uuid';
|
|
import { Static, Type } from '@sinclair/typebox';
|
|
import { NTQQGroupApi } from 'napcat-core/apis';
|
|
|
|
const PayloadSchema = Type.Object({
|
|
group_id: Type.Union([Type.Number(), Type.String()], { description: '群号' }),
|
|
file_id: Type.String({ description: '文件ID' }),
|
|
});
|
|
|
|
type PayloadType = Static<typeof PayloadSchema>;
|
|
|
|
const ReturnSchema = Type.Any({ description: '删除结果' });
|
|
|
|
type ReturnType = Static<typeof ReturnSchema>;
|
|
|
|
export class DeleteGroupFile extends OneBotAction<PayloadType, ReturnType> {
|
|
override actionName = ActionName.GOCQHTTP_DeleteGroupFile;
|
|
override payloadSchema = PayloadSchema;
|
|
override returnSchema = ReturnSchema;
|
|
async _handle (payload: PayloadType) {
|
|
const data = FileNapCatOneBotUUID.decodeModelId(payload.file_id);
|
|
if (!data || !data.fileId) throw new Error('Invalid file_id');
|
|
return await this.core.apis.GroupApi.delGroupFile(payload.group_id.toString(), [data.fileId]);
|
|
}
|
|
}
|