-
Notifications
You must be signed in to change notification settings - Fork 0
/
lambda_function.js
63 lines (56 loc) · 1.53 KB
/
lambda_function.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
exports.handler = async (event) => {
const intent = event['sessionState']['intent']['name']
const sessionAttributes = event['sessionState']['sessionAttributes']
if (!sessionAttributes) {
sessionAttributes = {};
}
console.log(`Lex event info = ${JSON.stringify(event)}`);
console.log(`lambda_handler: session_attributes = ${JSON.stringify(sessionAttributes)}`);
if (HANDLERS[intent]) {
return HANDLERS[intent].handler(event, sessionAttributes);
}
};
function checkAccountBalanceHandler(intentRequest, sessionAttributes) {
const { inputTranscript } = intentRequest;
const accountId = inputTranscript;
return {
sessionState: {
dialogAction: {
type: 'Close',
},
intent: {
name: intentRequest.sessionState.intent.name,
state: 'Fulfilled',
},
},
messages: [
{
contentType: 'PlainText',
content: `Your current balance for account id ${accountId} is PKR/-10,000`,
},
],
};
}
function checkOkResponse(intentRequest, sessionAttributes){
return {
sessionState: {
dialogAction: {
type: 'Close',
},
intent: {
name: intentRequest.sessionState.intent.name,
state: 'Fulfilled',
},
},
messages: [
{
contentType: 'PlainText',
content: `Great 😊`,
},
],
};
}
const HANDLERS = {
checkAccountBalance: { handler: checkAccountBalanceHandler },
OkResponse: { handler: checkOkResponse}
};