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.
41 lines
1.8 KiB
TypeScript
41 lines
1.8 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: '群号' }),
|
|
user_id: Type.String({ description: '用户QQ' }),
|
|
duration: Type.Union([Type.Number(), Type.String()], { default: 0, description: '禁言时长(秒)' }),
|
|
});
|
|
|
|
type PayloadType = Static<typeof PayloadSchema>;
|
|
|
|
const ReturnSchema = Type.Null({ description: '操作结果' });
|
|
|
|
type ReturnType = Static<typeof ReturnSchema>;
|
|
|
|
export default class SetGroupBan extends OneBotAction<PayloadType, ReturnType> {
|
|
override actionName = ActionName.SetGroupBan;
|
|
override payloadSchema = PayloadSchema;
|
|
override returnSchema = ReturnSchema;
|
|
override actionSummary = '群组禁言';
|
|
override actionDescription = '禁言群聊中的指定成员';
|
|
override actionTags = ['群组接口'];
|
|
override payloadExample = GroupActionsExamples.SetGroupBan.payload;
|
|
override returnExample = GroupActionsExamples.SetGroupBan.response;
|
|
|
|
async _handle (payload: PayloadType): Promise<null> {
|
|
const uid = await this.core.apis.UserApi.getUidByUinV2(payload.user_id.toString());
|
|
if (!uid) throw new Error('uid error');
|
|
const member_role = (await this.core.apis.GroupApi.getGroupMemberEx(payload.group_id.toString(), uid, true))?.role;
|
|
if (member_role === 4) throw new Error('cannot ban owner');
|
|
// 例如无管理员权限时 result为 120101005 errMsg为 'ERR_NOT_GROUP_ADMIN'
|
|
const ret = await this.core.apis.GroupApi.banMember(payload.group_id.toString(),
|
|
[{ uid, timeStamp: +payload.duration }]);
|
|
if (ret.result !== 0) throw new Error(ret.errMsg);
|
|
return null;
|
|
}
|
|
}
|