mirror of
https://github.com/chrononeko/chronocat.git
synced 2024-11-16 12:51:39 +00:00
feat(api): implement unsafe.channel.mute
This commit is contained in:
parent
10b7362656
commit
6efc21489d
13
packages/engine-chronocat-api/src/api/channel/mute.ts
Normal file
13
packages/engine-chronocat-api/src/api/channel/mute.ts
Normal 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 {}
|
||||
}
|
@ -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))
|
||||
|
29
packages/shell/src/satori/routes/channel/mute.ts
Normal file
29
packages/shell/src/satori/routes/channel/mute.ts
Normal 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)
|
||||
}
|
@ -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,
|
||||
|
@ -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>,
|
||||
|
Loading…
Reference in New Issue
Block a user