egg_server/routes/bot/actionMsg.ts

40 lines
1013 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Context } from "../../types"
const GROUP_MAP = {}
/**
* 处理点击事件
* @param {Context} ctx - 上下文数据包含body, larkService和logger
*/
const manageAction = async (ctx: Context) => {
const {
larkBody: { actionValue },
logger,
} = ctx
const { cardGroup } = actionValue as {
cardGroup: keyof typeof GROUP_MAP
}
logger.info("获取到飞书卡片Action", { cardGroup })
if (!cardGroup) return
const func = GROUP_MAP[cardGroup] as (ctx: Context) => Promise<any>
if (!func) return
return func(ctx)
}
/**
* 处理Action消息
* @param {Context} ctx - 上下文数据
*/
export const manageActionMsg = async (ctx: Context) => {
const {
larkBody: { actionType },
} = ctx
// 只处理按钮和静态选择器
if (!["button", "select_static"].includes(actionType!))
return ctx.genResp.ok()
const card = await manageAction(ctx)
// 如果有返回卡片则返回卡片
if (card) return ctx.genResp.json(card)
return ctx.genResp.ok()
}