mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-05 07:01:16 +00:00
Introduced a centralized examples.ts file providing payload and return examples for all actions. Updated numerous action classes to include actionDescription, actionTags, payloadExample, and returnExample fields, improving API documentation and discoverability.
41 lines
1.4 KiB
TypeScript
41 lines
1.4 KiB
TypeScript
import { ActionName } from '@/napcat-onebot/action/router';
|
|
import { OneBotAction } from '@/napcat-onebot/action/OneBotAction';
|
|
import { MessageUnique } from 'napcat-common/src/message-unique';
|
|
import { Static, Type } from '@sinclair/typebox';
|
|
|
|
import { ActionExamples } from '../examples';
|
|
|
|
const PayloadSchema = Type.Object({
|
|
message_id: Type.Union([Type.Number(), Type.String()], { description: '消息ID' }),
|
|
});
|
|
|
|
type PayloadType = Static<typeof PayloadSchema>;
|
|
|
|
const ReturnSchema = Type.Null({ description: '操作结果' });
|
|
|
|
type ReturnType = Static<typeof ReturnSchema>;
|
|
|
|
class DeleteMsg extends OneBotAction<PayloadType, ReturnType> {
|
|
override actionName = ActionName.DeleteMsg;
|
|
override payloadSchema = PayloadSchema;
|
|
override returnSchema = ReturnSchema;
|
|
override actionDescription = '撤回消息';
|
|
override actionTags = ['消息接口'];
|
|
override payloadExample = ActionExamples.DeleteMsg.payload;
|
|
|
|
async _handle (payload: PayloadType) {
|
|
const msg = MessageUnique.getMsgIdAndPeerByShortId(Number(payload.message_id));
|
|
if (msg) {
|
|
this.obContext.recallEventCache.set(msg.MsgId, setTimeout(() => {
|
|
this.obContext.recallEventCache.delete(msg.MsgId);
|
|
}, 5000));
|
|
await this.core.apis.MsgApi.recallMsg(msg.Peer, msg.MsgId);
|
|
return null;
|
|
} else {
|
|
throw new Error('Recall failed');
|
|
}
|
|
}
|
|
}
|
|
|
|
export default DeleteMsg;
|