import { OneBotAction } from '@/onebot/action/OneBotAction'; import { ActionName } from '@/onebot/action/router'; import { FromSchema, JSONSchema } from 'json-schema-to-ts'; import { MessageUnique } from '@/common/message-unique'; const SchemaData = { type: 'object', properties: { message_id: { type: ['number', 'string'] }, }, required: ['message_id'], } as const satisfies JSONSchema; type Payload = FromSchema; export default class SetEssenceMsg extends OneBotAction { actionName = ActionName.SetEssenceMsg; payloadSchema = SchemaData; async _handle(payload: Payload): Promise { const msg = MessageUnique.getMsgIdAndPeerByShortId(parseInt(payload.message_id.toString())); if (!msg) { throw new Error('msg not found'); } return await this.core.apis.GroupApi.addGroupEssence( msg.Peer.peerUid, msg.MsgId, ); } }