mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-05 23:19:37 +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.
41 lines
1.6 KiB
TypeScript
41 lines
1.6 KiB
TypeScript
import { OneBotAction } from '@/napcat-onebot/action/OneBotAction';
|
|
import { ActionName } from '@/napcat-onebot/action/router';
|
|
import { Static, Type } from '@sinclair/typebox';
|
|
import { ChatType, Peer } from 'napcat-core/types';
|
|
|
|
export const SendFlashMsgPayloadSchema = Type.Object({
|
|
fileset_id: Type.String({ description: '文件集 ID' }),
|
|
user_id: Type.Optional(Type.Union([Type.Number(), Type.String()], { description: '用户 QQ' })),
|
|
group_id: Type.Optional(Type.Union([Type.Number(), Type.String()], { description: '群号' })),
|
|
});
|
|
|
|
export type SendFlashMsgPayload = Static<typeof SendFlashMsgPayloadSchema>;
|
|
|
|
export class SendFlashMsg extends OneBotAction<SendFlashMsgPayload, any> {
|
|
override actionName = ActionName.SendFlashMsg;
|
|
override payloadSchema = SendFlashMsgPayloadSchema;
|
|
override returnSchema = Type.Any({ description: '发送结果' });
|
|
|
|
async _handle (payload: SendFlashMsgPayload) {
|
|
let peer: Peer;
|
|
|
|
if (payload.group_id) {
|
|
peer = { chatType: ChatType.KCHATTYPEGROUP, peerUid: payload.group_id.toString() };
|
|
} else if (payload.user_id) {
|
|
const uid = await this.core.apis.UserApi.getUidByUinV2(payload.user_id.toString());
|
|
if (!uid) throw new Error('User not found');
|
|
|
|
// 可能需要更严格的判断
|
|
const isBuddy = await this.core.apis.FriendApi.isBuddy(uid);
|
|
peer = {
|
|
chatType: isBuddy ? ChatType.KCHATTYPEC2C : ChatType.KCHATTYPETEMPC2CFROMGROUP,
|
|
peerUid: uid,
|
|
};
|
|
} else {
|
|
throw new Error('user_id or group_id is required');
|
|
}
|
|
|
|
return await this.core.apis.FlashApi.sendFlashMessage(payload.fileset_id, peer);
|
|
}
|
|
}
|