mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2026-01-04 01:29:03 +08:00
31 lines
1.0 KiB
TypeScript
31 lines
1.0 KiB
TypeScript
import BaseAction from '../BaseAction';
|
|
import { ActionName } from '../types';
|
|
import { FromSchema, JSONSchema } from 'json-schema-to-ts';
|
|
|
|
const SchemaData = {
|
|
type: 'object',
|
|
properties: {
|
|
group_id: { type: ['number', 'string'] }
|
|
},
|
|
required: ['group_id'],
|
|
} as const satisfies JSONSchema;
|
|
type Payload = FromSchema<typeof SchemaData>;
|
|
|
|
export class GoCQHTTPGetGroupAtAllRemain extends BaseAction<Payload, any> {
|
|
actionName = ActionName.GoCQHTTP_GetGroupAtAllRemain;
|
|
payloadSchema = SchemaData;
|
|
|
|
async _handle(payload: Payload) {
|
|
let ret = await this.core.apis.GroupApi.getGroupRemainAtTimes(payload.group_id.toString());
|
|
if (!ret.atInfo || ret.result !== 0) {
|
|
throw new Error('atInfo not found');
|
|
}
|
|
let data = {
|
|
can_at_all: ret.atInfo.canAtAll,
|
|
remain_at_all_count_for_group: ret.atInfo.RemainAtAllCountForGroup,
|
|
remain_at_all_count_for_uin: ret.atInfo.RemainAtAllCountForUin
|
|
};
|
|
return data;
|
|
}
|
|
}
|