diff --git a/src/onebot11/action/go-cqhttp/SendGroupNotice.ts b/src/onebot11/action/go-cqhttp/SendGroupNotice.ts new file mode 100644 index 00000000..2e246b09 --- /dev/null +++ b/src/onebot11/action/go-cqhttp/SendGroupNotice.ts @@ -0,0 +1,17 @@ +import BaseAction from '../BaseAction'; +import { ActionName } from '../types'; +import { WebApi } from '@/core/apis'; +interface Payload { + group_id: string; + content: string; + image?: string; +} +export class SendGroupNotice extends BaseAction { + actionName = ActionName.GoCQHTTP_SendGroupNotice; + + protected async _handle(payload: Payload) { + await WebApi.setGroupNotice(payload.group_id, payload.content); + //返回值验证没做 + return null; + } +} diff --git a/src/onebot11/action/index.ts b/src/onebot11/action/index.ts index 0eac336a..b9bedf69 100644 --- a/src/onebot11/action/index.ts +++ b/src/onebot11/action/index.ts @@ -53,6 +53,7 @@ import { GetGroupNotice } from './group/GetGroupNotice'; import { GetGroupEssence } from './group/GetGroupEssence'; import { ForwardFriendSingleMsg, ForwardGroupSingleMsg } from '@/onebot11/action/msg/ForwardSingleMsg'; import { GetFriendWithCategory } from './extends/GetFriendWithCategory'; +import { SendGroupNotice } from './go-cqhttp/SendGroupNotice'; export const actionHandlers = [ new GetFile(), @@ -97,6 +98,7 @@ export const actionHandlers = [ new GetRobotUinRange(), new GetFriendWithCategory(), //以下为go-cqhttp api + new SendGroupNotice(), new GetGroupNotice(), new GetGroupEssence(), new GoCQHTTPSendForwardMsg(), diff --git a/src/onebot11/action/types.ts b/src/onebot11/action/types.ts index 16381099..cd41e98f 100644 --- a/src/onebot11/action/types.ts +++ b/src/onebot11/action/types.ts @@ -59,6 +59,7 @@ export enum ActionName { SetOnlineStatus = 'set_online_status', GetFriendsWithCategory = 'get_friends_with_category', // 以下为go-cqhttp api + GoCQHTTP_SendGroupNotice = '_send_group_notice', GoCQHTTP_GetEssenceMsg = 'get_essence_msg_list', GoCQHTTP_SetGroupNotice = '_send_group_notice', GoCQHTTP_GetGroupNotice = '_get_group_notice',