mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-04 22:51:13 +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.
58 lines
2.5 KiB
TypeScript
58 lines
2.5 KiB
TypeScript
import { GroupNotifyMsgStatus } from 'napcat-core';
|
|
import { OneBotAction } from '@/napcat-onebot/action/OneBotAction';
|
|
import { ActionName } from '@/napcat-onebot/action/router';
|
|
import { Static, Type } from '@sinclair/typebox';
|
|
import { OB11NotifySchema } from '../schemas';
|
|
|
|
export const GetGroupSystemMsgPayloadSchema = Type.Object({
|
|
count: Type.Union([Type.Number(), Type.String()], { default: 50, description: '获取的消息数量' }),
|
|
});
|
|
|
|
export type GetGroupSystemMsgPayload = Static<typeof GetGroupSystemMsgPayloadSchema>;
|
|
|
|
export const GetGroupSystemMsgReturnSchema = Type.Object({
|
|
invited_requests: Type.Array(OB11NotifySchema, { description: '进群邀请列表' }),
|
|
InvitedRequest: Type.Array(OB11NotifySchema, { description: '进群邀请列表 (兼容)' }),
|
|
join_requests: Type.Array(OB11NotifySchema, { description: '进群申请列表' }),
|
|
});
|
|
|
|
export type GetGroupSystemMsgReturn = Static<typeof GetGroupSystemMsgReturnSchema>;
|
|
|
|
export class GetGroupSystemMsg extends OneBotAction<GetGroupSystemMsgPayload, GetGroupSystemMsgReturn> {
|
|
override actionName = ActionName.GetGroupSystemMsg;
|
|
override payloadSchema = GetGroupSystemMsgPayloadSchema;
|
|
override returnSchema = GetGroupSystemMsgReturnSchema;
|
|
|
|
async _handle (params: GetGroupSystemMsgPayload): Promise<GetGroupSystemMsgReturn> {
|
|
const SingleScreenNotifies = await this.core.apis.GroupApi.getSingleScreenNotifies(false, +params.count);
|
|
const retData: GetGroupSystemMsgReturn = { invited_requests: [], InvitedRequest: [], join_requests: [] };
|
|
|
|
const notifyPromises = SingleScreenNotifies.map(async (SSNotify) => {
|
|
const invitorUin = SSNotify.user1?.uid ? +await this.core.apis.UserApi.getUinByUidV2(SSNotify.user1.uid) : 0;
|
|
const actorUin = SSNotify.user2?.uid ? +await this.core.apis.UserApi.getUinByUidV2(SSNotify.user2.uid) : 0;
|
|
const commonData = {
|
|
request_id: +SSNotify.seq,
|
|
invitor_uin: invitorUin,
|
|
invitor_nick: SSNotify.user1?.nickName || '',
|
|
group_id: +SSNotify.group?.groupCode,
|
|
message: SSNotify?.postscript || '',
|
|
group_name: SSNotify.group?.groupName || '',
|
|
checked: SSNotify.status !== GroupNotifyMsgStatus.KUNHANDLE,
|
|
actor: actorUin,
|
|
requester_nick: SSNotify.user1?.nickName || '',
|
|
};
|
|
|
|
if (SSNotify.type === 1) {
|
|
retData.InvitedRequest.push(commonData);
|
|
} else if (SSNotify.type === 7) {
|
|
retData.join_requests.push(commonData);
|
|
}
|
|
});
|
|
|
|
await Promise.all(notifyPromises);
|
|
|
|
retData.invited_requests = retData.InvitedRequest;
|
|
return retData;
|
|
}
|
|
}
|