-
Notifications
You must be signed in to change notification settings - Fork 0
/
lambda_function.py
436 lines (383 loc) · 19.8 KB
/
lambda_function.py
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
432
433
434
435
436
# -*- coding: utf-8 -*-
# This sample demonstrates handling intents from an Alexa skill using the Alexa Skills Kit SDK for Python.
# Please visit https://alexa.design/cookbook for additional examples on implementing slots, dialog management,
# session persistence, api calls, and more.
# This sample is built using the handler classes approach in skill builder.
import logging
import ask_sdk_core.utils as ask_utils
from ask_sdk_core.skill_builder import SkillBuilder
from ask_sdk_core.dispatch_components import AbstractRequestHandler
from ask_sdk_core.dispatch_components import AbstractExceptionHandler
from ask_sdk_core.handler_input import HandlerInput
from ask_sdk_model import Response
logger = logging.getLogger(__name__)
logger.setLevel(logging.INFO)
import boto3
from boto3.dynamodb.conditions import Key
#the item slots information is passed thru this function. This functions matches the item with a predetermined partition key and sort key. additionally it determines the table which the item can be found
def findKeysandTable(fooditem):
#key words that determine the table which to search
beefKeywords = {"meat","steak","liver","shepherd","veal","beef","traditional","bolognese"}
poultryKeywords = {"chicken","turkey"}
porkKeywords = {"pork","tourtiere","ham","bangers"}
fishKeywords = {"fish","tuna","salmon"}
dessertKeywords = {"mousse","tart","shortcake","cheesecake","cake","crisp","cobbler","pudding","cocktail","brownie","streusel"}
if "thicken" in fooditem:
#looks for the a word to use as the sort key
SecondaryItemKey = {'broccoli','carrot','cauliflower','chicken','mushroom','tomato'}
for sortKeys in SecondaryItemKey:
if sortKeys in fooditem:
return "ThickenedSoupTable","thickened",sortKeys
if "soup" in fooditem:
#looks for the a word to use as the sort key
SecondaryItemKey = {'barley','cauliflower','turkey','tomato','beef','carrot','mushroom','pea','potato','broccoli','country','chicken and vegetable','squash','lentil','minestrone','noodle'}
for sortKeys in SecondaryItemKey:
if sortKeys in fooditem:
return "SoupTable","soup",sortKeys
if "pureed" in fooditem:
#looks for the a word to use as the sort key
SecondaryItemKey = {'king','lasadna','apple','cheese','pie','turkey dinner','beef vegetable','roast','sweet','meatloaf','lemon','cacciatore','spaghetti','turkey casserole','salmon','fruit'}
for sortKeys in SecondaryItemKey:
if sortKeys in fooditem:
return "PureedTable","pureed",sortKeys
if "minced" in fooditem:
#looks for the a word to use as the sort key
SecondaryItemKey = {'beef','apple','ham','king','turkey','pesto','pasta','stew','honey','vegetarian','pork'}
for sortKeys in SecondaryItemKey:
if sortKeys in fooditem:
return "MincedTable",'minceed',sortKeys
#looks for a keyword to determine which table to search
for x in poultryKeywords:
if x in fooditem:
#looks for the a word to use as the sort key
SecondaryItemKey = {'king','country','breaded chicken breast','cacciatore','thigh','lemon','breaded chicken fingers','general','stew','white','chili','pie','sweet','bacon','mushroom','honey','penne','curry','ranch','stuffing','tangy','hawaiian','gravy'}
for sortKeys in SecondaryItemKey:
if sortKeys in fooditem:
return "PoultryTable",x,sortKeys
#looks for a keyword to determine which table to search
for x in porkKeywords:
if x in fooditem:
#looks for the a word to use as the sort key
SecondaryItemKey = {'stuffing','pie','rib','baked','mash','seasoned','apple braised','apple pork'}
for sortKeys in SecondaryItemKey:
if sortKeys in fooditem:
return "PorkTable",x,sortKeys
#looks for a keyword to determine which table to search
for x in fishKeywords:
if x in fooditem:
#looks for the a word to use as the sort key
SecondaryItemKey = {'florentine','chips','casserole','lemon','asian','cakes','herbed'}
for sortKeys in SecondaryItemKey:
if sortKeys in fooditem:
return "FishTable",x,sortKeys
#looks for a keyword to determine which table to search
for x in beefKeywords:
if x in fooditem:
#looks for the a word to use as the sort key
SecondaryItemKey = {'casserole','stew','salisbury','pie','chopped','mushroom','in gravy','stroganoff','onion','peppers','mushroom','stew','roast','casserole','roast'}
for sortKeys in SecondaryItemKey:
if sortKeys in fooditem:
return "BeefTable",x,sortKeys
#looks for a keyword to determine which table to search
for x in dessertKeywords:
if x in fooditem:
#looks for the a word to use as the sort key
SecondaryItemKey = {'chocolate','strawberry','tangerine','butter','carrot','apple','peach','rice','cherry','fruit','chocolate','lemon','banana','cheesecake','pecan','raspberry','strawberry','chocolate','toffee','orange','blueberry'}
for sortKeys in SecondaryItemKey:
if sortKeys in fooditem:
return "DessertTable",x,sortKeys
#looks for the a word to use as the sort key
SecondaryItemKey = {'pasta','omelette','stew','chili','dhal','lasagna','macaroni','masala','tofu stew','casserole','teryaki','spaghetti','eggs'}
for sortKeys in SecondaryItemKey:
if sortKeys in fooditem:
return "VegetarianTable",'vegetarian',sortKeys
#error handling if the item's cannot processed
return "notfound"
class LaunchRequestHandler(AbstractRequestHandler):
"""Handler for Skill Launch."""
def can_handle(self, handler_input):
# type: (HandlerInput) -> bool
return ask_utils.is_request_type("LaunchRequest")(handler_input)
def handle(self, handler_input):
# type: (HandlerInput) -> Response
speak_output = "Welcome, how can I help you? I can add, remove and search up items on the inventory list"
reprompt_output = "I can help you add, remove and search up items on the inventory list"
return (
handler_input.response_builder
.speak(speak_output)
.ask(reprompt_output)
.response
)
class QueryItemIntentHandler(AbstractRequestHandler):
"""Handler for queryItemIntent"""
def can_handle(self, handler_input):
# type: (HandlerInput) -> bool
return ask_utils.is_intent_name("queryItemIntent")(handler_input)
def handle(self, handler_input):
# type: (HandlerInput) -> Response
slots = handler_input.request_envelope.request.intent.slots
itemToQuery = slots["item"].value
#determines the partition key, sort key and table which to search
itemInfo = findKeysandTable(itemToQuery)
#if the table which the item is located cannot be found/ERROR handling
if itemInfo[0] == 'n':
speak_output = "Sorry, I couldn't find the item you were looking for."
return (
handler_input.response_builder
.speak(speak_output)
# .ask("add a reprompt if you want to keep the session open for the user to respond")
.response
)
#session token service api request
sts_client = boto3.client('sts')
assumed_role_object=sts_client.assume_role(RoleArn="<ARN_role>", RoleSessionName="AssumeRoleSession1")
credentials=assumed_role_object['Credentials']
# 2. Make a new DynamoDB instance with the assumed role credentials
dynamodb = boto3.resource('dynamodb',
aws_access_key_id=credentials['AccessKeyId'],
aws_secret_access_key=credentials['SecretAccessKey'],
aws_session_token=credentials['SessionToken'],
region_name='us-east-1')
# 3. Perform DynamoDB operations on the table
try:
table = dynamodb.Table(itemInfo[0])
#query table using 2 keys
response = table.query(KeyConditionExpression = Key('MainItem').eq(itemInfo[1]) & Key('SecondaryKey').eq(itemInfo[2]))
#response formating
speak_output = 'I have found {quantity} {item} in the inventory'.format(quantity=response['Items'][0]['Quantity'], item=response['Items'][0]['ItemName'])
# Use the response as required . .
except ResourceNotExistsError:
# Exception handling
raise
except Exception as e:
# Exception handling
raise e
return (
handler_input.response_builder
.speak(speak_output)
# .ask("add a reprompt if you want to keep the session open for the user to respond")
.response
)
class RemoveItemIntentHandler(AbstractRequestHandler):
"""Handler for removeItemIntent"""
def can_handle(self, handler_input):
# type: (HandlerInput) -> bool
return ask_utils.is_intent_name("removeItemIntent")(handler_input)
def handle(self, handler_input):
# type: (HandlerInput) -> Response
slots = handler_input.request_envelope.request.intent.slots
itemToRemove = slots["item"].value
quantityOfItem = slots["quantity"].value
#determines the partition key, sort key and table which to search
itemInfo = findKeysandTable(itemToRemove)
#if the item's table cannot be determined/Error handling
if itemInfo[0] == 'n':
speak_output = "Sorry, I couldn't find the item you were looking for."
return (
handler_input.response_builder
.speak(speak_output)
# .ask("add a reprompt if you want to keep the session open for the user to respond")
.response
)
#session token service api request
sts_client = boto3.client('sts')
assumed_role_object=sts_client.assume_role(RoleArn="<ARN_role>", RoleSessionName="AssumeRoleSession1")
credentials=assumed_role_object['Credentials']
# 2. Make a new DynamoDB instance with the assumed role credentials
dynamodb = boto3.resource('dynamodb',
aws_access_key_id=credentials['AccessKeyId'],
aws_secret_access_key=credentials['SecretAccessKey'],
aws_session_token=credentials['SessionToken'],
region_name='us-east-1')
# 3. Perform DynamoDB operations on the table
try:
table = dynamodb.Table(itemInfo[0])
#check how many items are currently in the database by querying
queryResponse = table.query(KeyConditionExpression = Key('MainItem').eq(itemInfo[1]) & Key('SecondaryKey').eq(itemInfo[2]))
inventoryQuantity = int(queryResponse['Items'][0]['Quantity'])
#error handling if user wants to remove more than exists
if inventoryQuantity < int(quantityOfItem):
speak_output = 'Sorry, I cannot remove the requested amount. There are only {inventoryQuantity} in the inventory.'.format(inventoryQuantity=inventoryQuantity)
else:
#if there isnt an error than process the request
quantityLeft = int(inventoryQuantity) - int(quantityOfItem)
#update the table with total amount
response = table.update_item(
Key={
'MainItem': itemInfo[1],
'SecondaryKey': itemInfo[2]
},
UpdateExpression="set Quantity=:q",
ExpressionAttributeValues={
':q': quantityLeft,
},
ReturnValues="UPDATED_NEW"
)
#format response
speak_output = 'I have removed {quantityOfItem}. There are {quantityLeft} {itemToRemove} left'.format(quantityOfItem=quantityOfItem, quantityLeft=quantityLeft,itemToRemove=queryResponse['Items'][0]['ItemName'])
# Use the response as required . .
except ResourceNotExistsError:
# Exception handling
raise
except Exception as e:
# Exception handling
raise e
return (
handler_input.response_builder
.speak(speak_output)
# .ask("add a reprompt if you want to keep the session open for the user to respond")
.response
)
class AddItemIntentHandler(AbstractRequestHandler):
"""Handler for addItemIntent."""
def can_handle(self, handler_input):
# type: (HandlerInput) -> bool
return ask_utils.is_intent_name("addItemIntent")(handler_input)
def handle(self, handler_input):
# type: (HandlerInput) -> Response
slots = handler_input.request_envelope.request.intent.slots
itemToAdd = slots["item"].value
quantityOfItem = slots["quantity"].value
#determines the partition key, sort key and table which to search
itemInfo = findKeysandTable(itemToAdd)
#if table cannot be determined/Error handling
if itemInfo[0] == 'n':
speak_output = "Sorry, I couldn't find the item you were looking for."
return (
handler_input.response_builder
.speak(speak_output)
# .ask("add a reprompt if you want to keep the session open for the user to respond")
.response
)
#session token service api request
sts_client = boto3.client('sts')
assumed_role_object=sts_client.assume_role(RoleArn="<ARN_role>", RoleSessionName="AssumeRoleSession1")
credentials=assumed_role_object['Credentials']
# 2. Make a new DynamoDB instance with the assumed role credentials
dynamodb = boto3.resource('dynamodb',
aws_access_key_id=credentials['AccessKeyId'],
aws_secret_access_key=credentials['SecretAccessKey'],
aws_session_token=credentials['SessionToken'],
region_name='us-east-1')
# 3. Perform DynamoDB operations on the table
try:
table = dynamodb.Table(itemInfo[0])
#check the current quantity
queryResponse = table.query(KeyConditionExpression = Key('MainItem').eq(itemInfo[1]) & Key('SecondaryKey').eq(itemInfo[2]))
#add current quantity and the request amount to add
totalQuantity = int(queryResponse['Items'][0]['Quantity']) + int(quantityOfItem)
#update table
response = table.update_item(
Key={
'MainItem': itemInfo[1],
'SecondaryKey': itemInfo[2]
},
UpdateExpression="set Quantity=:q",
ExpressionAttributeValues={
':q': quantityOfItem,
},
ReturnValues="UPDATED_NEW"
)
#format response
speak_output = 'I have added {quantityOfItem} {itemToAdd} to the inventory'.format(quantityOfItem=totalQuantity,itemToAdd=itemToAdd)
# Use the response as required . .
except ResourceNotExistsError:
# Exception handling
raise
except Exception as e:
# Exception handling
raise e
return (
handler_input.response_builder
.speak(speak_output)
# .ask("add a reprompt if you want to keep the session open for the user to respond")
.response
)
class HelpIntentHandler(AbstractRequestHandler):
"""Handler for Help Intent."""
def can_handle(self, handler_input):
# type: (HandlerInput) -> bool
return ask_utils.is_intent_name("AMAZON.HelpIntent")(handler_input)
def handle(self, handler_input):
# type: (HandlerInput) -> Response
speak_output = "You can say hello to me! How can I help?"
return (
handler_input.response_builder
.speak(speak_output)
.ask(speak_output)
.response
)
class CancelOrStopIntentHandler(AbstractRequestHandler):
"""Single handler for Cancel and Stop Intent."""
def can_handle(self, handler_input):
# type: (HandlerInput) -> bool
return (ask_utils.is_intent_name("AMAZON.CancelIntent")(handler_input) or
ask_utils.is_intent_name("AMAZON.StopIntent")(handler_input))
def handle(self, handler_input):
# type: (HandlerInput) -> Response
speak_output = "Goodbye!"
return (
handler_input.response_builder
.speak(speak_output)
.response
)
class SessionEndedRequestHandler(AbstractRequestHandler):
"""Handler for Session End."""
def can_handle(self, handler_input):
# type: (HandlerInput) -> bool
return ask_utils.is_request_type("SessionEndedRequest")(handler_input)
def handle(self, handler_input):
# type: (HandlerInput) -> Response
# Any cleanup logic goes here.
return handler_input.response_builder.response
class IntentReflectorHandler(AbstractRequestHandler):
"""The intent reflector is used for interaction model testing and debugging.
It will simply repeat the intent the user said. You can create custom handlers
for your intents by defining them above, then also adding them to the request
handler chain below.
"""
def can_handle(self, handler_input):
# type: (HandlerInput) -> bool
return ask_utils.is_request_type("IntentRequest")(handler_input)
def handle(self, handler_input):
# type: (HandlerInput) -> Response
intent_name = ask_utils.get_intent_name(handler_input)
speak_output = "You just triggered " + intent_name + "."
return (
handler_input.response_builder
.speak(speak_output)
# .ask("add a reprompt if you want to keep the session open for the user to respond")
.response
)
class CatchAllExceptionHandler(AbstractExceptionHandler):
"""Generic error handling to capture any syntax or routing errors. If you receive an error
stating the request handler chain is not found, you have not implemented a handler for
the intent being invoked or included it in the skill builder below.
"""
def can_handle(self, handler_input, exception):
# type: (HandlerInput, Exception) -> bool
return True
def handle(self, handler_input, exception):
# type: (HandlerInput, Exception) -> Response
logger.error(exception, exc_info=True)
speak_output = "Sorry, I had trouble doing what you asked. Please try again."
return (
handler_input.response_builder
.speak(speak_output)
.ask(speak_output)
.response
)
# The SkillBuilder object acts as the entry point for your skill, routing all request and response
# payloads to the handlers above. Make sure any new handlers or interceptors you've
# defined are included below. The order matters - they're processed top to bottom.
sb = SkillBuilder()
sb.add_request_handler(LaunchRequestHandler())
sb.add_request_handler(AddItemIntentHandler())
sb.add_request_handler(RemoveItemIntentHandler())
sb.add_request_handler(QueryItemIntentHandler())
sb.add_request_handler(HelpIntentHandler())
sb.add_request_handler(CancelOrStopIntentHandler())
sb.add_request_handler(SessionEndedRequestHandler())
sb.add_request_handler(IntentReflectorHandler()) # make sure IntentReflectorHandler is last so it doesn't override your custom intent handlers
sb.add_exception_handler(CatchAllExceptionHandler())
lambda_handler = sb.lambda_handler()