mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-19 13:10:16 +08:00
* feat: pnpm new * Refactor build and release workflows, update dependencies Switch build scripts and workflows from npm to pnpm, update build and artifact paths, and simplify release workflow by removing version detection and changelog steps. Add new dependencies (silk-wasm, express, ws, node-pty-prebuilt-multiarch), update exports in package.json files, and add vite config for napcat-framework. Also, rename manifest.json for framework package and fix static asset copying in shell build config.
28 lines
1.2 KiB
TypeScript
28 lines
1.2 KiB
TypeScript
import { OneBotAction } from '@/napcat-onebot/action/OneBotAction';
|
|
import { ActionName } from '@/napcat-onebot/action/router';
|
|
import { Static, Type } from '@sinclair/typebox';
|
|
|
|
const SchemaData = Type.Object({
|
|
group_id: Type.Union([Type.Number(), Type.String()]),
|
|
user_id: Type.Union([Type.Number(), Type.String()]),
|
|
duration: Type.Union([Type.Number(), Type.String()], { default: 0 }),
|
|
});
|
|
|
|
type Payload = Static<typeof SchemaData>;
|
|
|
|
export default class SetGroupBan extends OneBotAction<Payload, null> {
|
|
override actionName = ActionName.SetGroupBan;
|
|
override payloadSchema = SchemaData;
|
|
async _handle (payload: Payload): 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;
|
|
}
|
|
}
|