From: Carl Worth Date: Fri, 23 Oct 2020 00:40:43 +0000 (-0700) Subject: Add an implementation of the /solved command X-Git-Url: https://git.cworth.org/git?a=commitdiff_plain;h=6f0c85d45a8e9d0f4d8105e356e82a0efa3691f1;p=turbot Add an implementation of the /solved command For marking a known solution to a puzzle. --- diff --git a/turbot/interaction.py b/turbot/interaction.py index cb69467..20b2d7d 100644 --- a/turbot/interaction.py +++ b/turbot/interaction.py @@ -411,3 +411,25 @@ def state(turb, body, args): return lambda_ok commands["/state"] = state + +def solved(turb, body, args): + """Implementation of the /solved command + + The args string should be a confirmed solution.""" + + channel_id = body['channel_id'][0] + channel_name = body['channel_name'][0] + + (puzzle, table) = channel_is_puzzle(turb, channel_id, channel_name) + + if not puzzle: + return bot_reply("Sorry, this is not a puzzle channel.") + + # Set the status and solution fields in the database + puzzle['status'] = 'solved' + puzzle['solution'].append(args) + table.put_item(Item=puzzle) + + return lambda_ok + +commands["/solved"] = solved