-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
431 lines (401 loc) · 10.1 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
/**
* Chatopera Node.js SDK
* Copyright 2020 Chatopera Inc. <https://www.chatopera.com>. All rights reserved.
* This software and related documentation are provided under a license agreement containing
* restrictions on use and disclosure and are protected by intellectual property laws.
* Except as expressly permitted in your license agreement or allowed by law, you may not use,
* copy, reproduce, translate, broadcast, modify, license, transmit, distribute, exhibit, perform,
* publish, or display any part, in any form, or by any means. Reverse engineering, disassembly,
* or decompilation of this software, unless required by law for interoperability, is prohibited.
*/
const debug = require('debug')('chatopera:sdk:index');
const request = require('superagent');
const fs = require('fs');
const Q = require('@chatopera/q');
const generate = require('./lib/generate-authorization');
const { deprecate } = require('util');
const Chatopera = require('./chatopera');
// 常量
const BASE_PATH = '/api/v1/chatbot';
const K_CHATBOT_ID = 'chatbotID';
const depCode = (fnName, day) => {
return 'chatopera/sdk <chatbot#' + fnName + '> ' + day;
};
/**
* 聊天机器人
* 构造函数
* @param {*} clientId
* @param {*} clientSecret
* @param {*} host
*/
function Chatbot(clientId, clientSecret, host = 'https://bot.chatopera.com') {
if (clientId) {
this.clientId = clientId;
this.clientSecret = clientSecret;
this.baseEndpoint = `${BASE_PATH}/${this.clientId}`;
} else {
// null, false, blank or undefined.
throw new Error('Chatbot: Unexpected clientId');
}
if (host) {
if (host.endsWith('/')) host = host.substr(0, host.length - 1);
this.host = host;
} else {
throw new Error('Chatbot: Unexpected host');
}
debug(
'constructor: host %s, clientId %s, clientSecret *******',
this.host,
this.clientId
);
}
/**
* 核心接口
* @param {*} method
* @param {*} path
* @param {*} payload
*/
Chatbot.prototype.command = function (method, path, payload, headers, attach) {
// debug("[command] method %s, path %s", method, path, payload);
let deferred = Q.defer();
let endpoint = this.baseEndpoint + path;
/**
* 增加参数 sdklang
*/
method = method.toUpperCase();
if (path) {
let splits = path.split('&');
if (splits.length > 1 && path.includes('?')) {
path += '&sdklang=nodejs';
} else {
path += '?sdklang=nodejs';
}
} else {
path = '/?sdklang=nodejs';
}
/**
* 请求
*/
let req = request(method, this.host + endpoint);
let isSend = true;
if (method === 'POST' && path.startsWith('/asr/recognize')) {
// 发送文件
if (payload['filepath'] && fs.existsSync(payload['filepath'])) {
req.set('Content-Type', 'multipart/form-data');
req.attach('file', payload['filepath']);
if (payload['nbest']) {
req.field('nbest', payload['nbest']);
}
if ('pos' in payload) {
req.field('pos', payload['pos']);
}
if ('fromUserId' in payload) {
req.field('fromUserId', payload['fromUserId']);
}
} else if (
typeof payload['type'] === 'string' &&
payload['type'] === 'base64' &&
payload['data']
) {
req.set('Content-Type', 'application/json');
req.send(payload);
} else {
isSend = false;
deferred.reject(
new Error({
rc: 30,
error: 'Invalid type for asr request, add filepath or base64 data.',
})
);
}
req.set('Accept', 'application/json');
} else {
// 其它普通请求
req
.set('X-Requested-With', 'XMLHttpRequest')
.set('Expires', '-1')
.set(
'Cache-Control',
'no-cache,no-store,must-revalidate,max-age=-1,private'
)
.set(
'Content-Type',
headers && headers['Content-Type']
? headers['Content-Type']
: 'application/json'
)
.set(
'Accept',
headers && headers['Accept'] ? headers['Accept'] : 'application/json'
);
if (attach && attach instanceof Array) {
for (let x of attach) {
req.attach(x['filename'], x['filepart']);
}
} else if (payload) {
req.send(payload);
}
}
/**
* 发送及处理结果
*/
if (isSend) {
// 生成密钥
if (this.clientSecret) {
req.set(
'Authorization',
generate(this.clientId, this.clientSecret, method, endpoint)
);
}
req.then(
(res) => {
if (res.body && res.body.rc === 0) {
// omit chatbotID
if (res.body.data) {
if (res.body.data[K_CHATBOT_ID]) {
delete res.body.data[K_CHATBOT_ID];
} else if (res.body.data instanceof Array) {
// fastest loop
// https://www.incredible-web.com/blog/performance-of-for-loops-with-javascript/
for (let i = res.body.data.length - 1; i >= 0; i--) {
delete res.body.data[i][K_CHATBOT_ID];
}
}
}
}
deferred.resolve(res.body);
},
(err) => {
debug('[command] method %s, path %s, Error %s', method, path, err);
deferred.reject({
rc: 100,
error: err,
});
}
);
}
return deferred.promise;
};
/**
* 获得详情
*/
Chatbot.prototype.detail = function () {
let self = this;
let fn = deprecate(
() => {
return self.command('GET', '/');
},
'use `Chatbot#command` API instead, removed in 2020-10',
depCode('detail', '2020-07-18')
);
return fn();
};
/**
* 检索知识库
*/
Chatbot.prototype.faq = function (
userId,
textMessage,
faq_best_reply,
faq_sugg_reply
) {
let self = this;
let fn = deprecate(
() => {
return self.command('POST', '/faq/query', {
fromUserId: userId,
query: textMessage,
faq_sugg_reply: faq_sugg_reply,
faq_best_reply: faq_best_reply,
});
},
'use `Chatbot#command` API instead, removed in 2020-10',
depCode('faq', '2020-07-18')
);
return fn();
};
/**
* 查询多轮对话
* @param {*} userId
* @param {*} textMessage
* @param {*} isDebug
*/
Chatbot.prototype.conversation = function (
userId,
textMessage,
faq_best_reply,
faq_sugg_reply,
isDebug = false
) {
debug('conversation userId %s, textMessage %s', userId, textMessage);
let self = this;
let fn = deprecate(
() => {
return self.command('POST', '/conversation/query', {
fromUserId: userId,
textMessage: textMessage,
isDebug: isDebug,
faq_best_reply: faq_best_reply,
faq_sugg_reply: faq_sugg_reply,
});
},
'use `Chatbot#command` API instead, removed in 2020-10',
depCode('conversation', '2020-07-18')
);
return fn();
};
/**
* 查询用户列表
* @param {*} limit
* @param {*} page
* @param {*} sortby
*/
Chatbot.prototype.users = function (
limit = 50,
page = 1,
sortby = '-lasttime'
) {
let self = this;
let fn = deprecate(
() => {
return self.command(
'GET',
`/users?page=${page}&limit=${limit}&sortby=${sortby}`
);
},
'use `Chatbot#command` API instead, removed in 2020-10',
depCode('users', '2020-07-18')
);
return fn();
};
/**
* 获得聊天历史记录
* @param {*} userId
* @param {*} limit
* @param {*} page
*/
Chatbot.prototype.chats = function (userId, limit = 50, page = 1) {
let self = this;
let fn = deprecate(
() => {
return self.command(
'GET',
`/users/${userId}/chats?page=${page}&limit=${limit}`
);
},
'use `Chatbot#command` API instead, removed in 2020-10',
depCode('chats', '2020-07-18')
);
return fn();
};
/**
* 屏蔽一个聊天者
* @param {*} userId
*/
Chatbot.prototype.mute = function (userId) {
let self = this;
let fn = deprecate(
() => {
return self.command('POST', `/users/${userId}/mute`);
},
'use `Chatbot#command` API instead, removed in 2020-10',
depCode('mute', '2020-07-18')
);
return fn();
};
/**
* 取消屏蔽一个聊天者
* @param {*} userId
*/
Chatbot.prototype.unmute = function (userId) {
let self = this;
let fn = deprecate(
() => {
return self.command('POST', `/users/${userId}/unmute`);
},
'use `Chatbot#command` API instead, removed in 2020-10',
depCode('unmute', '2020-07-18')
);
return fn();
};
/**
*
* @param {*} userId
*/
Chatbot.prototype.ismute = function (userId) {
let self = this;
let fn = deprecate(
() => {
return self.command('POST', `/users/${userId}/ismute`);
},
'use `Chatbot#command` API instead, removed in 2020-10',
depCode('ismute', '2020-07-18')
);
return fn();
};
Chatbot.prototype.deployConversation = function (botarchive) {
let exist = fs.existsSync(botarchive);
if (!exist) {
throw new Error('File not exist.');
}
return this.command(
'POST',
'/conversation/droplet/import',
null,
{
'Content-Type': 'multipart/form-data',
},
[
{
filename: 'droplet',
filepart: botarchive,
},
]
);
};
Chatbot.prototype.intentSession = function (uid, channel) {
let self = this;
let fn = deprecate(
() => {
return self.command('POST', '/clause/prover/session', {
uid: uid,
channel: channel,
});
},
'use `Chatbot#command` API instead, removed in 2020-10',
depCode('intentSession', '2020-07-18')
);
return fn();
};
Chatbot.prototype.intentSessionDetail = function (sessionId) {
let self = this;
let fn = deprecate(
() => {
return self.command('GET', `/clause/prover/session/${sessionId}`);
},
'use `Chatbot#command` API instead, removed in 2020-10',
depCode('intentSessionDetail', '2020-07-18')
);
return fn();
};
Chatbot.prototype.intentChat = function (sessionId, uid, textMessage) {
let self = this;
let fn = deprecate(
() => {
return self.command('POST', '/clause/prover/chat', {
fromUserId: uid,
session: { id: sessionId },
message: {
textMessage,
},
});
},
'use `Chatbot#command` API instead, removed in 2020-10',
depCode('intentChat', '2020-07-18')
);
return fn();
};
exports = module.exports = {
Chatopera,
Chatbot,
};