-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.js
407 lines (342 loc) · 13.6 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
const alexaSDK = require('alexa-sdk');
const awsSDK = require('aws-sdk');
const promisify = require('es6-promisify');
const appId = 'REPLACE WITH YOUR SKILL APPLICATION ID';
const recipesTable = 'Recipes';
const docClient = new awsSDK.DynamoDB.DocumentClient();
// convert callback style functions to promises
const dbScan = promisify(docClient.scan, docClient);
const dbGet = promisify(docClient.get, docClient);
const dbPut = promisify(docClient.put, docClient);
const dbDelete = promisify(docClient.delete, docClient);
const instructions = `Welcome to Recipe Organizer<break strength="medium" />
The following commands are available: add recipe, get recipe,
get all recipes, get a random recipe, and delete recipe. What
would you like to do?`;
const handlers = {
/**
* Triggered when the user says "Alexa, open Recipe Organizer.
*/
'LaunchRequest'() {
this.emit(':ask', instructions);
},
/**
* Adds a recipe to the current user's saved recipes.
* Slots: RecipeName, RecipeLocation, LongOrQuick
*/
'AddRecipeIntent'() {
const { userId } = this.event.session.user;
const { slots } = this.event.request.intent;
// prompt for slot values and request a confirmation for each
// RecipeName
if (!slots.RecipeName.value) {
const slotToElicit = 'RecipeName';
const speechOutput = 'What is the name of the recipe?';
const repromptSpeech = 'Please tell me the name of the recipe';
return this.emit(':elicitSlot', slotToElicit, speechOutput, repromptSpeech);
}
else if (slots.RecipeName.confirmationStatus !== 'CONFIRMED') {
if (slots.RecipeName.confirmationStatus !== 'DENIED') {
// slot status: unconfirmed
const slotToConfirm = 'RecipeName';
const speechOutput = `The name of the recipe is ${slots.RecipeName.value}, correct?`;
const repromptSpeech = speechOutput;
return this.emit(':confirmSlot', slotToConfirm, speechOutput, repromptSpeech);
}
// slot status: denied -> reprompt for slot data
const slotToElicit = 'RecipeName';
const speechOutput = 'What is the name of the recipe you would like to add?';
const repromptSpeech = 'Please tell me the name of the recipe';
return this.emit(':elicitSlot', slotToElicit, speechOutput, repromptSpeech);
}
// RecipeLocation
if (!slots.RecipeLocation.value) {
const slotToElicit = 'RecipeLocation';
const speechOutput = 'Where can the recipe be found?';
const repromptSpeech = 'Please give me a location where the recipe can be found.';
return this.emit(':elicitSlot', slotToElicit, speechOutput, repromptSpeech);
}
else if (slots.RecipeLocation.confirmationStatus !== 'CONFIRMED') {
if (slots.RecipeLocation.confirmationStatus !== 'DENIED') {
// slot status: unconfirmed
const slotToConfirm = 'RecipeLocation';
const speechOutput = `The recipe location is ${slots.RecipeLocation.value}, correct?`;
const repromptSpeech = speechOutput;
return this.emit(':confirmSlot', slotToConfirm, speechOutput, repromptSpeech);
}
// slot status: denied -> reprompt for slot data
const slotToElicit = 'RecipeLocation';
const speechOutput = 'Where can the recipe be found?';
const repromptSpeech = 'Please give me a location where the recipe can be found.';
return this.emit(':elicitSlot', slotToElicit, speechOutput, repromptSpeech);
}
// LongOrQuick
if (!slots.LongOrQuick.value) {
const slotToElicit = 'LongOrQuick';
const speechOutput = 'Is this a quick or long recipe to make?';
const repromptSpeech = 'Is this a quick or long recipe to make?';
return this.emit(':elicitSlot', slotToElicit, speechOutput, repromptSpeech);
}
else if (slots.LongOrQuick.confirmationStatus !== 'CONFIRMED') {
if (slots.LongOrQuick.confirmationStatus !== 'DENIED') {
// slot status: unconfirmed
const slotToConfirm = 'LongOrQuick';
const speechOutput = `This is a ${slots.LongOrQuick.value} recipe, correct?`;
const repromptSpeech = speechOutput;
return this.emit(':confirmSlot', slotToConfirm, speechOutput, repromptSpeech);
}
// slot status: denied -> reprompt for slot data
const slotToElicit = 'LongOrQuick';
const speechOutput = 'Is this a quick or long recipe to make?';
const repromptSpeech = 'Is this a quick or long recipe to make?';
return this.emit(':elicitSlot', slotToElicit, speechOutput, repromptSpeech);
}
// all slot values received and confirmed, now add the record to DynamoDB
const name = slots.RecipeName.value;
const location = slots.RecipeLocation.value;
const isQuick = slots.LongOrQuick.value.toLowerCase() === 'quick';
const dynamoParams = {
TableName: recipesTable,
Item: {
Name: name,
UserId: userId,
Location: location,
IsQuick: isQuick
}
};
const checkIfRecipeExistsParams = {
TableName: recipesTable,
Key: {
Name: name,
UserId: userId
}
};
console.log('Attempting to add recipe', dynamoParams);
// query DynamoDB to see if the item exists first
dbGet(checkIfRecipeExistsParams)
.then(data => {
console.log('Get item succeeded', data);
const recipe = data.Item;
if (recipe) {
const errorMsg = `Recipe ${name} already exists!`;
this.emit(':tell', errorMsg);
throw new Error(errorMsg);
}
else {
// no match, add the recipe
return dbPut(dynamoParams);
}
})
.then(data => {
console.log('Add item succeeded', data);
this.emit(':tell', `Recipe ${name} added!`);
})
.catch(err => {
console.error(err);
});
},
/**
* Lists all saved recipes for the current user. The user can filter by quick or long recipes.
* Slots: GetRecipeQuickOrLong
*/
'GetAllRecipesIntent'() {
const { userId } = this.event.session.user;
const { slots } = this.event.request.intent;
let output;
// prompt for slot data if needed
if (!slots.GetRecipeQuickOrLong.value) {
const slotToElicit = 'GetRecipeQuickOrLong';
const speechOutput = 'Would you like a quick or long recipe or do you not care?';
const repromptSpeech = 'Would you like a quick or long recipe or do you not care?';
return this.emit(':elicitSlot', slotToElicit, speechOutput, repromptSpeech);
}
const isQuick = slots.GetRecipeQuickOrLong.value.toLowerCase() === 'quick';
const isLong = slots.GetRecipeQuickOrLong.value.toLowerCase() === 'long';
const dynamoParams = {
TableName: recipesTable
};
if (isQuick || isLong) {
dynamoParams.FilterExpression = 'UserId = :user_id AND IsQuick = :is_quick';
dynamoParams.ExpressionAttributeValues = { ':user_id': userId, ':is_quick': isQuick };
output = `The following ${isQuick ? 'quick' : 'long'} recipes were found: <break strength="x-strong" />`;
}
else {
dynamoParams.FilterExpression = 'UserId = :user_id';
dynamoParams.ExpressionAttributeValues = { ':user_id': userId };
output = 'The following recipes were found: <break strength="x-strong" />';
}
// query DynamoDB
dbScan(dynamoParams)
.then(data => {
console.log('Read table succeeded!', data);
if (data.Items && data.Items.length) {
data.Items.forEach(item => { output += `${item.Name}<break strength="x-strong" />`; });
}
else {
output = 'No recipes found!';
}
console.log('output', output);
this.emit(':tell', output);
})
.catch(err => {
console.error(err);
});
},
/**
* Reads the full info of the selected recipe.
* Slots: RecipeName
*/
'GetRecipeIntent'() {
const { slots } = this.event.request.intent;
// prompt for slot data if needed
if (!slots.RecipeName.value) {
const slotToElicit = 'RecipeName';
const speechOutput = 'What is the name of the recipe?';
const repromptSpeech = 'Please tell me the name of the recipe';
return this.emit(':elicitSlot', slotToElicit, speechOutput, repromptSpeech);
}
const { userId } = this.event.session.user;
const recipeName = slots.RecipeName.value;
const dynamoParams = {
TableName: recipesTable,
Key: {
Name: recipeName,
UserId: userId
}
};
console.log('Attempting to read data');
// query DynamoDB
dbGet(dynamoParams)
.then(data => {
console.log('Get item succeeded', data);
const recipe = data.Item;
if (recipe) {
this.emit(':tell', `Recipe ${recipeName} is located in ${recipe.Location} and it
is a ${recipe.IsQuick ? 'Quick' : 'Long'} recipe to make.`);
}
else {
this.emit(':tell', `Recipe ${recipeName} not found!`);
}
})
.catch(err => console.error(err));
},
/**
* Gets a random saved recipe for this user. The user can filter by quick or long recipes.
* Slots: GetRecipeQuickOrLong
*/
'GetRandomRecipeIntent'() {
const { slots } = this.event.request.intent;
// prompt for slot data if needed
if (!slots.GetRecipeQuickOrLong.value) {
const slotToElicit = 'GetRecipeQuickOrLong';
const speechOutput = 'Would you like a quick or long recipe or do you not care?';
const repromptSpeech = 'I said, would you like a quick or long recipe or do you not care?';
return this.emit(':elicitSlot', slotToElicit, speechOutput, repromptSpeech);
}
const quickOrLongSlotValue = slots.GetRecipeQuickOrLong.value.toLowerCase();
const isQuick = quickOrLongSlotValue === 'quick';
const isLong = quickOrLongSlotValue === 'long';
const { userId } = this.event.session.user;
const dynamoParams = {
TableName: recipesTable,
FilterExpression: 'UserId = :user_id',
ExpressionAttributeValues: { ':user_id': userId }
};
if (isQuick || isLong) {
dynamoParams.FilterExpression += ' AND IsQuick = :is_quick';
dynamoParams.ExpressionAttributeValues[':is_quick'] = isQuick;
}
console.log('Attempting to read data');
// query DynamoDB
dbScan(dynamoParams)
.then(data => {
console.log('Read table succeeded!', data);
const recipes = data.Items;
if (!recipes.length) {
this.emit(':tell', 'No recipes added.');
}
else {
const randomNumber = Math.floor(Math.random() * recipes.length);
const recipe = recipes[randomNumber];
this.emit(':tell', `The lucky recipe is ${recipe.Name} <break time="500ms"/> and it is located in ${recipe.Location} and it is a ${recipe.IsQuick ? 'quick' : 'long'} recipe to make.`);
}
})
.catch(err => console.error(err));
},
/**
* Allow the user to delete one of their recipes.
*/
'DeleteRecipeIntent'() {
const { slots } = this.event.request.intent;
// prompt for the recipe name if needed and then require a confirmation
if (!slots.RecipeName.value) {
const slotToElicit = 'RecipeName';
const speechOutput = 'What is the name of the recipe you would like to delete?';
const repromptSpeech = 'Please tell me the name of the recipe';
return this.emit(':elicitSlot', slotToElicit, speechOutput, repromptSpeech);
}
else if (slots.RecipeName.confirmationStatus !== 'CONFIRMED') {
if (slots.RecipeName.confirmationStatus !== 'DENIED') {
// slot status: unconfirmed
const slotToConfirm = 'RecipeName';
const speechOutput = `You would like to delete the recipe ${slots.RecipeName.value}, correct?`;
const repromptSpeech = speechOutput;
return this.emit(':confirmSlot', slotToConfirm, speechOutput, repromptSpeech);
}
// slot status: denied -> reprompt for slot data
const slotToElicit = 'RecipeName';
const speechOutput = 'What is the name of the recipe you would like to delete?';
const repromptSpeech = 'Please tell me the name of the recipe';
return this.emit(':elicitSlot', slotToElicit, speechOutput, repromptSpeech);
}
const { userId } = this.event.session.user;
const recipeName = slots.RecipeName.value;
const dynamoParams = {
TableName: recipesTable,
Key: {
Name: recipeName,
UserId: userId
}
};
console.log('Attempting to read data');
// query DynamoDB to see if the item exists first
dbGet(dynamoParams)
.then(data => {
console.log('Get item succeeded', data);
const recipe = data.Item;
if (recipe) {
console.log('Attempting to delete data', data);
return dbDelete(dynamoParams);
}
const errorMsg = `Recipe ${recipeName} not found!`;
this.emit(':tell', errorMsg);
throw new Error(errorMsg);
})
.then(data => {
console.log('Delete item succeeded', data);
this.emit(':tell', `Recipe ${recipeName} deleted!`);
})
.catch(err => console.log(err));
},
'Unhandled'() {
console.error('problem', this.event);
this.emit(':ask', 'An unhandled problem occurred!');
},
'AMAZON.HelpIntent'() {
const speechOutput = instructions;
const reprompt = instructions;
this.emit(':ask', speechOutput, reprompt);
},
'AMAZON.CancelIntent'() {
this.emit(':tell', 'Goodbye!');
},
'AMAZON.StopIntent'() {
this.emit(':tell', 'Goodbye!');
}
};
exports.handler = function handler(event, context) {
const alexa = alexaSDK.handler(event, context);
alexa.APP_ID = appId;
alexa.registerHandlers(handlers);
alexa.execute();
};