import { ActionName } from '../types'; import BaseAction from '../BaseAction'; import { FromSchema, JSONSchema } from 'json-schema-to-ts'; import { MessageUnique } from '@/common/message-unique'; const SchemaData = { type: 'object', properties: { message_id: { oneOf: [ { type: 'number' }, { type: 'string' }, ], }, }, required: ['message_id'], } as const satisfies JSONSchema; type Payload = FromSchema; class DeleteMsg extends BaseAction { actionName = ActionName.DeleteMsg; payloadSchema = SchemaData; async _handle(payload: Payload) { const msg = MessageUnique.getMsgIdAndPeerByShortId(Number(payload.message_id)); if (msg) { await this.core.apis.MsgApi.recallMsg(msg.Peer, msg.MsgId); } else { throw new Error('Recall failed'); } } } export default DeleteMsg;