mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2024-11-21 09:36:35 +00:00
44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
import { NTQQUserApi } from '@/core/apis';
|
|
import BaseAction from '../BaseAction';
|
|
import { getFriend } from '@/core/data';
|
|
import { ActionName } from '../types';
|
|
import { log, logDebug } from '@/common/utils/log';
|
|
import { FromSchema, JSONSchema } from 'json-schema-to-ts';
|
|
|
|
const SchemaData = {
|
|
type: 'object',
|
|
properties: {
|
|
user_id: { type: ['number', 'string'] },
|
|
times: { type: ['number', 'string'] }
|
|
},
|
|
required: ['user_id', 'times']
|
|
} as const satisfies JSONSchema;
|
|
|
|
type Payload = FromSchema<typeof SchemaData>;
|
|
|
|
export default class SendLike extends BaseAction<Payload, null> {
|
|
actionName = ActionName.SendLike;
|
|
PayloadSchema = SchemaData;
|
|
protected async _handle(payload: Payload): Promise<null> {
|
|
//logDebug('点赞参数', payload);
|
|
try {
|
|
const qq = payload.user_id.toString();
|
|
const friend = await getFriend(qq);
|
|
let uid: string;
|
|
if (!friend) {
|
|
uid = await NTQQUserApi.getUidByUin(qq) || '';
|
|
} else {
|
|
uid = friend.uid;
|
|
}
|
|
const result = await NTQQUserApi.like(uid, parseInt(payload.times?.toString()) || 1);
|
|
//logDebug('点赞结果', result);
|
|
if (result.result !== 0) {
|
|
throw Error(result.errMsg);
|
|
}
|
|
} catch (e) {
|
|
throw `点赞失败 ${e}`;
|
|
}
|
|
return null;
|
|
}
|
|
}
|