-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdialogflow.js
391 lines (370 loc) · 13.5 KB
/
dialogflow.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
/*
* Project Name: Minnie AI
* By: Obi Ekekezie
* Date Created: 7/22/2018
*/
const fs = require('fs');
const Context = require('./lib/contexts.js');
const {
getApplicationState,
getApplicationStateFromOutputContexts,
getSegueFromApplicationState,
resetSegueForApplicationState,
addEventToApplicationStateHistory,
KEY_APPLICATION_STATE,
LIFESPAN_APPLICATION_STATE
} = require('./lib/state.js');
const { getLocalization, lookUp } = require ('./dialog');
// Actions; may respond w/ followup event or message
const INTENT_ACTIONS = [
'attention count - attempt',
'attention months - attempt',
// 'default fallback',
'memory recall - attempt',
'memory registration - attempt',
'orientation month - attempt',
'orientation time - attempt',
'orientation year - attempt',
// 'repeat',
'welcome consent - yes'
];
// Dialog; may respond w/ message
const INTENT_DIALOG = [
'attention count',
'attention months',
'conclusion',
'goodbye',
'memory recall',
'memory registration',
'none remaining',
'orientation month',
'orientation time',
'orientation year',
'welcome consent',
'welcome consent - no'
];
// Lifespan for intents to listen for
const LIFESPAN_LISTEN_FOR_INTENT = 10;
// Begin testing at intent
const BEGIN_TESTING_AT = 'MEMORY_RECALL'; // WELCOME_CONSENT
let dialogflowRequestHandler = (req, res) => {
// FIXME: Security
const { body: dialogflowRequest } = req;
if (!dialogflowRequest.queryResult) {
res.status(404).send('Oops!');
return;
}
const { displayName: intentName } = dialogflowRequest.queryResult.intent;
let fulfillmentResponse = null;
if (typeof intentName === 'string' && fs.existsSync(`./intents/${intentName}.js`)
|| intentName === '#testing#') {
const requestType = _determineRequestType(intentName);
// Handle response according to type
switch (requestType) {
case 'action':
fulfillmentResponse = _handleActionRequest(dialogflowRequest);
break;
case 'dialog':
fulfillmentResponse = _handleDialogRequest(dialogflowRequest);
break;
case 'fallback':
if (_checkIfNoFallbacksRemaining(dialogflowRequest)) {
fulfillmentResponse = _handleNoneRemaining(dialogflowRequest);
} else {
fulfillmentResponse = _handleFallbackRequest(dialogflowRequest);
}
break;
case 'repeat':
if (_checkIfNoRepetitionsRemaining(dialogflowRequest)) {
fulfillmentResponse = _handleNoneRemaining(dialogflowRequest);
} else {
fulfillmentResponse = _handleActionRequest(dialogflowRequest);
}
break;
case '#testing#':
fulfillmentResponse = _handleTesting(dialogflowRequest);
break;
default:
break;
}
}
if (!fulfillmentResponse) {
// Default to error response
console.log(`Error: No fulfillment response for intent ${JSON.stringify(intentName)}`);
fulfillmentResponse = _composeDefaultErrorResponse(dialogflowRequest);
}
// Check whether call is ending
if (fulfillmentResponse.endInteraction === true) {
// Call is ending, so document
const { persistAssessment } = require('./lib/persist.js');
const state = getApplicationStateFromOutputContexts(fulfillmentResponse.outputContexts);
console.log(`Debug: state before ending call = ${JSON.stringify(state)}`);
persistAssessment(state.history)
.then(() => {
// Send JSON response
res.status(200).json(fulfillmentResponse);
})
.catch((error) => {
// Failed to document
console.log(`Error: Failed to document: ${error}`);
// Respond with failed to document message
res.status(200).json(
_composeFailedToDocumentResponse(
dialogflowRequest,
fulfillmentResponse.outputContexts
)
);
});
} else {
// Call is not ending so continue
res.status(200).json(fulfillmentResponse);
}
};
let _checkIfNoFallbacksRemaining = (dialogflowRequest) => {
const state = getApplicationState(dialogflowRequest);
return state.fallbacksRemaining < 1;
};
let _checkIfNoRepetitionsRemaining = (dialogflowRequest) => {
const state = getApplicationState(dialogflowRequest);
return state.repetitionsRemaining < 1;
};
/**
* Determine type of intent invoked or triggered
* @param {string} intentName
*/
let _determineRequestType = (intentName) => {
if (INTENT_ACTIONS.includes(intentName)) {
return 'action';
} else if (INTENT_DIALOG.includes(intentName)) {
return 'dialog';
} else if (intentName === 'default fallback') {
return 'fallback';
} else if (intentName === 'repeat') {
return 'repeat';
} else if (intentName === '#testing#') {
return '#testing#';
} else {
throw new Error(`Intent ${JSON.stringify(intentName)} not categorized to a type`);
}
};
/**
* Returns fulfillment response for no fallbacks or repetitions remaining
* @param {object} dialogflowRequest
*/
let _handleNoneRemaining = (dialogflowRequest) => {
// Generate fulfillment response
const fulfillmentResponse = _composeFulfillmentResponse(
null,
[],
_createFollowupEventInput(
'NONE_REMAINING',
{},
dialogflowRequest.queryResult.languageCode
),
false
);
return fulfillmentResponse;
};
/**
* Returns fulfillment response for #testing#
* @param {object} dialogflowRequest
*/
let _handleTesting = (dialogflowRequest) => {
// Generate fulfillment response
const fulfillmentResponse = _composeFulfillmentResponse(
null,
[],
_createFollowupEventInput(
BEGIN_TESTING_AT,
{},
dialogflowRequest.queryResult.languageCode
),
false
);
return fulfillmentResponse;
};
// Returns fulfillment response
let _handleFallbackRequest = (dialogflowRequest) => {
// Get localization
const localization = getLocalization(dialogflowRequest.queryResult.languageCode);
// Get state
const state = getApplicationState(dialogflowRequest);
// Load handler
const { displayName: intentName } = dialogflowRequest.queryResult.intent;
const { generateResponseDialog } = require(`./intents/${intentName}.js`);
// Get response dialog
const { responseDialog } = generateResponseDialog(state);
// Decrement fallbacks remaining
--state.fallbacksRemaining;
// Generate dialog
const dialog = lookUp(localization, responseDialog.dialog);
// Update state history
const stateUpdatedHistory = addEventToApplicationStateHistory(state, dialogflowRequest);
// Update output contexts (use Context class)
const outputContexts = new Context(
dialogflowRequest.queryResult.outputContexts,
dialogflowRequest.session
);
// Update application state context
outputContexts.set(KEY_APPLICATION_STATE, LIFESPAN_APPLICATION_STATE, stateUpdatedHistory);
// Generate fulfillment response
const fulfillmentResponse = _composeFulfillmentResponse(
dialog,
outputContexts.getV2OutputContextsArray(),
null,
responseDialog.shouldHangUp
);
return fulfillmentResponse;
};
// Returns fulfillment response
let _handleDialogRequest = (dialogflowRequest) => {
// Get localization
const localization = getLocalization(dialogflowRequest.queryResult.languageCode);
// Get state
const state = getApplicationState(dialogflowRequest);
// Load handler
const { displayName: intentName } = dialogflowRequest.queryResult.intent;
const { generateResponseDialog } = require(`./intents/${intentName}.js`);
// Get response dialog AND intents to listen for
const { responseDialog, listenForIntents = [] } = generateResponseDialog(state);
// Get segue
const segue = getSegueFromApplicationState(state);
const segueDialog = segue ? lookUp(localization, segue) : null;
// Generate dialog
const dialog = segueDialog ? `${segueDialog} ${lookUp(localization, responseDialog.dialog)}` :
lookUp(localization, responseDialog.dialog);
// Reset state segue
const stateResetSegue = resetSegueForApplicationState(state);
// Update state history
const stateUpdatedHistory = addEventToApplicationStateHistory(stateResetSegue, dialogflowRequest);
// Update output contexts (use Context class)
const outputContexts = new Context(
dialogflowRequest.queryResult.outputContexts,
dialogflowRequest.session
);
// Update application state context
outputContexts.set(KEY_APPLICATION_STATE, LIFESPAN_APPLICATION_STATE, stateUpdatedHistory);
// Create contexts to listen for
if (Array.isArray(listenForIntents)) {
listenForIntents.forEach((intentToListenFor) => {
outputContexts.set(intentToListenFor.toLowerCase(), LIFESPAN_LISTEN_FOR_INTENT, {});
});
}
// Remove all other contexts except application state and those to listen for
// console.log(`Should listen for ${JSON.stringify(listenForIntents)}`);
for (const context of outputContexts) {
if (Array.isArray(listenForIntents) && !listenForIntents.includes(context.name.toUpperCase())
&& context.name.toLowerCase() !== KEY_APPLICATION_STATE) {
// Delete since not application state or included in listen for
context.lifespan = 0;
// console.log(`- No longer going to listen for ${context.name}`);
} else {
// console.log(`- Will listen for ${context.name}`);
}
}
// Generate fulfillment response
const fulfillmentResponse = _composeFulfillmentResponse(
dialog,
outputContexts.getV2OutputContextsArray(),
null,
responseDialog.shouldHangUp
);
return fulfillmentResponse;
};
// Returns fulfillment response
let _handleActionRequest = (dialogflowRequest) => {
// Get state
const state = getApplicationState(dialogflowRequest);
// Get parameters
const parameters = dialogflowRequest.queryResult ?
dialogflowRequest.queryResult.parameters || {} : {};
// Load handler
const { displayName: intentName } = dialogflowRequest.queryResult.intent;
const { updateApplicationState } = require(`./intents/${intentName}.js`);
// Get followup event to trigger AND next state
const { followupEventToTrigger, nextState } = updateApplicationState(state, parameters);
// Update state history
const stateUpdatedHistory = addEventToApplicationStateHistory(nextState, dialogflowRequest);
// Update output contexts (use Context class)
const outputContexts = new Context(
dialogflowRequest.queryResult.outputContexts,
dialogflowRequest.session
);
// Update application state context
outputContexts.set(KEY_APPLICATION_STATE, LIFESPAN_APPLICATION_STATE, stateUpdatedHistory);
// Generate fulfillment response
const fulfillmentResponse = _composeFulfillmentResponse(
null,
outputContexts.getV2OutputContextsArray(),
_createFollowupEventInput(
followupEventToTrigger,
{},
dialogflowRequest.queryResult.languageCode
),
false
);
return fulfillmentResponse;
};
let _composeDefaultErrorResponse = (dialogflowRequest) => {
const { outputContexts } = dialogflowRequest;
const localization = getLocalization(dialogflowRequest.queryResult.languageCode);
return _composeFulfillmentResponse(
lookUp(localization, 'ERROR_NO_MATCHING_INTENT_HANDLER'),
outputContexts,
null,
true
);
};
let _composeFailedToDocumentResponse = (dialogflowRequest, outputContexts) => {
const localization = getLocalization(dialogflowRequest.queryResult.languageCode);
return _composeFulfillmentResponse(
lookUp(localization, 'FAILED_TO_DOCUMENT'),
outputContexts,
null,
true
);
};
let _composeFulfillmentResponse = (message = '', outputContexts = [], followupEventInput, shouldHangUp = false) => {
const response = {
fulfillmentText: message,
fulfillmentMessages: _synthesizeSpeechResponse(message),
outputContexts,
followupEventInput: followupEventInput ? followupEventInput : {},
endInteraction: shouldHangUp
};
return response;
};
let _synthesizeSpeechResponse = (message = '') => {
if (message === null) {
return null;
}
if (typeof message !== 'string') {
throw new Error('Message must be "string" to synthesize speech response');
}
const speechResponse = [
{
platform: 'TELEPHONY',
telephonySynthesizeSpeech: {
ssml: _generateSsml(message)
}
}
];
return speechResponse;
};
let _createFollowupEventInput = (name, parameters, languageCode) => {
const eventInput = {
name,
parameters: parameters || {},
languageCode
}
return eventInput;
};
let _generateSsml = (message = '') => {
if (typeof message !== 'string') {
throw new Error('Message must be "string" to generate SSML');
}
return `<speak>${message}</speak>`;
};
module.exports = {
dialogflowRequestHandler
};