Ejemplo n.º 1
0
 def get_welcome_back_response(self):
     if self.request['name'] == 'Buy':
         storage = Storage(self.context, self.request)
         storage.update_user_to_premium()
         self.session_attributes['user_item']['premium']['BOOL'] = True
         response_components = {
             'output_speech':
             'Thanks for buying premium, you now have access to all of the premium content. '
             'Say: Alexa, set my name as, and then say your name.',
             'card':
             '',
             'reprompt_text':
             'Ask Alexa to describe the premium content.',
             'should_end_session':
             False,
             'session_attributes':
             self.session_attributes
         }
         return Response(response_components).build_response()
     else:
         storage = Storage(self.context, self.request)
         storage.remove_access_to_premium()
         self.session_attributes['user_item']['premium']['BOOL'] = False
         response_components = {
             'output_speech':
             'Say easy, medium, or hard to get a word and start spelling',
             'card': '',
             'reprompt_text': 'Ask Alexa to describe the premium content.',
             'should_end_session': False,
             'session_attributes': self.session_attributes
         }
         return Response(response_components).build_response()
Ejemplo n.º 2
0
    def word_reminder(self):
        if 'word' in self.session_attributes.keys():
            word = self.session_attributes['word']

            response_list = [
                f'Your word is: {word}', f'Your current word is: {word}',
                f'Your current word to spell is: {word}',
                f'Your word to spell is: {word}'
            ]

            output_speech = response_list[random.randint(
                0,
                len(response_list) - 1)]

        else:
            output_speech = 'You don\'t currently have a word. Say easy, medium or hard to get started.'

        response_components = {
            'output_speech': output_speech,
            'card': '',
            'reprompt_text': output_speech,
            'should_end_session': False,
            'session_attributes': self.session_attributes
        }
        return Response(response_components).build_response()
Ejemplo n.º 3
0
    def list_homework_words(self):
        homework_list = [
            i['S']
            for i in self.session_attributes['user_item']['homeworkList']['L']
        ]
        homework_list[-1] = 'and ' + homework_list[-1]
        words_string = ', '.join(homework_list)

        if len(homework_list) == 0:
            output_speech = 'You don\'t have any words in your homework list yet. ' \
                            'Say Alexa, add word to my homework list.'
        elif len(homework_list) == 1:
            output_speech = f'Your homework list has the word {words_string.replace("and", "").strip()} in it.'
        else:
            output_speech = f'Your homework list has these words: {words_string}'

        response_components = {
            'output_speech': output_speech,
            'card': '',
            'reprompt_text':
            'Pick easy, medium, or hard to get a word and start spelling again.',
            'should_end_session': False,
            'session_attributes': self.session_attributes
        }
        return Response(response_components).build_response()
Ejemplo n.º 4
0
    def return_response(self):
        intent_triggered = self.request['intent']['name']
        method_tuple = self.intent_mapping.get(intent_triggered)

        if method_tuple[1]:
            if self.premium_user_check():
                try:
                    return method_tuple[0]()
                except Exception as e:
                    print(e)
                    return self.handle_bad_request()
            else:
                response_components = {
                    'output_speech':
                    'That is a premium function. Ask Alexa about what you can buy in this skill'
                    ' to find out more.',
                    'card':
                    '',
                    'reprompt_text':
                    'Say Alexa, what can I buy',
                    'should_end_session':
                    False,
                    'session_attributes':
                    self.session_attributes
                }
                return Response(response_components).build_response()
        else:
            try:
                return method_tuple[0]()
            except Exception as e:
                print(e)
                return self.handle_bad_request()
Ejemplo n.º 5
0
    def list_in_skill_products(self):
        base_url = self.context['System']['apiEndpoint']
        end_url = '/v1/users/~current/skills/~current/inSkillProducts'

        headers = {
            'Accept-Language': self.request['locale'],
            'Authorization':
            f'Bearer {self.context["System"]["apiAccessToken"]}'
        }

        response = requests.get(base_url + end_url, headers=headers).json()
        product_name = response['inSkillProducts'][0]['name'].title()
        product_type = response['inSkillProducts'][0]['type'].lower()
        product_description = response['inSkillProducts'][0]['summary']
        response_components = {
            'output_speech':
            f'You can buy {product_name}. It is a {product_type} purchase'
            f' with the description: {product_description}',
            'card':
            '',
            'reprompt_text':
            f'You can buy {product_name}. It is a {product_type} purchase'
            f' with the description: {product_description}',
            'should_end_session':
            False,
            'session_attributes':
            self.session_attributes
        }
        return Response(response_components).build_response()
Ejemplo n.º 6
0
    def get_word_type(self):
        url = self.url_base + self.session_attributes['word']
        api_response = requests.get(url, headers=self.headers).json()
        word_types = list(
            set([
                word_info['partOfSpeech']
                for word_info in api_response.get('results', None)
            ]))

        if len(word_types) == 1:
            if word_types[0][0] not in ['a', 'e', 'i', 'o', 'u']:
                output_speech = f"The word {self.session_attributes['word']} is a {word_types[0]}."
            else:
                output_speech = f"The word {self.session_attributes['word']} is an {word_types[0]}."
        else:
            if word_types[-1][0] not in ['a', 'e', 'i', 'o', 'u']:
                word_types[-1] = 'or a ' + word_types[-1]
                types_str = ', '.join(word_types)
                output_speech = f"The word {self.session_attributes['word']} can be a {types_str}."
            else:
                word_types[-1] = 'or an ' + word_types[-1]
                types_str = ', '.join(word_types)
                output_speech = f"The word {self.session_attributes['word']} can be a {types_str}."

        response_components = {
            'output_speech': output_speech,
            'card': '',
            'reprompt_text': None,
            'should_end_session': False,
            'session_attributes': self.session_attributes
        }
        return Response(response_components).build_response()
Ejemplo n.º 7
0
    def activate_homework_mode(self):
        self.session_attributes['mode'] = 'homework'
        homework_list = [
            i['S']
            for i in self.session_attributes['user_item']['homeworkList']['L']
        ]

        word = homework_list[random.randint(0, len(homework_list) - 1)]

        self.session_attributes['word'] = word.lower()
        self.session_attributes['attempt_number'] = 0

        word_letter_list = [i for i in word]
        count = 1

        for letter in word_letter_list:
            self.session_attributes[f'letter_{count}'] = letter
            count += 1

        response_components = {
            'output_speech':
            f'Homework mode activated. Your first word is: {word}',
            'card': '',
            'reprompt_text': None,
            'should_end_session': False,
            'session_attributes': self.session_attributes
        }
        return Response(response_components).build_response()
Ejemplo n.º 8
0
    def get_new_word(self):
        slot_dict = self.request['intent']['slots'].get('YesNo', None)

        if not slot_dict:
            self.handle_bad_request()
        else:
            slot_value = slot_dict['resolutions']['resolutionsPerAuthority'][
                0]['values'][0]['value']['name']

            if slot_value == 'yes':
                if self.session_attributes['difficulty_level'] == 'easy':
                    word_list = easy
                elif self.session_attributes['difficulty_level'] == 'medium':
                    word_list = medium
                else:
                    word_list = hard

                word = word_list[random.randint(0, len(word_list) - 1)]

                self.session_attributes['word'] = word.lower()
                self.session_attributes['attempt_number'] = 0

                keys_to_pop = []
                for key in self.session_attributes.keys():
                    if key.startswith('letter'):
                        keys_to_pop.append(key)

                for key in keys_to_pop:
                    self.session_attributes.pop(key, None)

                word_letter_list = [i for i in word]
                count = 1

                for letter in word_letter_list:
                    self.session_attributes[f'letter_{count}'] = letter
                    count += 1

                response_list = [
                    f'Your word is: {word}', f'Your next word is: {word}',
                    f'Your new word is: {word}',
                    f'Your next word to spell is: {word}'
                ]

                output_speech = response_list[random.randint(
                    0,
                    len(response_list) - 1)]

                response_components = {
                    'output_speech': output_speech,
                    'card': '',
                    'reprompt_text': f'Your word is: {word}',
                    'should_end_session': False,
                    'session_attributes': self.session_attributes
                }
                return Response(response_components).build_response()
            else:
                return self.end_session()
Ejemplo n.º 9
0
 def handle_bad_request(self):
     response_components = {
         'output_speech': 'Sorry, could you repeat that please?',
         'card': '',
         'reprompt_text': 'Sorry, could you repeat that please?',
         'should_end_session': False,
         'session_attributes': self.session_attributes
     }
     return Response(response_components).build_response()
Ejemplo n.º 10
0
 def end_session(self):
     self.session_attributes['output_type'] = 'speech'
     response_components = {
         'output_speech': 'Thanks for playing Spelling Bee! Goodbye!',
         'card': '',
         'reprompt_text': None,
         'should_end_session': True,
         'session_attributes': self.session_attributes
     }
     return Response(response_components).build_response()
Ejemplo n.º 11
0
 def cancel_subscription(self):
     response_components = {
         'output_speech': None,
         'card': '',
         'reprompt_text': None,
         'should_end_session': True,
         'session_attributes': self.session_attributes,
         'product_id': self.premium_product_id,
         'directive': 'cancel'
     }
     return Response(response_components).build_response()
Ejemplo n.º 12
0
 def help_request(self):
     self.session_attributes['output_type'] = 'speech'
     response_components = {
         'output_speech':
         'Say easy, medium, or hard, to pick the level of difficulty and get a new word.',
         'card': '',
         'reprompt_text':
         'Say easy, medium, or hard, to pick the level of difficulty and get a new word.',
         'should_end_session': True,
         'session_attributes': self.session_attributes
     }
     return Response(response_components).build_response()
Ejemplo n.º 13
0
    def deactivate_homework_mode(self):
        self.session_attributes['mode'] = 'regular'

        response_components = {
            'output_speech':
            f'Homework mode deactivated. Say easy, medium, or hard to get a new word.',
            'card': '',
            'reprompt_text':
            'Pick easy, medium, or hard to get a word and start spelling again.',
            'should_end_session': False,
            'session_attributes': self.session_attributes
        }
        return Response(response_components).build_response()
Ejemplo n.º 14
0
    def clear_homework_list(self):
        homework_list = []
        storage = Storage(self.context, self.request)
        storage.add_homework_word(homework_list)

        response_components = {
            'output_speech':
            'I\'ve emptied your homework list. You can now start adding new words to it again.',
            'card': '',
            'reprompt_text':
            'Pick easy, medium, or hard to get a word and start spelling again.',
            'should_end_session': False,
            'session_attributes': self.session_attributes
        }
        return Response(response_components).build_response()
Ejemplo n.º 15
0
    def get_welcome_response(self):
        if 'name' in self.session_attributes['user_item'].keys():
            name = self.session_attributes['user_item']['name']['S']
            output_speech = f'Welcome back {name}! What difficulty would you like; easy, medium, or hard?'
        else:
            output_speech = 'Welcome to spelling bee! What difficulty would you like; easy, medium, or hard?'

        response_components = {
            'output_speech': output_speech,
            'card': '',
            'reprompt_text':
            'Pick easy, medium, or hard to get your first word.',
            'should_end_session': False,
            'session_attributes': self.session_attributes
        }
        return Response(response_components).build_response()
Ejemplo n.º 16
0
    def get_example_sentence(self):
        url = self.url_base + self.session_attributes['word'] + '/examples'
        api_response = requests.get(url, headers=self.headers).json()
        example_sentences = api_response.get('examples', None)

        if example_sentences:
            example = example_sentences[random.randint(
                0,
                len(example_sentences) - 1)]

            response_components = {
                'output_speech': f"Here's your example sentence: {example}.",
                'card': '',
                'reprompt_text': None,
                'should_end_session': False,
                'session_attributes': self.session_attributes
            }
            return Response(response_components).build_response()
Ejemplo n.º 17
0
    def is_user_premium(self):
        try:
            if self.session_attributes['user_item']['premium']['BOOL']:
                output_speech = 'Yes, you are a premium user.'
            else:
                output_speech = 'No, you\'re not a premium user. Ask Alexa to buy premium to get started.'
        except Exception:
            output_speech = 'No, you\'re not a premium user. Ask Alexa to buy premium to get started.'

        response_components = {
            'output_speech': output_speech,
            'card': '',
            'reprompt_text':
            'Say Alexa, what is premium, to hear about the premium subscription.',
            'should_end_session': False,
            'session_attributes': self.session_attributes
        }
        return Response(response_components).build_response()
Ejemplo n.º 18
0
    def get_first_word_of_session(self):
        slot_dict = self.request['intent']['slots'].get('Difficulty', None)

        if not slot_dict:
            self.handle_bad_request()
        else:
            difficulty_level = slot_dict['value']

            if difficulty_level == 'easy':
                word_list = easy
            elif difficulty_level == 'medium':
                word_list = medium
            else:
                word_list = hard

            word = word_list[random.randint(0, len(word_list) - 1)]

            self.session_attributes['difficulty_level'] = difficulty_level
            self.session_attributes['word'] = word.lower()
            self.session_attributes['attempt_number'] = 0

            word_letter_list = [i for i in word]
            count = 1

            for letter in word_letter_list:
                self.session_attributes[f'letter_{count}'] = letter
                count += 1

            response_list = [
                f'Your word is: {word}', f'Your first word is: {word}'
            ]

            output_speech = response_list[random.randint(
                0,
                len(response_list) - 1)]

            response_components = {
                'output_speech': output_speech,
                'card': '',
                'reprompt_text': f'Your word is: {word}',
                'should_end_session': False,
                'session_attributes': self.session_attributes
            }
            return Response(response_components).build_response()
Ejemplo n.º 19
0
    def get_word_definition(self):
        url = self.url_base + self.session_attributes['word'] + '/definitions'
        api_response = requests.get(url, headers=self.headers).json()
        definitions = api_response.get('definitions', None)

        if definitions:
            definition = definitions[random.randint(0,
                                                    len(definitions) -
                                                    1)]['definition']

            response_components = {
                'output_speech':
                f"One definition for the word {self.session_attributes['word']} is: {definition}.",
                'card': '',
                'reprompt_text': None,
                'should_end_session': False,
                'session_attributes': self.session_attributes
            }
            return Response(response_components).build_response()
Ejemplo n.º 20
0
    def set_user_name(self):
        storage = Storage(self.context, self.request)
        storage.set_user_name()
        name = self.request['intent']['slots']['UserName']['value'].title()

        response_components = {
            'output_speech':
            f'Ok {name}, I\'ll remember that for next time. Ask Alexa to tell you about premium'
            f' or visit the Spelling Bee skill page to find out about all of the premium content.',
            'card':
            '',
            'reprompt_text':
            'Pick easy, medium, or hard to get a word and keep spelling.',
            'should_end_session':
            False,
            'session_attributes':
            self.session_attributes
        }
        return Response(response_components).build_response()
Ejemplo n.º 21
0
 def get_word_type(self):
     if 'word' in self.session_attributes.keys():
         words_api = WordsApi(self.session_attributes)
         return words_api.get_word_type()
     else:
         response_components = {
             'output_speech':
             'You need to get a word first. Say easy, medium, or hard to'
             ' pick a difficulty.',
             'card':
             '',
             'reprompt_text':
             'You need to get a word first. Say easy, medium, or hard to'
             ' pick a difficulty.',
             'should_end_session':
             False,
             'session_attributes':
             self.session_attributes
         }
         return Response(response_components).build_response()
Ejemplo n.º 22
0
    def get_personal_best(self):
        storage = Storage(self.context, self.request)
        user_item = storage.get_user_item()
        self.session_attributes['user_item'] = user_item
        personal_best = user_item['personalBest']['N']

        if personal_best != '1':
            output_speech = f'Your personal best is spelling {personal_best} words in a row.'
        else:
            output_speech = f'Your personal best is spelling {personal_best} word correctly.'

        response_components = {
            'output_speech': output_speech,
            'card': '',
            'reprompt_text':
            'Pick easy, medium, or hard to get a word and keep spelling.',
            'should_end_session': False,
            'session_attributes': self.session_attributes
        }
        return Response(response_components).build_response()
Ejemplo n.º 23
0
    def add_homework_word(self):
        slot_dict = self.request['intent']['slots'].get('HomeworkWord', None)
        if not slot_dict:
            return self.handle_bad_request()
        else:
            new_word = slot_dict['value'].lower()
            homework_list = self.session_attributes['user_item'][
                'homeworkList']['L']
            homework_list.append({'S': new_word})
            storage = Storage(self.context, self.request)
            storage.add_homework_word(homework_list)

            response_components = {
                'output_speech':
                f'I\'ve added the word: {new_word} to your homework list.',
                'card': '',
                'reprompt_text': None,
                'should_end_session': False,
                'session_attributes': self.session_attributes
            }
            return Response(response_components).build_response()
Ejemplo n.º 24
0
    def describe_premium_content(self):
        if self.session_attributes['user_item']['premium']['BOOL']:
            output_speech = 'Buying Premium gives you access to everything in this skill. '\
                            'You can ask for word definitions and example sentences. '\
                            'There is homework mode where you create your own list of words to spell.'\
                            'Alexa will also remember your name as well as more functionality you can find on the '\
                            'Spelling Bee skill page.'
        else:
            output_speech = 'Buying Premium gives you access to everything in this skill. '\
                             'You can ask for word definitions and example sentences. '\
                             'There is homework mode where you create your own list of words to spell.'\
                             'Alexa will also remember your name as well as more functionality you can find on the '\
                             'Spelling Bee skill page. '\
                             'Tell Alexa you want to buy premium to get started.'\

        response_components = {
            'output_speech': output_speech,
            'card': '',
            'reprompt_text':
            'Say Alexa, buy premium to get access to all of the premium content.',
            'should_end_session': False,
            'session_attributes': self.session_attributes
        }
        return Response(response_components).build_response()
Ejemplo n.º 25
0
    def handle_word_spelling(self):
        slot_dict = self.request['intent']['slots'].get('Letter', None)
        if not slot_dict:
            return self.handle_bad_request()
        elif slot_dict['resolutions']['resolutionsPerAuthority'][0]['status'][
                'code'] == 'ER_SUCCESS_NO_MATCH':
            return self.handle_bad_request()
        else:
            attempt_number = self.session_attributes['attempt_number'] + 1
            self.session_attributes['attempt_number'] = attempt_number
            letter_required = self.session_attributes[
                f'letter_{attempt_number}']
            letter_given = slot_dict['value'].lower().replace('.', '')

            if letter_given == letter_required:
                if attempt_number < len(self.session_attributes['word']):
                    self.session_attributes['output_type'] = 'audio'
                    response_components = {
                        'output_speech':
                        "<speak><audio src='soundbank://soundlibrary/ui/gameshow/"
                        "amzn_ui_sfx_gameshow_positive_response_01'/></speak>",
                        'card':
                        '',
                        'reprompt_text':
                        None,
                        'should_end_session':
                        False,
                        'session_attributes':
                        self.session_attributes
                    }
                    return Response(response_components).build_response()
                else:
                    self.session_attributes['output_type'] = 'speech'
                    num_correct_in_row = self.session_attributes[
                        'num_correct_in_row']
                    self.session_attributes[
                        'num_correct_in_row'] = num_correct_in_row + 1

                    if (self.session_attributes['num_correct_in_row'] >
                            int(self.session_attributes['user_item']
                                ['personalBest']['N'])):
                        storage = Storage(self.context, self.request)
                        storage.update_personal_best(
                            self.session_attributes['num_correct_in_row'])

                    response_components = {
                        'output_speech':
                        f"Well done, you spelled the word {self.session_attributes['word']} correctly."
                        f" Do you want a new word?",
                        'card':
                        '',
                        'reprompt_text':
                        'Do you want a new word?',
                        'should_end_session':
                        False,
                        'session_attributes':
                        self.session_attributes
                    }
                    return Response(response_components).build_response()
            else:
                self.session_attributes['output_type'] = 'speech'
                attempt_number = self.session_attributes['attempt_number'] - 1
                self.session_attributes['attempt_number'] = attempt_number
                self.session_attributes['num_correct_in_row'] = 0
                response_components = {
                    'output_speech': "Try again.",
                    'card': '',
                    'reprompt_text': 'Have another go.',
                    'should_end_session': False,
                    'session_attributes': self.session_attributes
                }
                return Response(response_components).build_response()