@meet-im/meet-bot-jssdk 0.0.6 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +182 -44
- package/dist/index.cjs +458 -17
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +194 -2
- package/dist/index.d.ts +194 -2
- package/dist/index.js +441 -18
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @meet-im/meet-bot-jssdk
|
|
2
2
|
|
|
3
|
-
MeetIM Chatbot JavaScript SDK - 支持 Long Polling
|
|
3
|
+
MeetIM Chatbot JavaScript SDK - 支持 Long Polling 消息获取、消息发送和媒体文件处理
|
|
4
4
|
|
|
5
5
|
## 安装
|
|
6
6
|
|
|
@@ -17,14 +17,30 @@ import { MeetBot } from '@meet-im/meet-bot-jssdk'
|
|
|
17
17
|
|
|
18
18
|
const bot = new MeetBot({
|
|
19
19
|
token: 'bot_id:secret',
|
|
20
|
-
|
|
20
|
+
useV2: true, // 启用 getUpdatesV2,支持引用消息
|
|
21
21
|
})
|
|
22
22
|
|
|
23
|
-
bot.on('message', (
|
|
24
|
-
console.log('收到消息:',
|
|
23
|
+
bot.on('message', ({ message, quoteMsgMap }) => {
|
|
24
|
+
console.log('收到消息:', message.content)
|
|
25
|
+
|
|
26
|
+
// 处理引用消息
|
|
27
|
+
if (message.quoteSeqID && message.sessionInfo) {
|
|
28
|
+
const { getConvID, getQuoteMsgKey } = await import('@meet-im/meet-bot-jssdk')
|
|
29
|
+
const convID = getConvID(
|
|
30
|
+
message.sessionInfo.firstID,
|
|
31
|
+
message.sessionInfo.secondID,
|
|
32
|
+
message.sessionInfo.sessionType,
|
|
33
|
+
message.sessionInfo.companyID
|
|
34
|
+
)
|
|
35
|
+
const quoteKey = getQuoteMsgKey(convID, message.quoteSeqID)
|
|
36
|
+
const quoteMsg = quoteMsgMap[quoteKey]
|
|
37
|
+
if (quoteMsg) {
|
|
38
|
+
console.log('引用消息:', quoteMsg.content)
|
|
39
|
+
}
|
|
40
|
+
}
|
|
25
41
|
|
|
26
|
-
if (
|
|
27
|
-
bot.sendMessage(
|
|
42
|
+
if (message.sessionInfo) {
|
|
43
|
+
bot.sendMessage(message.sessionInfo, { content: `收到: ${message.content}` })
|
|
28
44
|
}
|
|
29
45
|
})
|
|
30
46
|
|
|
@@ -34,21 +50,21 @@ bot.startPolling()
|
|
|
34
50
|
### 函数式风格
|
|
35
51
|
|
|
36
52
|
```typescript
|
|
37
|
-
import {
|
|
53
|
+
import { getUpdatesV2, sendMessage } from '@meet-im/meet-bot-jssdk'
|
|
38
54
|
|
|
39
55
|
const token = 'bot_id:secret'
|
|
40
56
|
const baseUrl = 'https://staging-meet-api.miyachat.com'
|
|
41
57
|
|
|
42
|
-
const
|
|
58
|
+
const { msgs, quoteMsgMap } = await getUpdatesV2({ token, baseUrl })
|
|
43
59
|
|
|
44
|
-
for (const
|
|
45
|
-
if (
|
|
46
|
-
console.log('收到消息:',
|
|
60
|
+
for (const { message } of msgs) {
|
|
61
|
+
if (message.sessionInfo) {
|
|
62
|
+
console.log('收到消息:', message.content)
|
|
47
63
|
|
|
48
64
|
await sendMessage({
|
|
49
65
|
token,
|
|
50
66
|
baseUrl,
|
|
51
|
-
sessionInfo:
|
|
67
|
+
sessionInfo: message.sessionInfo,
|
|
52
68
|
msgContent: { content: '收到!' },
|
|
53
69
|
})
|
|
54
70
|
}
|
|
@@ -65,28 +81,37 @@ for (const update of updates) {
|
|
|
65
81
|
new MeetBot(config: MeetBotConfig)
|
|
66
82
|
```
|
|
67
83
|
|
|
68
|
-
| 参数 | 类型
|
|
69
|
-
| ------------------ |
|
|
70
|
-
| token | string
|
|
71
|
-
| botId | string \| number
|
|
72
|
-
| botToken | string
|
|
73
|
-
| baseUrl | string
|
|
74
|
-
| pollingLimit | number
|
|
75
|
-
| longPollingTimeout | number
|
|
84
|
+
| 参数 | 类型 | 必填 | 说明 |
|
|
85
|
+
| ------------------ | ------------------ | ---- | ------------------------------------------------------ |
|
|
86
|
+
| token | string | 是\* | Bot Token,格式:`bot_id:secret` |
|
|
87
|
+
| botId | string \| number | 是\* | Bot ID(与 botToken 配合使用) |
|
|
88
|
+
| botToken | string | 是\* | Bot Token(与 botId 配合使用) |
|
|
89
|
+
| baseUrl | string | 否 | API 地址,默认 `https://staging-meet-api.miyachat.com` |
|
|
90
|
+
| pollingLimit | number | 否 | 每次拉取消息条数,默认 100 |
|
|
91
|
+
| longPollingTimeout | number | 否 | 长轮询超时时间(秒),默认 30 |
|
|
92
|
+
| useV2 | boolean | 否 | 使用 getUpdatesV2 接口,默认 false |
|
|
93
|
+
| logLevel | 'silent' \| 'info' | 否 | 日志级别,默认 'silent' |
|
|
76
94
|
|
|
77
95
|
\*token 或 (botId + botToken) 二选一
|
|
78
96
|
|
|
79
97
|
#### 方法
|
|
80
98
|
|
|
81
|
-
| 方法 | 说明
|
|
82
|
-
| -------------------------------------- |
|
|
83
|
-
| `on(event, handler)` | 监听事件
|
|
84
|
-
| `off(event, handler)` | 移除事件监听
|
|
85
|
-
| `startPolling(options?)` | 启动长轮询
|
|
86
|
-
| `stopPolling()` | 停止轮询
|
|
87
|
-
| `isPolling()` | 获取轮询状态
|
|
88
|
-
| `getUpdates(options?)` |
|
|
89
|
-
| `
|
|
99
|
+
| 方法 | 说明 |
|
|
100
|
+
| -------------------------------------- | ------------------ |
|
|
101
|
+
| `on(event, handler)` | 监听事件 |
|
|
102
|
+
| `off(event, handler)` | 移除事件监听 |
|
|
103
|
+
| `startPolling(options?)` | 启动长轮询 |
|
|
104
|
+
| `stopPolling()` | 停止轮询 |
|
|
105
|
+
| `isPolling()` | 获取轮询状态 |
|
|
106
|
+
| `getUpdates(options?)` | 手动获取消息(V1) |
|
|
107
|
+
| `getUpdatesV2(options?)` | 手动获取消息(V2) |
|
|
108
|
+
| `sendMessage(sessionInfo, msgContent)` | 发送消息 |
|
|
109
|
+
| `getUploadURL(params)` | 获取单文件上传地址 |
|
|
110
|
+
| `getMultiPartUploadURL(params)` | 获取分片上传地址 |
|
|
111
|
+
| `completeMultipartUpload(params)` | 完成分片上传 |
|
|
112
|
+
| `getAccessURL(params)` | 获取文件下载地址 |
|
|
113
|
+
| `uploadFile(buffer, options)` | 上传文件 |
|
|
114
|
+
| `sendMedia(sessionInfo, options)` | 发送媒体消息 |
|
|
90
115
|
|
|
91
116
|
#### startPolling options
|
|
92
117
|
|
|
@@ -100,16 +125,16 @@ new MeetBot(config: MeetBotConfig)
|
|
|
100
125
|
|
|
101
126
|
#### 事件
|
|
102
127
|
|
|
103
|
-
| 事件 | 参数
|
|
104
|
-
| --------------- |
|
|
105
|
-
| `message` | `MsgContent` | 收到新消息 |
|
|
106
|
-
| `error` | `Error`
|
|
107
|
-
| `polling_start` | `void`
|
|
108
|
-
| `polling_stop` | `void`
|
|
128
|
+
| 事件 | 参数 | 说明 |
|
|
129
|
+
| --------------- | -------------------------------------- | ---------- |
|
|
130
|
+
| `message` | `{ message: MsgContent, quoteMsgMap }` | 收到新消息 |
|
|
131
|
+
| `error` | `Error` | 发生错误 |
|
|
132
|
+
| `polling_start` | `void` | 轮询开始 |
|
|
133
|
+
| `polling_stop` | `void` | 轮询停止 |
|
|
109
134
|
|
|
110
135
|
### 函数式 API
|
|
111
136
|
|
|
112
|
-
#### getUpdates
|
|
137
|
+
#### getUpdates(已废弃)
|
|
113
138
|
|
|
114
139
|
```typescript
|
|
115
140
|
getUpdates(params: GetUpdatesParams): Promise<BotUpdate[]>
|
|
@@ -123,6 +148,28 @@ getUpdates(params: GetUpdatesParams): Promise<BotUpdate[]>
|
|
|
123
148
|
| offset | number | 否 | 0 | 从该 seqId 之后获取 |
|
|
124
149
|
| limit | number | 否 | 100 | 最大返回条数 |
|
|
125
150
|
|
|
151
|
+
#### getUpdatesV2(推荐)
|
|
152
|
+
|
|
153
|
+
```typescript
|
|
154
|
+
getUpdatesV2(params: GetUpdatesV2Params): Promise<GetUpdatesV2Result>
|
|
155
|
+
```
|
|
156
|
+
|
|
157
|
+
| 参数 | 类型 | 必填 | 默认值 | 说明 |
|
|
158
|
+
| ------- | ------ | ---- | ------ | ----------------------- |
|
|
159
|
+
| token | string | 是 | - | Bot Token |
|
|
160
|
+
| baseUrl | string | 否 | - | API 地址 |
|
|
161
|
+
| timeout | number | 否 | 0 | Long Polling 超时(秒) |
|
|
162
|
+
| limit | number | 否 | 100 | 最大返回条数 |
|
|
163
|
+
|
|
164
|
+
返回值:
|
|
165
|
+
|
|
166
|
+
```typescript
|
|
167
|
+
interface GetUpdatesV2Result {
|
|
168
|
+
msgs: { message: MsgContent }[]
|
|
169
|
+
quoteMsgMap: Record<string, MsgContent> // key: "convID:seqID"
|
|
170
|
+
}
|
|
171
|
+
```
|
|
172
|
+
|
|
126
173
|
#### sendMessage
|
|
127
174
|
|
|
128
175
|
```typescript
|
|
@@ -136,32 +183,118 @@ sendMessage(params: SendMessageParams): Promise<SendMessageResult>
|
|
|
136
183
|
| sessionInfo | SessionInfo | 是 | 会话信息 |
|
|
137
184
|
| msgContent | MsgContent | 是 | 消息内容 |
|
|
138
185
|
|
|
186
|
+
### 媒体文件 API
|
|
187
|
+
|
|
188
|
+
#### getUploadURL
|
|
189
|
+
|
|
190
|
+
获取单文件上传签名地址。
|
|
191
|
+
|
|
192
|
+
```typescript
|
|
193
|
+
getUploadURL(params): Promise<UploadURLResult>
|
|
194
|
+
```
|
|
195
|
+
|
|
196
|
+
| 参数 | 类型 | 必填 | 说明 |
|
|
197
|
+
| -------------- | ------ | ---- | ---------------- |
|
|
198
|
+
| token | string | 是 | Bot Token |
|
|
199
|
+
| originFileName | string | 是 | 原始文件名 |
|
|
200
|
+
| contentType | string | 是 | MIME 类型 |
|
|
201
|
+
| md5 | string | 是 | 格式:`md5_hash` |
|
|
202
|
+
| size | number | 是 | 文件大小(字节) |
|
|
203
|
+
|
|
204
|
+
#### getAccessURL
|
|
205
|
+
|
|
206
|
+
获取文件下载地址。
|
|
207
|
+
|
|
208
|
+
```typescript
|
|
209
|
+
// 方式1:完整参数
|
|
210
|
+
getAccessURL({ token, firstId, secondId, sessionType, seqId, fileId })
|
|
211
|
+
|
|
212
|
+
// 方式2:使用 sessionInfo
|
|
213
|
+
getAccessURL({ token, sessionInfo, seqId, fileId })
|
|
214
|
+
```
|
|
215
|
+
|
|
216
|
+
#### uploadFile
|
|
217
|
+
|
|
218
|
+
上传文件(自动选择单文件或分片上传)。
|
|
219
|
+
|
|
220
|
+
```typescript
|
|
221
|
+
uploadFile(token, buffer, { fileName, contentType, onProgress? })
|
|
222
|
+
```
|
|
223
|
+
|
|
224
|
+
#### sendMedia
|
|
225
|
+
|
|
226
|
+
发送媒体消息(上传并发送)。
|
|
227
|
+
|
|
228
|
+
```typescript
|
|
229
|
+
sendMedia(token, sessionInfo, { buffer, fileName, contentType, content?, onProgress? })
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
### 工具函数
|
|
233
|
+
|
|
234
|
+
#### getConvID
|
|
235
|
+
|
|
236
|
+
生成会话 ID。
|
|
237
|
+
|
|
238
|
+
```typescript
|
|
239
|
+
import { getConvID } from '@meet-im/meet-bot-jssdk'
|
|
240
|
+
|
|
241
|
+
const convID = getConvID(firstID, secondID, sessionType, companyID?)
|
|
242
|
+
```
|
|
243
|
+
|
|
244
|
+
| 会话类型 | convID 格式 |
|
|
245
|
+
| -------- | -------------------------------------- |
|
|
246
|
+
| 私聊 (1) | `min:max` 或 `min:max:companyID` |
|
|
247
|
+
| 群聊 (3) | `firstID+secondID` 或追加 `+companyID` |
|
|
248
|
+
| 频道 | `firstID_secondID` 或追加 `_companyID` |
|
|
249
|
+
|
|
250
|
+
#### getQuoteMsgKey
|
|
251
|
+
|
|
252
|
+
生成引用消息的 key。
|
|
253
|
+
|
|
254
|
+
```typescript
|
|
255
|
+
import { getQuoteMsgKey } from '@meet-im/meet-bot-jssdk'
|
|
256
|
+
|
|
257
|
+
const key = getQuoteMsgKey(convID, seqID) // "convID:seqID"
|
|
258
|
+
```
|
|
259
|
+
|
|
139
260
|
## 类型定义
|
|
140
261
|
|
|
141
262
|
```typescript
|
|
142
263
|
type SessionType = 1 | 3 // 1: 私聊, 3: 群聊
|
|
143
264
|
|
|
144
265
|
interface SessionInfo {
|
|
145
|
-
firstID: number
|
|
146
|
-
secondID: number
|
|
266
|
+
firstID: number
|
|
267
|
+
secondID: number
|
|
147
268
|
sessionType: SessionType
|
|
148
269
|
companyID?: number
|
|
149
270
|
}
|
|
150
271
|
|
|
151
272
|
type MsgType = 'NORMAL' | 'RECALL' | 'QUOTE'
|
|
152
273
|
|
|
274
|
+
interface AttachmentInfo {
|
|
275
|
+
fileID: string | number
|
|
276
|
+
fileName?: string
|
|
277
|
+
filePath?: string
|
|
278
|
+
fileSize?: number
|
|
279
|
+
mimeType?: string
|
|
280
|
+
fileUrl?: string
|
|
281
|
+
}
|
|
282
|
+
|
|
153
283
|
interface ExtraInfo {
|
|
154
284
|
msgType?: MsgType
|
|
285
|
+
attechmentInfo?: AttachmentInfo // 单附件
|
|
286
|
+
attechmentInfos?: AttachmentInfo[] // 多附件
|
|
155
287
|
[key: string]: unknown
|
|
156
288
|
}
|
|
157
289
|
|
|
158
290
|
interface MsgContent {
|
|
159
|
-
content: string
|
|
160
|
-
seqId?: number
|
|
161
|
-
timestamp?: number
|
|
162
|
-
fromUid?: number
|
|
163
|
-
atIds?: number[]
|
|
164
|
-
|
|
291
|
+
content: string
|
|
292
|
+
seqId?: number
|
|
293
|
+
timestamp?: number
|
|
294
|
+
fromUid?: number
|
|
295
|
+
atIds?: number[]
|
|
296
|
+
quoteSeqID?: number // 引用消息 seqID
|
|
297
|
+
extraInfo?: ExtraInfo
|
|
165
298
|
sessionInfo?: SessionInfo
|
|
166
299
|
}
|
|
167
300
|
|
|
@@ -169,6 +302,11 @@ interface BotUpdate {
|
|
|
169
302
|
message?: MsgContent
|
|
170
303
|
}
|
|
171
304
|
|
|
305
|
+
interface GetUpdatesV2Result {
|
|
306
|
+
msgs: { message: MsgContent }[]
|
|
307
|
+
quoteMsgMap: Record<string, MsgContent>
|
|
308
|
+
}
|
|
309
|
+
|
|
172
310
|
interface SendMessageResult {
|
|
173
311
|
msgContent: MsgContent
|
|
174
312
|
quoteMsg: unknown
|