import BaseAction from '../BaseAction'; import { ActionName } from '../types'; import { FromSchema, JSONSchema } from 'json-schema-to-ts'; const SchemaData = { type: 'object', properties: { friend_id: { type: ['string', 'number'] }, user_id: { type: ['string', 'number'] }, temp_block: { type: 'boolean' }, temp_both_del: { type: 'boolean' }, }, oneOf: [ { required: ['friend_id'] }, { required: ['user_id'] }, ], } as const satisfies JSONSchema; type Payload = FromSchema; export class GoCQHTTPDeleteFriend extends BaseAction { actionName = ActionName.GoCQHTTP_DeleteFriend; payloadSchema = SchemaData; async _handle(payload: Payload) { const uin = payload.friend_id ?? payload.user_id ?? ''; const uid = await this.core.apis.UserApi.getUidByUinV2(uin.toString()); if (!uid) { return { valid: false, message: '好友不存在', }; } const isBuddy = await this.core.apis.FriendApi.isBuddy(uid); if (!isBuddy) { return { valid: false, message: '不是好友', }; } return await this.core.apis.FriendApi.delBuudy(uid, payload.temp_block, payload.temp_both_del); } }