X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=turbot%2Finteraction.py;h=955fae5b776f15db7222e7a5e3a0cbe81ec4f0c0;hb=c7213abc1b0c3fcb276284dbd9ba23bb44b5f67a;hp=bef4f42ee7ad52200fa9b10d63abf59dd4d6f802;hpb=13a4f1596e72f847571c2bb42fd29064a36a658b;p=turbot diff --git a/turbot/interaction.py b/turbot/interaction.py index bef4f42..955fae5 100644 --- a/turbot/interaction.py +++ b/turbot/interaction.py @@ -1,5 +1,15 @@ from slack.errors import SlackApiError -from turbot.blocks import input_block, section_block, text_block +from turbot.blocks import ( + input_block, section_block, text_block, multi_select_block, checkbox_block +) +from turbot.hunt import find_hunt_for_hunt_id, hunt_blocks +from turbot.puzzle import ( + find_puzzle_for_url, + find_puzzle_for_puzzle_id, + puzzle_update_channel_and_sheet, + puzzle_id_from_name, + puzzle_blocks +) import turbot.rot import turbot.sheets import turbot.slack @@ -7,13 +17,21 @@ import json import re import requests from botocore.exceptions import ClientError +from boto3.dynamodb.conditions import Key from turbot.slack import slack_send_message +import shlex actions = {} +actions['button'] = {} commands = {} submission_handlers = {} # Hunt/Puzzle IDs are restricted to lowercase letters, numbers, and underscores +# +# Note: This restriction not only allows for hunt and puzzle ID values to +# be used as Slack channel names, but it also allows for '-' as a valid +# separator between a hunt and a puzzle ID (for example in the puzzle +# edit dialog where a single attribute must capture both values). valid_id_re = r'^[_a-z0-9]+$' lambda_ok = {'statusCode': 200} @@ -50,6 +68,183 @@ def submission_error(field, error): }) } +def multi_static_select(turb, payload): + """Handler for the action of user entering a multi-select value""" + + return lambda_ok + +actions['multi_static_select'] = {"*": multi_static_select} + +def edit_puzzle(turb, payload): + """Handler for the action of user pressing an edit_puzzle button""" + + action_id = payload['actions'][0]['action_id'] + response_url = payload['response_url'] + trigger_id = payload['trigger_id'] + + (hunt_id, puzzle_id) = action_id.split('-', 1) + + puzzle = find_puzzle_for_puzzle_id(turb, hunt_id, puzzle_id) + + if not puzzle: + requests.post(response_url, + json = {"text": "Error: Puzzle not found!"}, + headers = {"Content-type": "application/json"}) + return bot_reply("Error: Puzzle not found.") + + round_options = hunt_rounds(turb, hunt_id) + + if len(round_options): + round_options_block = [ + multi_select_block("Round(s)", "rounds", + "Existing round(s) this puzzle belongs to", + round_options, + initial_options=puzzle.get("rounds", None)), + ] + else: + round_options_block = [] + + solved = False + if puzzle.get("status", "unsolved") == solved: + solved = True + + solution_str = None + solution_list = puzzle.get("solution", []) + if solution_list: + solution_str = ", ".join(solution_list) + + view = { + "type": "modal", + "private_metadata": json.dumps({ + "hunt_id": hunt_id, + "SK": puzzle["SK"], + "puzzle_id": puzzle_id, + "channel_id": puzzle["channel_id"], + "channel_url": puzzle["channel_url"], + "sheet_url": puzzle["sheet_url"], + }), + "title": {"type": "plain_text", "text": "Edit Puzzle"}, + "submit": { "type": "plain_text", "text": "Save" }, + "blocks": [ + input_block("Puzzle name", "name", "Name of the puzzle", + initial_value=puzzle["name"]), + input_block("Puzzle URL", "url", "External URL of puzzle", + initial_value=puzzle.get("url", None), + optional=True), + * round_options_block, + input_block("New round(s)", "new_rounds", + "New round(s) this puzzle belongs to " + + "(comma separated)", + optional=True), + input_block("State", "state", + "State of this puzzle (partial progress, next steps)", + initial_value=puzzle.get("state", None), + optional=True), + checkbox_block( + "Puzzle status", "Solved", "solved", + checked=(puzzle.get('status', 'unsolved') == 'solved')), + input_block("Solution", "solution", + "Solution(s) (comma-separated if multiple)", + initial_value=solution_str, + optional=True), + ] + } + + result = turb.slack_client.views_open(trigger_id=trigger_id, + view=view) + + if (result['ok']): + submission_handlers[result['view']['id']] = edit_puzzle_submission + + return lambda_ok + +actions['button']['edit_puzzle'] = edit_puzzle + +def edit_puzzle_submission(turb, payload, metadata): + """Handler for the user submitting the edit puzzle modal + + This is the modal view presented to the user by the edit_puzzle + function above. + """ + + puzzle={} + + # First, read all the various data from the request + meta = json.loads(metadata) + puzzle['hunt_id'] = meta['hunt_id'] + puzzle['SK'] = meta['SK'] + puzzle['puzzle_id'] = meta['puzzle_id'] + puzzle['channel_id'] = meta['channel_id'] + puzzle['channel_url'] = meta['channel_url'] + puzzle['sheet_url'] = meta['sheet_url'] + + state = payload['view']['state']['values'] + + puzzle['name'] = state['name']['name']['value'] + url = state['url']['url']['value'] + if url: + puzzle['url'] = url + rounds = [option['value'] for option in + state['rounds']['rounds']['selected_options']] + if rounds: + puzzle['rounds'] = rounds + new_rounds = state['new_rounds']['new_rounds']['value'] + puzzle_state = state['state']['state']['value'] + if puzzle_state: + puzzle['state'] = puzzle_state + if state['solved']['solved']['selected_options']: + puzzle['status'] = 'solved' + else: + puzzle['status'] = 'unsolved' + puzzle['solution'] = [] + solution = state['solution']['solution']['value'] + if solution: + puzzle['solution'] = [ + sol.strip() for sol in solution.split(',') + ] + + # Verify that there's a solution if the puzzle is mark solved + if puzzle['status'] == 'solved' and not puzzle['solution']: + return submission_error("solution", + "A solved puzzle requires a solution.") + + if puzzle['status'] == 'unsolved' and puzzle['solution']: + return submission_error("solution", + "An unsolved puzzle should have no solution.") + + # Add any new rounds to the database + if new_rounds: + if 'rounds' not in puzzle: + puzzle['rounds'] = [] + for round in new_rounds.split(','): + # Drop any leading/trailing spaces from the round name + round = round.strip() + # Ignore any empty string + if not len(round): + continue + puzzle['rounds'].append(round) + turb.table.put_item( + Item={ + 'hunt_id': puzzle['hunt_id'], + 'SK': 'round-' + round + } + ) + + # Get old puzzle from the database (to determine what's changed) + old_puzzle = find_puzzle_for_puzzle_id(turb, + puzzle['hunt_id'], + puzzle['puzzle_id']) + + # Update the puzzle in the database + turb.table.put_item(Item=puzzle) + + # We need to set the channel topic if any of puzzle name, url, + # state, status, or solution, has changed. Let's just do that + # unconditionally here. + puzzle_update_channel_and_sheet(turb, puzzle, old_puzzle=old_puzzle) + + return lambda_ok + def new_hunt(turb, payload): """Handler for the action of user pressing the new_hunt button""" @@ -75,7 +270,7 @@ def new_hunt(turb, payload): return lambda_ok -actions['button'] = {"new_hunt": new_hunt} +actions['button']['new_hunt'] = new_hunt def new_hunt_submission(turb, payload, metadata): """Handler for the user submitting the new hunt modal @@ -95,32 +290,76 @@ def new_hunt_submission(turb, payload, metadata): "Hunt ID can only contain lowercase letters, " + "numbers, and underscores") - # Check to see if the hunts table exists - hunts_table = turb.db.Table("hunts") - + # Check to see if the turbot table exists try: - exists = hunts_table.table_status in ("CREATING", "UPDATING", - "ACTIVE") + exists = turb.table.table_status in ("CREATING", "UPDATING", + "ACTIVE") except ClientError: exists = False - # Create the hunts table if necessary. + # Create the turbot table if necessary. if not exists: - hunts_table = turb.db.create_table( - TableName='hunts', + turb.table = turb.db.create_table( + TableName='turbot', KeySchema=[ - {'AttributeName': 'channel_id', 'KeyType': 'HASH'}, + {'AttributeName': 'hunt_id', 'KeyType': 'HASH'}, + {'AttributeName': 'SK', 'KeyType': 'RANGE'} ], AttributeDefinitions=[ + {'AttributeName': 'hunt_id', 'AttributeType': 'S'}, + {'AttributeName': 'SK', 'AttributeType': 'S'}, {'AttributeName': 'channel_id', 'AttributeType': 'S'}, + {'AttributeName': 'is_hunt', 'AttributeType': 'S'}, + {'AttributeName': 'url', 'AttributeType': 'S'} ], ProvisionedThroughput={ 'ReadCapacityUnits': 5, 'WriteCapacityUnits': 5 - } + }, + GlobalSecondaryIndexes=[ + { + 'IndexName': 'channel_id_index', + 'KeySchema': [ + {'AttributeName': 'channel_id', 'KeyType': 'HASH'} + ], + 'Projection': { + 'ProjectionType': 'ALL' + }, + 'ProvisionedThroughput': { + 'ReadCapacityUnits': 5, + 'WriteCapacityUnits': 5 + } + }, + { + 'IndexName': 'is_hunt_index', + 'KeySchema': [ + {'AttributeName': 'is_hunt', 'KeyType': 'HASH'} + ], + 'Projection': { + 'ProjectionType': 'ALL' + }, + 'ProvisionedThroughput': { + 'ReadCapacityUnits': 5, + 'WriteCapacityUnits': 5 + } + } + ], + LocalSecondaryIndexes = [ + { + 'IndexName': 'url_index', + 'KeySchema': [ + {'AttributeName': 'hunt_id', 'KeyType': 'HASH'}, + {'AttributeName': 'url', 'KeyType': 'RANGE'}, + ], + 'Projection': { + 'ProjectionType': 'ALL' + } + } + ] ) - return submission_error("hunt_id", - "Still bootstrapping hunts table. Try again.") + return submission_error( + "hunt_id", + "Still bootstrapping turbot table. Try again in a minute, please.") # Create a channel for the hunt try: @@ -135,15 +374,17 @@ def new_hunt_submission(turb, payload, metadata): # Insert the newly-created hunt into the database # (leaving it as non-active for now until the channel-created handler # finishes fixing it up with a sheet and a companion table) - hunts_table.put_item( - Item={ - 'channel_id': channel_id, - "active": False, - "name": name, - "hunt_id": hunt_id, - "url": url - } - ) + item={ + "hunt_id": hunt_id, + "SK": "hunt-{}".format(hunt_id), + "is_hunt": hunt_id, + "channel_id": channel_id, + "active": False, + "name": name, + } + if url: + item['url'] = url + turb.table.put_item(Item=item) # Invite the initiating user to the channel turb.slack_client.conversations_invite(channel=channel_id, users=user_id) @@ -214,88 +455,169 @@ def get_table_item(turb, table_name, key, value): else: return (None, None) -def channel_is_puzzle(turb, channel_id, channel_name): - """Given a channel ID/name return the database item for the puzzle +def db_entry_for_channel(turb, channel_id): + """Given a channel ID return the database item for this channel - If this channel is a puzzle, this function returns a tuple: + If this channel is a registered hunt or puzzle channel, return the + corresponding row from the database for this channel. Otherwise, + return None. - (puzzle, table) + Note: If you need to specifically ensure that the channel is a + puzzle or a hunt, please call puzzle_for_channel or + hunt_for_channel respectively. + """ + + response = turb.table.query( + IndexName = "channel_id_index", + KeyConditionExpression=Key("channel_id").eq(channel_id) + ) - Where puzzle is dict filled with database entries, and table is a - database table that can be used to update the puzzle in the - database. + if response['Count'] == 0: + return None - Otherwise, this function returns (None, None).""" + return response['Items'][0] - hunt_id = channel_name.split('-')[0] - # Not a puzzle channel if there is no hyphen in the name - if hunt_id == channel_name: - return (None, None) +def puzzle_for_channel(turb, channel_id): - return get_table_item(turb, hunt_id, 'channel_id', channel_id) + """Given a channel ID return the puzzle from the database for this channel -def channel_is_hunt(turb, channel_id): + If the given channel_id is a puzzle's channel, this function + returns a dict filled with the attributes from the puzzle's entry + in the database. - """Given a channel ID/name return the database item for the hunt + Otherwise, this function returns None. + """ + + entry = db_entry_for_channel(turb, channel_id) - Returns a dict (filled with database entries) if there is a hunt - for this channel, otherwise returns None.""" + if entry and entry['SK'].startswith('puzzle-'): + return entry + else: + return None - return get_table_item(turb, "hunts", 'channel_id', channel_id) +def hunt_for_channel(turb, channel_id): -def find_hunt_for_channel(turb, channel_id, channel_name): - """Given a channel ID/name find the id/name of the hunt for this channel + """Given a channel ID return the hunt from the database for this channel This works whether the original channel is a primary hunt channel, or if it is one of the channels of a puzzle belonging to the hunt. Returns None if channel does not belong to a hunt, otherwise a dictionary with all fields from the hunt's row in the table, - (channel_id, active_, hun_id, name, url, sheet_url, etc.). - + (channel_id, active, hunt_id, name, url, sheet_url, etc.). """ - (hunt, _) = channel_is_hunt(turb, channel_id) + entry = db_entry_for_channel(turb, channel_id) + + # We're done if this channel doesn't exist in the database at all + if not entry: + return None - if hunt: - return hunt + # Also done if this channel is a hunt channel + if entry['SK'].startswith('hunt-'): + return entry - # So we're not a hunt channel, let's look to see if we are a - # puzzle channel with a hunt-id prefix. - hunt_id = channel_name.split('-')[0] + # Otherwise, (the channel is in the database, but is not a hunt), + # we expect this to be a puzzle channel instead + return find_hunt_for_hunt_id(turb, entry['hunt_id']) - hunts_table = turb.db.Table("hunts") +# python3.9 has a built-in removeprefix but AWS only has python3.8 +def remove_prefix(text, prefix): + if text.startswith(prefix): + return text[len(prefix):] + return text - response = hunts_table.scan( - FilterExpression='hunt_id = :hunt_id', - ExpressionAttributeValues={':hunt_id': hunt_id} +def hunt_rounds(turb, hunt_id): + """Returns array of strings giving rounds that exist in the given hunt""" + + response = turb.table.query( + KeyConditionExpression=( + Key('hunt_id').eq(hunt_id) & + Key('SK').begins_with('round-') + ) ) - if 'Items' in response and len(response['Items']): - item = response['Items'][0] - return item + if response['Count'] == 0: + return [] - return None + return [remove_prefix(option['SK'], 'round-') + for option in response['Items']] def puzzle(turb, body, args): """Implementation of the /puzzle command - The args string is currently ignored (this command will bring up - a modal dialog for user input instead).""" + The args string can be a sub-command: + + /puzzle new: Bring up a dialog to create a new puzzle + + Or with no argument at all: + + /puzzle: Print details of the current puzzle (if in a puzzle channel) + """ + + if args == 'new': + return new_puzzle(turb, body) + + if len(args): + return bot_reply("Unknown syntax for `/puzzle` command. " + + "Use `/puzzle new` to create a new puzzle.") + + # For no arguments we print the current puzzle as a reply + channel_id = body['channel_id'][0] + response_url = body['response_url'][0] + + puzzle = puzzle_for_channel(turb, channel_id) + + if not puzzle: + hunt = hunt_for_channel(turb, channel_id) + if hunt: + return bot_reply( + "This is not a puzzle channel, but is a hunt channel. " + + "If you want to create a new puzzle for this hunt, use " + + "`/puzzle new`.") + else: + return bot_reply( + "Sorry, this channel doesn't appear to be a hunt or a puzzle " + + "channel, so the `/puzzle` command cannot work here.") + + blocks = puzzle_blocks(puzzle, include_rounds=True) + + requests.post(response_url, + json = {'blocks': blocks}, + headers = {'Content-type': 'application/json'} + ) + + return lambda_ok + +commands["/puzzle"] = puzzle + +def new_puzzle(turb, body): + """Implementation of the "/puzzle new" command + + This brings up a dialog box for creating a new puzzle. + """ channel_id = body['channel_id'][0] - channel_name = body['channel_name'][0] trigger_id = body['trigger_id'][0] - hunt = find_hunt_for_channel(turb, - channel_id, - channel_name) + hunt = hunt_for_channel(turb, channel_id) if not hunt: return bot_reply("Sorry, this channel doesn't appear to " + "be a hunt or puzzle channel") + round_options = hunt_rounds(turb, hunt['hunt_id']) + + if len(round_options): + round_options_block = [ + multi_select_block("Round(s)", "rounds", + "Existing round(s) this puzzle belongs to", + round_options) + ] + else: + round_options_block = [] + view = { "type": "modal", "private_metadata": json.dumps({ @@ -307,6 +629,11 @@ def puzzle(turb, body, args): section_block(text_block("*For {}*".format(hunt['name']))), input_block("Puzzle name", "name", "Name of the puzzle"), input_block("Puzzle URL", "url", "External URL of puzzle", + optional=True), + * round_options_block, + input_block("New round(s)", "new_rounds", + "New round(s) this puzzle belongs to " + + "(comma separated)", optional=True) ] } @@ -315,27 +642,42 @@ def puzzle(turb, body, args): view=view) if (result['ok']): - submission_handlers[result['view']['id']] = puzzle_submission + submission_handlers[result['view']['id']] = new_puzzle_submission return lambda_ok -commands["/puzzle"] = puzzle - -def puzzle_submission(turb, payload, metadata): +def new_puzzle_submission(turb, payload, metadata): """Handler for the user submitting the new puzzle modal - This is the modal view presented to the user by the puzzle function - above.""" + This is the modal view presented to the user by the new_puzzle + function above. + """ + # First, read all the various data from the request meta = json.loads(metadata) hunt_id = meta['hunt_id'] state = payload['view']['state']['values'] name = state['name']['name']['value'] url = state['url']['url']['value'] + if 'rounds' in state: + rounds = [option['value'] for option in + state['rounds']['rounds']['selected_options']] + else: + rounds = [] + new_rounds = state['new_rounds']['new_rounds']['value'] + + # Before doing anything, reject this puzzle if a puzzle already + # exists with the same URL. + if url: + existing = find_puzzle_for_url(turb, hunt_id, url) + if existing: + return submission_error( + "url", + "Error: A puzzle with this URL already exists.") # Create a Slack-channel-safe puzzle_id - puzzle_id = re.sub(r'[^a-zA-Z0-9_]', '', name).lower() + puzzle_id = puzzle_id_from_name(name) # Create a channel for the puzzle hunt_dash_channel = "{}-{}".format(hunt_id, puzzle_id) @@ -349,61 +691,41 @@ def puzzle_submission(turb, payload, metadata): "Error creating Slack channel {}: {}" .format(hunt_dash_channel, e.response['error'])) - puzzle_channel_id = response['channel']['id'] - - # Insert the newly-created puzzle into the database - table = turb.db.Table(hunt_id) - table.put_item( - Item={ - "channel_id": puzzle_channel_id, - "orig_channel_name": hunt_dash_channel, - "solution": [], - "status": 'unsolved', - "name": name, - "puzzle_id": puzzle_id, - "url": url, - } - ) - - return lambda_ok - -def rename_channel_to_solved(turb, puzzle): - orig_channel_name = puzzle['orig_channel_name'] - channel_id = puzzle['channel_id'] - newName = orig_channel_name + '-solved' - turb.slack_client.conversations_rename(channel=channel_id, - name=newName) - -# XXX: This duplicates functionality eith events.py:set_channel_description -def set_channel_topic(turb, puzzle): - channel_id = puzzle['channel_id'] - name = puzzle['name'] - url = puzzle.get('url', None) - sheet_url = puzzle.get('sheet_url', None) - state = puzzle.get('state', None) - status = puzzle['status'] - - description = '' - - if status == 'solved': - description += "SOLVED: `{}` ".format('`, `'.join(puzzle['solution'])) + channel_id = response['channel']['id'] - description += name + # Add any new rounds to the database + if new_rounds: + for round in new_rounds.split(','): + # Drop any leading/trailing spaces from the round name + round = round.strip() + # Ignore any empty string + if not len(round): + continue + rounds.append(round) + turb.table.put_item( + Item={ + 'hunt_id': hunt_id, + 'SK': 'round-' + round + } + ) - links = [] + # Insert the newly-created puzzle into the database + item={ + "hunt_id": hunt_id, + "SK": "puzzle-{}".format(puzzle_id), + "puzzle_id": puzzle_id, + "channel_id": channel_id, + "solution": [], + "status": 'unsolved', + "name": name, + } if url: - links.append("<{}|Puzzle>".format(url)) - if sheet_url: - links.append("<{}|Sheet>".format(sheet_url)) - - if len(links): - description += "({})".format(', '.join(links)) + item['url'] = url + if rounds: + item['rounds'] = rounds + turb.table.put_item(Item=item) - if state: - description += " {}".format(state) - - turb.slack_client.conversations_setTopic(channel=channel_id, - topic=description) + return lambda_ok def state(turb, body, args): """Implementation of the /state command @@ -412,18 +734,21 @@ def state(turb, body, args): stand or what's needed.""" channel_id = body['channel_id'][0] - channel_name = body['channel_name'][0] - (puzzle, table) = channel_is_puzzle(turb, channel_id, channel_name) + old_puzzle = puzzle_for_channel(turb, channel_id) - if not puzzle: - return bot_reply("Sorry, this is not a puzzle channel.") + if not old_puzzle: + return bot_reply( + "Sorry, the /state command only works in a puzzle channel") - # Set the state field in the database + # Make a copy of the puzzle object + puzzle = old_puzzle.copy() + + # Update the puzzle in the database puzzle['state'] = args - table.put_item(Item=puzzle) + turb.table.put_item(Item=puzzle) - set_channel_topic(turb, puzzle) + puzzle_update_channel_and_sheet(turb, puzzle, old_puzzle=old_puzzle) return lambda_ok @@ -435,33 +760,103 @@ def solved(turb, body, args): The args string should be a confirmed solution.""" channel_id = body['channel_id'][0] - channel_name = body['channel_name'][0] user_name = body['user_name'][0] - (puzzle, table) = channel_is_puzzle(turb, channel_id, channel_name) + old_puzzle = puzzle_for_channel(turb, channel_id) - if not puzzle: + if not old_puzzle: return bot_reply("Sorry, this is not a puzzle channel.") + if not args: + return bot_reply( + "Error, no solution provided. Usage: `/solved SOLUTION HERE`") + + # Make a copy of the puzzle object + puzzle = old_puzzle.copy() + # Set the status and solution fields in the database puzzle['status'] = 'solved' puzzle['solution'].append(args) - table.put_item(Item=puzzle) + if 'state' in puzzle: + del puzzle['state'] + turb.table.put_item(Item=puzzle) # Report the solution to the puzzle's channel slack_send_message( turb.slack_client, channel_id, "Puzzle mark solved by {}: `{}`".format(user_name, args)) + # Also report the solution to the hunt channel + hunt = find_hunt_for_hunt_id(turb, puzzle['hunt_id']) + slack_send_message( + turb.slack_client, hunt['channel_id'], + "Puzzle <{}|{}> has been solved!".format( + puzzle['channel_url'], + puzzle['name']) + ) + # And update the puzzle's description - set_channel_topic(turb, puzzle) + puzzle_update_channel_and_sheet(turb, puzzle, old_puzzle=old_puzzle) - # And rename the sheet to prefix with "SOLVED: " - turbot.sheets.renameSheet(turb, puzzle['sheet_url'], 'SOLVED: ' + puzzle['name']) + return lambda_ok - # Finally, rename the Slack channel to add the suffix '-solved' - rename_channel_to_solved(turb, puzzle) +commands["/solved"] = solved + + +def hunt(turb, body, args): + """Implementation of the /hunt command + + The (optional) args string can be used to filter which puzzles to + display. The first word can be one of 'all', 'unsolved', or + 'solved' and can be used to display only puzzles with the given + status. Any remaining text in the args string will be interpreted + as search terms. These will be split into separate terms on space + characters, (though quotation marks can be used to include a space + character in a term). All terms must match on a puzzle in order + for that puzzle to be included. But a puzzle will be considered to + match if any of the puzzle title, round title, puzzle URL, puzzle + state, or puzzle solution match. Matching will be performed + without regard to case sensitivity and the search terms can + include regular expression syntax. + """ + + channel_id = body['channel_id'][0] + response_url = body['response_url'][0] + + terms = None + if args: + # The first word can be a puzzle status and all remaining word + # (if any) are search terms. _But_, if the first word is not a + # valid puzzle status ('all', 'unsolved', 'solved'), then all + # words are search terms and we default status to 'unsolved'. + split_args = args.split(' ', 1) + status = split_args[0] + if (len(split_args) > 1): + terms = split_args[1] + if status not in ('unsolved', 'solved', 'all'): + terms = args + status = 'unsolved' + else: + status = 'unsolved' + + # Separate search terms on spaces (but allow for quotation marks + # to capture spaces in a search term) + if terms: + terms = shlex.split(terms) + + hunt = hunt_for_channel(turb, channel_id) + + if not hunt: + return bot_reply("Sorry, this channel doesn't appear to " + + "be a hunt or puzzle channel") + + blocks = hunt_blocks(turb, hunt, puzzle_status=status, search_terms=terms) + + requests.post(response_url, + json = { 'blocks': blocks }, + headers = {'Content-type': 'application/json'} + ) return lambda_ok -commands["/solved"] = solved +commands["/hunt"] = hunt