egg_server/utils/message.ts

21 lines
546 B
TypeScript
Raw Permalink 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"
/**
* 判断是否为非群聊和非艾特机器人的消息
* @param {Context} ctx - 上下文数据包含body, logger和larkService
* @returns {boolean} 是否为非法消息
*/
export const isNotP2POrAtBot = (ctx: Context) => {
const { larkBody, appInfo } = ctx
return !larkBody.isP2P && !larkBody.isAtBot(appInfo.appName)
}
/**
* 判断是否为群聊或者艾特机器人的消息
* @param ctx
* @returns
*/
export const isP2POrAtBot = (ctx: Context) => {
return !isNotP2POrAtBot(ctx)
}