-
Notifications
You must be signed in to change notification settings - Fork 2
/
lambdaFunction.py
376 lines (326 loc) · 14 KB
/
lambdaFunction.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
"""
This code demonstrates an implementation of the Lex Code Hook Interface
in order to serve a bot which recommends movies to its users in a category.
For complete guide and better understanding of Amazon Lex Bots and how they works,
visit the Lex Getting Started documentation http://docs.aws.amazon.com/lex/latest/dg/getting-started.html.
"""
import os
import urllib3
import json
""" --- Helpers to build responses which match the structure of the necessary dialog actions --- """
def get_slots(intent_request):
return intent_request['currentIntent']['slots']
def elicit_slot(session_attributes, intent_name, slots, slot_to_elicit, message, response_card):
return {
'sessionAttributes': session_attributes,
'dialogAction': {
'type': 'ElicitSlot',
'intentName': intent_name,
'slots': slots,
'slotToElicit': slot_to_elicit,
'message': message,
'responseCard': response_card
}
}
def close(session_attributes, fulfillment_state, message):
response = {
'sessionAttributes': session_attributes,
'dialogAction': {
'type': 'Close',
'fulfillmentState': fulfillment_state,
'message': message
}
}
return response
def closeWithResponseCard(session_attributes, fulfillment_state, message, response_card):
response = {
'sessionAttributes': session_attributes,
'dialogAction': {
'type': 'Close',
'fulfillmentState': fulfillment_state,
'message': message,
'responseCard': response_card
}
}
return response
def closeWelcomeIntent(session_attributes, fulfillment_state, message, response_card):
response = {
'sessionAttributes': session_attributes,
'dialogAction': {
'type': 'Close',
'fulfillmentState': fulfillment_state,
'message': message,
'responseCard': response_card
}
}
return response
def delegate(session_attributes, slots):
return {
'sessionAttributes': session_attributes,
'dialogAction': {
'type': 'Delegate',
'slots': slots
}
}
""" --- Build a responseCard with a title, subtitle, and an optional set of options which should be displayed as buttons --- """
def build_response_card(title, subtitle, options):
buttons = None
if options is not None:
buttons = []
for i in range(min(5, len(options))):
buttons.append(options[i])
return {
'contentType': 'application/vnd.amazonaws.card.generic',
'version': 1,
'genericAttachments': [{
'title': title,
'subTitle': subtitle,
'buttons': buttons
}]
}
""" --- Build a responseCard with a movie name as title, rating as a subtitle, and moviePoster with an attached URL to its provider --- """
def build_response_card_for_movies(movies, movieLinks, moviePosters,ratings):
responseCards = []
for i in range(0,min(10,len(movies))):
responseCards.append(
{
'title': movies[i],
'subTitle': 'Average Voting: {}'.format(ratings[i]),
'imageUrl': moviePosters[i],
'attachmentLinkUrl': movieLinks[i]
}
)
return {
'contentType': 'application/vnd.amazonaws.card.generic',
'version': 1,
'genericAttachments': responseCards
}
""" --- Build a list of potential options for a given slot, to be used in responseCard generation --- """
def build_options(slot):
if slot == 'category':
return [
{'text': 'Top Rated', 'value': '1'},
{'text': 'Most Popular', 'value': '2'},
{'text': 'Newly Released', 'value': '3'},
{'text': 'Trending Today', 'value': '4'}
]
""" --- Build a list of intents availaible, to be used in responseCard generation --- """
def build_intent_suggestions(intentName):
"""
Build a list of intents availaible, to be used in responseCard generation.
"""
if intentName == 'Welcome':
return [
{'text': 'Recommend Movies', 'value': 'suggest some movies'},
]
""" --- Validate and build a response for Amazon Lex --- """
def build_validation_result(is_valid, violated_slot, message_content):
return {
'isValid': is_valid,
'violatedSlot': violated_slot,
'message': {'contentType': 'PlainText', 'content': message_content}
}
def validate_choosen_category(category):
if category not in ["1","2","3","4"]:
return build_validation_result(False, 'category', 'Choose from given categories')
return build_validation_result(True, None, None)
def get_movie(intent_request):
"""
Performs dialog management and fulfillment for getting validated slots.
Beyond fulfillment, the implementation for this intent demonstrates the following:
1) Use of elicitSlot in slot validation and re-prompting
2) Use of confirmIntent to support the confirmation of inferred slot values, when confirmation is required
on the bot model and the inferred slot values fully specify the intent.
"""
category = get_slots(intent_request)["category"]
source = intent_request['invocationSource']
output_session_attributes = intent_request['sessionAttributes'] if intent_request['sessionAttributes'] is not None else {}
if source == 'DialogCodeHook':
slots = get_slots(intent_request)
validation_result = validate_choosen_category(category)
if not validation_result['isValid']:
slots[validation_result['violatedSlot']] = None
slots['category'] = None
return elicit_slot(
output_session_attributes,
intent_request['currentIntent']['name'],
slots,
validation_result['violatedSlot'],
validation_result['message'],
build_response_card(
'Choose a {}'.format(validation_result['violatedSlot']),
validation_result['message']['content'],
build_options(validation_result['violatedSlot'])
)
)
output_session_attributes = intent_request['sessionAttributes'] if intent_request['sessionAttributes'] is not None else {}
return delegate(output_session_attributes, slots)
if category == "1":
movies = get_top_rated(category)[0]
movieId =get_top_rated(category)[1]
moviePosters =get_top_rated(category)[2]
ratings = get_top_rated(category)[3]
movieLinks = get_movie_provider(movieId)
return closeWithResponseCard(intent_request['sessionAttributes'],
'Fulfilled',
{'contentType': 'PlainText',
'content': 'Top Rated Movies in our list are:'},
build_response_card_for_movies(movies,movieLinks,moviePosters,ratings)
)
elif category == "2":
movies = get_popular(category)[0]
movieId =get_popular(category)[1]
moviePosters =get_popular(category)[2]
ratings =get_popular(category)[3]
movieLinks = get_movie_provider(movieId)
return closeWithResponseCard(intent_request['sessionAttributes'],
'Fulfilled',
{'contentType': 'PlainText',
'content': 'Most Popular Movies in our list are:'},
build_response_card_for_movies(movies,movieLinks,moviePosters,ratings)
)
elif category == "3":
movies = get_newly_released(category)[0]
movieId =get_newly_released(category)[1]
moviePosters =get_newly_released(category)[2]
ratings =get_newly_released(category)[3]
movieLinks = get_movie_provider(movieId)
return closeWithResponseCard(intent_request['sessionAttributes'],
'Fulfilled',
{'contentType': 'PlainText',
'content': 'Newly Released Movies are:'},
build_response_card_for_movies(movies,movieLinks,moviePosters,ratings)
)
elif category == "4":
movies = get_trending_today(category)[0]
movieId =get_trending_today(category)[1]
moviePosters =get_trending_today(category)[2]
ratings =get_trending_today(category)[3]
movieLinks = get_movie_provider(movieId)
return closeWithResponseCard(intent_request['sessionAttributes'],
'Fulfilled',
{'contentType': 'PlainText',
'content': 'Movies Trending Today are: '},
build_response_card_for_movies(movies,movieLinks,moviePosters,ratings)
)
else:
return close(intent_request['sessionAttributes'],
'Fulfilled',
{'contentType': 'PlainText',
'content': "Sorry, I can't help with that"})
""" --- Below are a bunch of functions to help in get movies according to a category chosen by user --- """
def get_top_rated(category):
'''
api_key = Environmental Variable set in Lambda function
'''
api_key=os.environ.get('api_key')
http = urllib3.PoolManager()
r = http.request('GET', "https://api.themoviedb.org/3/movie/{}?api_key={}&language=en-US&page=1".format("top_rated",api_key))
response=json.loads(r.data.decode('utf-8'))
result=response['results']
movieList = []
movieId =[]
moviePosters = []
vote_average = []
for movie in result:
movieList.append(movie['title'])
movieId.append(movie['id'])
moviePosters.append("https://image.tmdb.org/t/p/original"+movie['poster_path'])
vote_average.append(movie['vote_average'])
return [movieList,movieId,moviePosters,vote_average]
def get_newly_released(category):
'''
api_key = Environmental Variable set in Lambda function
'''
api_key=os.environ.get('api_key')
http = urllib3.PoolManager()
r = http.request('GET', "https://api.themoviedb.org/3/movie/{}?api_key={}&language=en-US&page=1".format("now_playing",api_key))
response=json.loads(r.data.decode('utf-8'))
result=response['results']
movieList = []
movieId =[]
moviePosters = []
vote_average = []
for movie in result:
movieList.append(movie['title'])
movieId.append(movie['id'])
moviePosters.append("https://image.tmdb.org/t/p/original"+movie['poster_path'])
vote_average.append(movie['vote_average'])
return [movieList,movieId,moviePosters,vote_average]
def get_popular(category):
'''
api_key = Environmental Variable set in Lambda function
'''
api_key=os.environ.get('api_key')
http = urllib3.PoolManager()
r = http.request('GET', "https://api.themoviedb.org/3/movie/{}?api_key={}&language=en-US&page=1".format("top_rated",api_key))
response=json.loads(r.data.decode('utf-8'))
result=response['results']
movieList = []
movieId =[]
moviePosters = []
vote_average = []
for movie in result:
movieList.append(movie['title'])
movieId.append(movie['id'])
moviePosters.append("https://image.tmdb.org/t/p/original"+movie['poster_path'])
vote_average.append(movie['vote_average'])
return [movieList,movieId,moviePosters,vote_average]
def get_trending_today(category):
'''
api_key = Environmental Variable set in Lambda function
'''
api_key=os.environ.get('api_key')
http = urllib3.PoolManager()
r = http.request('GET', "https://api.themoviedb.org/3/trending/{}/day?api_key={}".format("movie",api_key))
response=json.loads(r.data.decode('utf-8'))
result=response['results']
movieList = []
movieId =[]
moviePosters = []
vote_average = []
for movie in result:
movieList.append(movie['title'])
movieId.append(movie['id'])
moviePosters.append("https://image.tmdb.org/t/p/original"+movie['poster_path'])
vote_average.append(movie['vote_average'])
return [movieList,movieId,moviePosters,vote_average]
def get_movie_provider(movieId):
'''
api_key = Environmental Variable set in Lambda function
'''
api_key=os.environ.get('api_key')
http = urllib3.PoolManager()
movieProviders = []
moviePosters = []
for id in movieId:
r = http.request('GET', "https://api.themoviedb.org/3/movie/{}/watch/providers?api_key={}".format(id,api_key))
response=json.loads(r.data.decode('utf-8'))
result=response['results']
if "US" in result:
link = result["US"]["link"]
movieProviders.append(link)
else:
link = "https://cutt.ly/5QGm4jF"
movieProviders.append(link)
return movieProviders
""" --- Intents --- """
def dispatch(intent_request):
intent_name = intent_request['currentIntent']['name']
if intent_name == 'RecommendMovie':
return get_movie(intent_request)
if intent_name == 'Welcome':
return closeWelcomeIntent(intent_request['sessionAttributes'],
'Fulfilled',
{'contentType': 'PlainText',
'content': 'Hi, how can i help you?'},
build_response_card(
"I can help you with",
"choose an option",
build_intent_suggestions(intent_name)
)
)
raise Exception('Intent with name ' + intent_name + ' not supported')
""" --- Main handler --- """
def lambda_handler(event, context):
return dispatch(event)