feat(api): implement unsafe.channel.mute

This commit is contained in:
Il Harper 2024-03-08 12:40:20 +08:00
parent 10b7362656
commit 6efc21489d
No known key found for this signature in database
GPG Key ID: 4B71FCA698E7E8EC
5 changed files with 48 additions and 2 deletions

View File

@ -0,0 +1,13 @@
import type { ChannelMutePayload, ChronocatContext } from '@chronocat/shell'
import { setGroupShutUp } from '../../definitions/groupService'
export const buildChannelMute =
(_ctx: ChronocatContext) =>
async ({ channel_id, enable }: ChannelMutePayload) => {
await setGroupShutUp({
groupCode: channel_id,
shutUp: enable,
})
return {}
}

View File

@ -2,6 +2,7 @@ import type { RedIpcArgs } from '@chronocat/red'
import type { ChronocatContext } from '@chronocat/shell'
import { ipcMan } from 'ipcman'
import { buildChannelMemberMute } from './api/channel/member/mute'
import { buildChannelMute } from './api/channel/mute'
import { buildAssetsGet } from './api/internal/assets/get'
import { qfaceGet, qfaceList } from './api/internal/qface'
import { buildLoginGet } from './api/login/get'
@ -21,6 +22,7 @@ export const apply = async (ctx: ChronocatContext) => {
const register = ctx.chronocat.api.register(name)
register('chronocat.internal.assets.get', buildAssetsGet(ctx))
register('unsafe.channel.mute', buildChannelMute(ctx))
register('unsafe.channel.member.mute', buildChannelMemberMute(ctx))
register('message.create', buildMessageCreate(ctx))
register('login.get', buildLoginGet(ctx))

View File

@ -0,0 +1,29 @@
import type { ChannelMutePayload } from '../../types'
import type { RouteContext } from '../types'
export const channelMute = async ({
cctx,
path,
req,
res,
json,
}: RouteContext) => {
const payload = (await json()) as ChannelMutePayload
const validateResult =
await cctx.chronocat.validate('ChannelMutePayload')(payload)
if (validateResult) {
const err = `解析 ${path} 请求时出现问题,来自 ${req.socket.remoteAddress}${validateResult}`
cctx.chronocat.l.error(err, {
code: 400,
})
res.writeHead(400)
res.end(`400 bad request\n${err}`)
return
}
return await cctx.chronocat.api['unsafe.channel.mute'](payload)
}

View File

@ -1,7 +1,7 @@
// import { channelGet } from './channel/get'
// import { channelList } from './channel/list'
import { channelMemberMute } from './channel/member/mute'
// import { channelMute } from './channel/mute'
import { channelMute } from './channel/mute'
// import { friendApprove } from './friend/approve'
// import { friendList } from './friend/list'
// import { friendRemove } from './friend/remove'
@ -28,7 +28,7 @@ const routesIntl = {
'channel.create': notImplemented,
'channel.update': notImplemented,
'channel.delete': notImplemented,
// 'unsafe.channel.mute': channelMute,
'unsafe.channel.mute': channelMute,
'unsafe.channel.member.mute': channelMemberMute,
// 'user.channel.create': userChannelCreate,
// 'guild.get': guildGet,

View File

@ -4,6 +4,7 @@ import type styles from 'ansi-styles'
import type { O } from 'ts-toolbelt'
import type {
ChannelMemberMutePayload,
ChannelMutePayload,
Event,
Login,
Message,
@ -75,6 +76,7 @@ export interface SelfProfileDispatchMessage {
export interface Methods {
// Satori
'unsafe.channel.mute': [[ChannelMutePayload], Record<string, never>]
'unsafe.channel.member.mute': [
[ChannelMemberMutePayload],
Record<string, never>,