NapCatQQ/packages/napcat-onebot/action/packet/GetRkeyEx.ts
手瓜一十雪 b69352f6a1 Add payload and return schemas to OneBot actions
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.
2026-01-25 14:50:58 +08:00

31 lines
1.1 KiB
TypeScript

import { ActionName } from '@/napcat-onebot/action/router';
import { GetPacketStatusDepends } from '@/napcat-onebot/action/packet/GetPacketStatus';
import { Type, Static } from '@sinclair/typebox';
export const GetRkeyExReturnSchema = Type.Array(Type.Object({
type: Type.String({ description: '类型 (private/group)' }),
rkey: Type.String({ description: 'RKey' }),
created_at: Type.Number({ description: '创建时间' }),
ttl: Type.Number({ description: '有效期' }),
}), { description: 'RKey 列表' });
export type GetRkeyExReturn = Static<typeof GetRkeyExReturnSchema>;
export class GetRkeyEx extends GetPacketStatusDepends<void, GetRkeyExReturn> {
override actionName = ActionName.GetRkeyEx;
override payloadSchema = Type.Object({});
override returnSchema = GetRkeyExReturnSchema;
async _handle () {
const rkeys = await this.core.apis.PacketApi.pkt.operation.FetchRkey();
return rkeys.map(rkey => {
return {
type: rkey.type === 10 ? 'private' : 'group',
rkey: rkey.rkey,
created_at: Number(rkey.time),
ttl: Number(rkey.ttl),
};
});
}
}