mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-21 09:36:35 +00:00
31 lines
1023 B
TypeScript
31 lines
1023 B
TypeScript
import BaseAction from '../BaseAction';
|
|
import { getGroupMember } from '@/core/data';
|
|
import { ActionName } from '../types';
|
|
import { NTQQGroupApi } from '@/core/apis/group';
|
|
import { FromSchema, JSONSchema } from 'json-schema-to-ts';
|
|
|
|
const SchemaData = {
|
|
type: 'object',
|
|
properties: {
|
|
group_id: { type: [ 'number' , 'string' ] },
|
|
user_id: { type: [ 'number' , 'string' ] },
|
|
card: { type: 'string' }
|
|
},
|
|
required: ['group_id', 'user_id', 'card']
|
|
} as const satisfies JSONSchema;
|
|
|
|
type Payload = FromSchema<typeof SchemaData>;
|
|
|
|
export default class SetGroupCard extends BaseAction<Payload, null> {
|
|
actionName = ActionName.SetGroupCard;
|
|
PayloadSchema = SchemaData;
|
|
protected async _handle(payload: Payload): Promise<null> {
|
|
const member = await getGroupMember(payload.group_id, payload.user_id);
|
|
if (!member) {
|
|
throw `群成员${payload.user_id}不存在`;
|
|
}
|
|
await NTQQGroupApi.setMemberCard(payload.group_id.toString(), member.uid, payload.card || '');
|
|
return null;
|
|
}
|
|
}
|