egg_server/routes/bot/index.ts
zhaoyingbo 6e65581bbf
All checks were successful
Egg CI/CD / build-image (push) Successful in 32s
Egg CI/CD / deploy (push) Successful in 37s
feat: 接入lint 和 husky
2024-07-25 01:48:22 +00:00

19 lines
587 B
TypeScript

import netTool from "../../services/netTool"
import { manageActionMsg } from "./actionMsg"
import { manageEventMsg } from "./eventMsg"
export const manageBotReq = async (req: Request) => {
const body = (await req.json()) as any
console.log("🚀 ~ manageBotReq ~ body:", body)
// 验证机器人
if (body?.type === "url_verification") {
return Response.json({ challenge: body?.challenge })
}
// 处理Event消息
if (manageEventMsg(body)) return netTool.ok()
// 处理Action消息
if (manageActionMsg(body)) return netTool.ok()
// 其他
return netTool.ok()
}