-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
consoleAdapter.js
227 lines (214 loc) · 7.73 KB
/
consoleAdapter.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
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
// @ts-check
const botbuilderCore = require('botbuilder-core');
const { BotAdapter, TurnContext, ActivityTypes } = botbuilderCore;
const readline = require('readline');
/**
* Lets a user communicate with a bot from a console window.
*
* @remarks
* The following example shows the typical adapter setup:
*
*
* ```JavaScript
* const { ConsoleAdapter } = require('botbuilder');
*
* const adapter = new ConsoleAdapter();
* const closeFn = adapter.listen(async (context) => {
* await context.sendActivity(`Hello World`);
* });
* ```
*/
class ConsoleAdapter extends BotAdapter {
/**
* Creates a new ConsoleAdapter instance.
* @param [reference] Reference used to customize the address information of activities sent from the adapter.
*/
constructor(reference) {
super();
this.nextId = 0;
this.reference = {
channelId: 'console',
user: { id: 'user', name: 'User1' },
bot: { id: 'bot', name: 'Bot' },
conversation: { id: 'convo1', name: '', isGroup: false },
serviceUrl: '',
...reference
};
}
/**
* Begins listening to console input. A function will be returned that can be used to stop the
* bot listening and therefore end the process.
*
* @remarks
* Upon receiving input from the console the flow is as follows:
*
* - An 'message' activity will be created containing the users input text.
* - A revokable `TurnContext` will be created for the activity.
* - The context will be routed through any middleware registered with [use()](#use).
* - The bots logic handler that was passed in will be executed.
* - The promise chain setup by the middleware stack will be resolved.
* - The context object will be revoked and any future calls to its members will result in a
* `TypeError` being thrown.
*
* ```JavaScript
* const closeFn = adapter.listen(async (context) => {
* const utterance = context.activity.text.toLowerCase();
* if (utterance.includes('goodbye')) {
* await context.sendActivity(`Ok... Goodbye`);
* closeFn();
* } else {
* await context.sendActivity(`Hello World`);
* }
* });
* ```
* @param logic Function which will be called each time a message is input by the user.
*/
listen(logic) {
const rl = this.createInterface({
input: process.stdin,
output: process.stdout,
terminal: false
});
rl.on('line', line => {
// Initialize activity
const activity = TurnContext.applyConversationReference(
{
type: ActivityTypes.Message,
id: (this.nextId++).toString(),
timestamp: new Date(),
text: line
},
this.reference,
true
);
// Create context and run middleware pipe
const context = new TurnContext(this, activity);
this.runMiddleware(context, logic).catch(err => {
this.printError(err.toString());
});
});
return () => {
rl.close();
};
}
/**
* Lets a bot proactively message the user.
*
* @remarks
* The processing steps for this method are very similar to [listen()](#listen)
* in that a `TurnContext` will be created which is then routed through the adapters middleware
* before calling the passed in logic handler. The key difference being that since an activity
* wasn't actually received it has to be created. The created activity will have its address
* related fields populated but will have a `context.activity.type === undefined`.
*
* ```JavaScript
* function delayedNotify(context, message, delay) {
* const reference = TurnContext.getConversationReference(context.activity);
* setTimeout(() => {
* adapter.continueConversation(reference, async (ctx) => {
* await ctx.sendActivity(message);
* });
* }, delay);
* }
* ```
* @param reference A `ConversationReference` saved during a previous message from a user. This can be calculated for any incoming activity using `TurnContext.getConversationReference(context.activity)`.
* @param logic A function handler that will be called to perform the bots logic after the the adapters middleware has been run.
*/
continueConversation(reference, logic) {
// Create context and run middleware pipe
const activity = TurnContext.applyConversationReference(
{},
reference,
true
);
const context = new TurnContext(this, activity);
return this.runMiddleware(context, logic).catch(err => {
this.printError(err.toString());
});
}
/**
* Logs a set of activities to the console.
*
* @remarks
* Calling `TurnContext.sendActivities()` or `TurnContext.sendActivity()` is the preferred way of
* sending activities as that will ensure that outgoing activities have been properly addressed
* and that any interested middleware has been notified.
* @param context Context for the current turn of conversation with the user.
* @param activities List of activities to send.
*/
async sendActivities(context, activities) {
/** @type {any[]} */
const responses = [];
for (const activity of activities) {
responses.push({});
switch (activity.type) {
case 'delay':
await this.sleep(activity.value);
break;
case ActivityTypes.Message:
if (
activity.attachments &&
activity.attachments.length > 0
) {
const append =
activity.attachments.length === 1
? '(1 attachment)'
: `(${ activity.attachments.length } attachments)`;
this.print(`${ activity.text } ${ append }`);
} else {
this.print(activity.text || '');
}
break;
default:
this.print(`[${ activity.type }]`);
break;
}
}
return responses;
}
/**
* Not supported for the ConsoleAdapter. Calling this method or `TurnContext.updateActivity()`
* will result an error being returned.
*/
updateActivity(context, activity) {
return Promise.reject(new Error('ConsoleAdapter.updateActivity(): not supported.'));
}
/**
* Not supported for the ConsoleAdapter. Calling this method or `TurnContext.deleteActivity()`
* will result an error being returned.
*/
deleteActivity(context, reference) {
return Promise.reject(new Error('ConsoleAdapter.deleteActivity(): not supported.'));
}
/**
* Allows for mocking of the console interface in unit tests.
* @param options Console interface options.
*/
createInterface(options) {
return readline.createInterface(options);
}
/**
* Logs text to the console.
* @param line Text to print.
*/
print(line) {
console.log(line);
}
/**
* Logs an error to the console.
* @param line Error text to print.
*/
printError(line) {
console.error(line);
}
sleep(milliseconds) {
return new Promise(resolve => {
setTimeout(resolve, milliseconds);
});
}
}
module.exports = { ConsoleAdapter };