# # Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved. # # Permission is hereby granted, free of charge, to any person obtaining a copy of this # software and associated documentation files (the "Software"), to deal in the Software # without restriction, including without limitation the rights to use, copy, modify, # merge, publish, distribute, sublicense, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, # INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A # PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT # HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # import logging import json import bibot_config as bibot import bibot_helpers as helpers import bibot_userexits as userexits logger = logging.getLogger() logger.setLevel(logging.DEBUG) def lambda_handler(event, context): logger.debug('<<BIBot>> Lex event info = ' + json.dumps(event)) session_attributes = event['sessionAttributes'] logger.debug('<<BIBot>> lambda_handler: session_attributes = ' + json.dumps(session_attributes)) config_error = helpers.get_bibot_config() if config_error is not None: return helpers.close(session_attributes, 'Fulfilled', {'contentType': 'PlainText', 'content': config_error}) else: return goodbye_intent_handler(event, session_attributes) def goodbye_intent_handler(intent_request, session_attributes): session_attributes['greetingCount'] = '0' session_attributes['resetCount'] = '0' session_attributes['queryAttributes'] = None session_attributes['lastIntent'] = None askCount = helpers.increment_counter(session_attributes, 'finishedCount') # build response string if askCount == 1: response_string = 'Nice chatting with you. Talk to you later!' elif askCount == 2: response_string = 'Bye now!' elif askCount == 3: response_string = 'Hope I was able to help!' elif askCount == 4: response_string = 'See ya!' elif askCount == 5: response_string = 'Really?' else: response_string = 'Ok' slot_values = {key: None for key in bibot.SLOT_CONFIG} helpers.remember_slot_values(slot_values, session_attributes) return helpers.close(session_attributes, 'Fulfilled', {'contentType': 'PlainText','content': response_string})