feat(lark-msg-tool): 完成飞书消息工具
Some checks failed
/ release (push) Failing after 23s

This commit is contained in:
zhaoyingbo 2024-08-21 01:09:40 +00:00
parent 60fd1135d0
commit 5ebb5e170a
9 changed files with 382 additions and 0 deletions

12
package-lock.json generated
View File

@ -394,6 +394,10 @@
"resolved": "packages/hooks",
"link": true
},
"node_modules/@egg/lark-msg-tool": {
"resolved": "packages/lark-msg-tool",
"link": true
},
"node_modules/@egg/logger": {
"resolved": "packages/logger",
"link": true
@ -12252,6 +12256,14 @@
"lodash": "*"
}
},
"packages/lark-msg-tool": {
"name": "@egg/lark-msg-tool",
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"@egg/hooks": "*"
}
},
"packages/logger": {
"name": "@egg/logger",
"version": "1.2.1",

View File

@ -0,0 +1,8 @@
src
node_modules
.git
.vscode
.devcontainer
.npmrc
tsconfig.json
tsconfig.tsbuildinfo

View File

@ -0,0 +1,20 @@
# Change Log
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.2.1](http://yingbo.im:3000/zhaoyingbo/egg_tools/compare/@egg/path-tool@1.2.0...@egg/path-tool@1.2.1) (2024-08-20)
**Note:** Version bump only for package @egg/path-tool
# [1.2.0](http://yingbo.im:3000/zhaoyingbo/egg_tools/compare/@egg/path-tool@1.1.0...@egg/path-tool@1.2.0) (2024-08-20)
### Features
- 为每个包添加npmignore ([3539dd3](http://yingbo.im:3000/zhaoyingbo/egg_tools/commits/3539dd3514ce6512b90f6561cda40f9a40e18292))
# 1.1.0 (2024-08-19)
### Features
- 完成所有包及其自动发布部署 [#3](http://yingbo.im:3000/zhaoyingbo/egg_tools/issues/3) ([ca2f556](http://yingbo.im:3000/zhaoyingbo/egg_tools/commits/ca2f556b3429daac8f765a0c3a9a81aa6db827bc))

View File

@ -0,0 +1,20 @@
{
"name": "@egg/lark-msg-tool",
"version": "1.0.0",
"description": "Lark Msg Tools for Egg projects",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"egg",
"tools",
"lark",
"msg"
],
"author": "RainSun <zhaoyingbo@live.cn>",
"license": "ISC"
}

View File

@ -0,0 +1,91 @@
import { LarkAction, LarkEvent } from "./types"
/**
*
* @param {LarkEvent.Data} body -
* @returns {boolean}
*/
export const getIsEventMsg = (body: LarkEvent.Data): boolean => {
return body?.header?.event_type === "im.message.receive_v1"
}
/**
*
* @param {LarkEvent.Data} body -
* @returns {string | undefined}
*/
export const getMsgType = (body: LarkEvent.Data): string | undefined => {
return body?.event?.message?.message_type
}
/**
* Id
* @param {LarkEvent.Data} body -
* @returns {string | undefined} Id
*/
export const getChatId = (body: LarkEvent.Data): string | undefined => {
return body?.event?.message?.chat_id
}
/**
* Id
* @param {LarkEvent.Data} body -
* @returns {string | undefined} Id
*/
export const getUserId = (body: LarkEvent.Data): string | undefined => {
return body?.event?.sender?.sender_id?.user_id
}
/**
* Action消息
* @param {LarkAction.Data} body - Action消息体
* @returns {boolean} Action消息
*/
export const getIsActionMsg = (body: LarkAction.Data): boolean => {
return !!body?.action
}
/**
* Action类型
* @param {LarkAction.Data} body - Action消息体
* @returns {string | undefined} Action类型
*/
export const getActionType = (body: LarkAction.Data): string | undefined => {
return body?.action?.tag
}
/**
*
* @param {LarkEvent.Data} body -
* @returns {string}
*/
export const getMsgText = (body: LarkEvent.Data): string => {
try {
const { text }: { text: string } = JSON.parse(body?.event?.message?.content)
// 去掉@_user_1相关的内容例如 '@_user_1 测试' -> '测试'
const textWithoutAt = text.replace(/@_user_\d+/g, "")
return textWithoutAt
} catch {
return ""
}
}
/**
*
* @param {LarkEvent.Data} body -
* @returns {string | undefined}
*/
export const getChatType = (body: LarkEvent.Data): string | undefined => {
return body?.event?.message?.chat_type
}
/**
*
* @param {LarkEvent.Data} body -
* @returns {Array | undefined}
*/
export const getMentions = (body: LarkEvent.Data): Array<any> | undefined => {
return body?.event?.message?.mentions
}
export { LarkAction, LarkEvent }

View File

@ -0,0 +1,4 @@
import type { LarkAction } from "./larkAction"
import type { LarkEvent } from "./larkEvent"
export { LarkAction, LarkEvent }

View File

@ -0,0 +1,56 @@
export namespace LarkAction {
export interface Data {
/**
* open_id
*/
open_id: string
/**
*
* @example zhaoyingbo
*/
user_id: string
/**
* ID
* @example om_038fc0eceed6224a1abc1cdaa4266405
*/
open_message_id: string
/**
* ID
* @example oc_433b1cb7a9dbb7ebe70a4e1a59cb8bb1
*/
open_chat_id: string
/**
* ID
* @example 2ee61fe50f4f1657
*/
tenant_key: string
/**
* token
* @example tV9djUKSjzVnekV7xTg2Od06NFTcsBnj
*/
token: string
/**
*
*/
action: {
/**
*
*/
value: any
/**
*
* @example picker_datetime
*/
tag: string
/**
*
* @example 2023-09-03 10:35 +0800
*/
option: string
/**
*
*/
timezone: string
}
}
}

View File

@ -0,0 +1,163 @@
export namespace LarkEvent {
/**
*
*/
export interface Header {
/**
* ID
* @example 0f8ab23b60993cf8dd15c8cde4d7b0f5
*/
event_id: string
/**
* token
* @example tV9djUKSjzVnekV7xTg2Od06NFTcsBnj
*/
token: string
/**
*
* @example 1693565712117
*/
create_time: string
/**
*
* @example im.message.receive_v1
*/
event_type: string
/**
* tenant_key
* @example 2ee61fe50f4f1657
*/
tenant_key: string
/**
* app_id
* @example cli_a1eff35b43b89063
*/
app_id: string
}
/**
* AT的人的信息
*/
export interface Mention {
/**
* ID信息
*/
id: UserIdInfo
/**
*
* @example "@_user_1"
*/
key: string
/**
*
* @example
*/
name: string
/**
* ID
* @example 2ee61fe50f4f1657
*/
tenant_key: string
}
/**
*
*/
export interface Message {
/**
* ID
* @example oc_433b1cb7a9dbb7ebe70a4e1a59cb8bb1
*/
chat_id: string
/**
*
* @example group | p2p
*/
chat_type: "group" | "p2p"
/**
* JSON字符串文本内容
* @example "{\"text\":\"@_user_1 测试\"}"
*/
content: string
/**
*
* @example 1693565711996
*/
create_time: string
/**
*
*/
mentions?: Mention[]
/**
* ID
* @example om_038fc0eceed6224a1abc1cdaa4266405
*/
message_id: string
/**
*
* @example textpostimagefileaudiomediastickerinteractiveshare_chatshare_user
*/
message_type: string
}
/**
* ID信息
*/
export interface UserIdInfo {
/**
*
* @example ou_032f507d08f9a7f28b042fcd086daef5
*/
open_id: string
/**
*
* @example on_7111660fddd8302ce47bf1999147c011
*/
union_id: string
/**
*
* @example zhaoyingbo
*/
user_id: string
}
/**
*
*/
export interface Sender {
/**
* id
*/
sender_id: UserIdInfo
/**
*
* @example user
*/
sender_type: string
/**
* ID
* @example 2ee61fe50f4f1657
*/
tenant_key: string
}
/**
*
*/
export interface Event {
message: Message
sender: Sender
}
export interface Data {
/**
*
* @example 2.0
*/
schema: string
/**
*
*/
header: Header
/**
*
*/
event: Event
}
}

View File

@ -0,0 +1,8 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["./src"]
}