]> git.cworth.org Git - turbot/commitdiff
Remove code (previously disabled) to invite users to new puzzle channel
authorCarl Worth <cworth@cworth.org>
Thu, 31 Dec 2020 21:53:27 +0000 (13:53 -0800)
committerCarl Worth <cworth@cworth.org>
Thu, 31 Dec 2020 21:59:33 +0000 (13:59 -0800)
Instead, add a message to the hunt channel with a link to the new
puzzle channel whenever a new puzzle is created.

turbot/events.py
turbot/hunt.py [new file with mode: 0644]
turbot/interaction.py

index 80fbaa05a1bee74def79b723ecf602820accd8f1..03c97e18cfd17960176d50ae80674503fb15d563 100644 (file)
@@ -1,9 +1,9 @@
 from turbot.blocks import (
     section_block, text_block, button_block, actions_block, divider_block
 )
-import turbot.slack
 from turbot.sheets import sheets_create, sheets_create_for_puzzle
 from turbot.slack import slack_send_message, slack_channel_members
+from turbot.hunt import find_hunt_for_hunt_id
 from boto3.dynamodb.conditions import Key
 
 TURBOT_USER_ID = 'U01B9QM4P9R'
@@ -246,37 +246,6 @@ def puzzle_channel_created(turb, channel_name, channel_id):
     # Get the new sheet_url into the channel description
     set_channel_description(turb, puzzle)
 
-    # Lookup and invite all users from this hunt to this new puzzle
-    #    hunts_table = turb.db.Table('hunts')
-    #    response = hunts_table.scan(
-    #        FilterExpression='hunt_id = :hunt_id',
-    #        ExpressionAttributeValues={':hunt_id': hunt_id}
-    #    )
-    #
-    #    if 'Items' in response:
-    if False:
-        hunt_channel_id = response['Items'][0]['channel_id']
-
-        # Find all members of the hunt channel
-        members = turbot.slack.slack_channel_members(turb.slack_client,
-                                                     hunt_channel_id)
-
-        # Filter out Turbot's own ID to avoid inviting itself
-        members = [m for m in members if m != TURBOT_USER_ID]
-
-        slack_send_message(
-            turb.slack_client, channel_id,
-            "Inviting all members from the hunt channel: "
-            + "<#{}>".format(hunt_channel_id))
-
-        # Invite those members to the puzzle channel (in chunks of 500)
-        cursor = 0
-        while cursor < len(members):
-            turb.slack_client.conversations_invite(
-                channel=channel_id,
-                users=members[cursor:cursor + 500])
-            cursor += 500
-
     # And finally, give a welcome message with some documentation
     # on how to update the state of the puzzle in the database.
     welcome_msg = (
@@ -326,6 +295,15 @@ def puzzle_channel_created(turb, channel_name, channel_id):
             section_block(text_block(solved_msg))
         ])
 
+    # Finally, finally, notify the hunt channel about the new puzzle
+    hunt = find_hunt_for_hunt_id(turb, puzzle['hunt_id'])
+    slack_send_message(
+        turb.slack_client, hunt['channel_id'],
+        "New puzzle available: <{}|{}>".format(
+            puzzle['channel_url'],
+            puzzle['name'])
+    )
+
     return lambda_success
 
 def channel_created(turb, event):
diff --git a/turbot/hunt.py b/turbot/hunt.py
new file mode 100644 (file)
index 0000000..87e47fa
--- /dev/null
@@ -0,0 +1,18 @@
+def find_hunt_for_hunt_id(turb, hunt_id):
+    """Given a hunt ID find the database item for that hunt
+
+    Returns None if hunt ID is not found, otherwise a
+    dictionary with all fields from the hunt's row in the table,
+    (channel_id, active, hunt_id, name, url, sheet_url, etc.).
+    """
+
+    response = turb.table.get_item(
+        Key={
+            'hunt_id': hunt_id,
+            'SK': 'hunt-{}'.format(hunt_id)
+        })
+
+    if 'Item' in response:
+        return response['Item']
+    else:
+        return None
index 31d554942f580d11566ddfb9b91b15122e865c5a..b6fa7d7e12efc8cfd5c4809d3ea5ee91ef98413b 100644 (file)
@@ -1,5 +1,6 @@
 from slack.errors import SlackApiError
 from turbot.blocks import input_block, section_block, text_block
+from turbot.hunt import find_hunt_for_hunt_id
 import turbot.rot
 import turbot.sheets
 import turbot.slack
@@ -286,23 +287,6 @@ def channel_is_hunt(turb, channel_id):
 
     return response['Items'][0]
 
-def find_hunt_for_hunt_id(turb, hunt_id):
-    """Given a hunt ID find the database for for that hunt
-
-    Returns None if hunt ID is not found, otherwise a
-    dictionary with all fields from the hunt's row in the table,
-    (channel_id, active, hunt_id, name, url, sheet_url, etc.).
-
-    """
-    turbot_table = turb.db.Table("turbot")
-
-    response = turbot_table.get_item(Key={'hunt_id': hunt_id})
-
-    if 'Item' in response:
-        return response['Item']
-    else:
-        return None
-
 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