egg_server/services/lark/message.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

47 lines
1.6 KiB
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 { LarkServer } from "../../types/larkServer"
import larkNetTool from "./larkNetTool"
/**
* 发送卡片
* @param {LarkServer.ReceiveIDType} receive_id_type 消息接收者id类型 open_id/user_id/union_id/email/chat_id
* @param {string} receive_id 消息接收者的IDID类型应与查询参数receive_id_type 对应
* @param {MsgType} msg_type 消息类型 包括text、post、image、file、audio、media、sticker、interactive、share_chat、share_user
* @param {string} content 消息内容JSON结构序列化后的字符串。不同msg_type对应不同内容
*/
const send =
(appName?: string) =>
async (
receive_id_type: LarkServer.ReceiveIDType,
receive_id: string,
msg_type: LarkServer.MsgType,
content: string
) => {
const URL = `https://open.f.mioffice.cn/open-apis/im/v1/messages?receive_id_type=${receive_id_type}`
if (msg_type === "text" && !content.includes('"text"')) {
content = JSON.stringify({ text: content })
}
return larkNetTool.post(appName)<LarkServer.BaseRes>(URL, {
receive_id,
msg_type,
content,
})
}
/**
* 更新卡片
* @param {string} message_id 消息id
* @param {string} content 消息内容JSON结构序列化后的字符串。不同msg_type对应不同内容
*/
const update =
(appName?: string) => async (message_id: string, content: string) => {
const URL = `https://open.f.mioffice.cn/open-apis/im/v1/messages/${message_id}`
return larkNetTool.patch(appName)<LarkServer.BaseRes>(URL, { content })
}
const message = {
send,
update,
}
export default message