mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-02-05 15:11:15 +00:00
Moved action example files into a new 'example' directory and updated all imports accordingly. Removed the monolithic 'examples.ts' and redefined ActionExamples in OneBotAction.ts to only include common error codes. This improves code organization and maintainability.
37 lines
1.5 KiB
TypeScript
37 lines
1.5 KiB
TypeScript
import { OneBotAction } from '@/napcat-onebot/action/OneBotAction';
|
|
import { ActionName } from '@/napcat-onebot/action/router';
|
|
import { Static, Type } from '@sinclair/typebox';
|
|
|
|
import { GroupActionsExamples } from '../example/GroupActionsExamples';
|
|
|
|
const PayloadSchema = Type.Object({
|
|
group_id: Type.String({ description: '群号' }),
|
|
enable: Type.Optional(Type.Union([Type.Boolean(), Type.String()], { description: '是否开启全员禁言' })),
|
|
});
|
|
|
|
type PayloadType = Static<typeof PayloadSchema>;
|
|
|
|
const ReturnSchema = Type.Null({ description: '操作结果' });
|
|
|
|
type ReturnType = Static<typeof ReturnSchema>;
|
|
|
|
export default class SetGroupWholeBan extends OneBotAction<PayloadType, ReturnType> {
|
|
override actionName = ActionName.SetGroupWholeBan;
|
|
override payloadSchema = PayloadSchema;
|
|
override returnSchema = ReturnSchema;
|
|
override actionSummary = '全员禁言';
|
|
override actionDescription = '开启或关闭指定群聊的全员禁言';
|
|
override actionTags = ['群组接口'];
|
|
override payloadExample = GroupActionsExamples.SetGroupWholeBan.payload;
|
|
override returnExample = GroupActionsExamples.SetGroupWholeBan.response;
|
|
|
|
async _handle (payload: PayloadType): Promise<null> {
|
|
const enable = payload.enable?.toString() !== 'false';
|
|
const res = await this.core.apis.GroupApi.banGroup(payload.group_id.toString(), enable);
|
|
if (res.result !== 0) {
|
|
throw new Error(`SetGroupWholeBan failed: ${res.errMsg} ${res.result}`);
|
|
}
|
|
return null;
|
|
}
|
|
}
|