]> git.cworth.org Git - turbot/blob - turbot/events.py
Turbot home: Disable the "Hunts you can join" section
[turbot] / turbot / events.py
1 from turbot.blocks import (
2     section_block, text_block, button_block, actions_block, divider_block
3 )
4 from turbot.sheets import sheets_create, sheets_create_for_puzzle
5 from turbot.slack import slack_send_message, slack_channel_members
6 from turbot.hunt import find_hunt_for_hunt_id
7 from boto3.dynamodb.conditions import Key
8
9 TURBOT_USER_ID = 'U01B9QM4P9R'
10
11 events = {}
12
13 lambda_success = {'statusCode': 200}
14 lambda_error = {'statusCode': 400}
15
16 def channel_url(channel_id):
17     return "https://halibutthatbass.slack.com/archives/{}".format(channel_id)
18
19 def puzzle_block(puzzle):
20     name = puzzle['name']
21     status = puzzle['status']
22     solution = puzzle['solution']
23     channel_id = puzzle['channel_id']
24     url = puzzle.get('url', None)
25     sheet_url = puzzle.get('sheet_url', None)
26     state = puzzle.get('state', None)
27     status_emoji = ''
28     solution_str = ''
29
30     if status == 'solved':
31         status_emoji = ":ballot_box_with_check:"
32     else:
33         status_emoji = ":white_square:"
34
35     if len(solution):
36         solution_str = "*`" + '`, `'.join(solution) + "`*"
37
38     links = []
39     if url:
40         links.append("<{}|Puzzle>".format(url))
41     if sheet_url:
42         links.append("<{}|Sheet>".format(sheet_url))
43
44     state_str = ''
45     if state:
46         state_str = "\n{}".format(state)
47
48     puzzle_text = "{}{} <{}|{}> ({}){}".format(
49         status_emoji, solution_str,
50         channel_url(channel_id), name,
51         ', '.join(links), state_str
52     )
53
54     return section_block(text_block(puzzle_text))
55
56 def round_blocks(round, puzzles):
57
58     round_text = "*Round: {}*".format(round)
59
60     blocks = [
61         section_block(text_block(round_text)),
62     ]
63
64     for puzzle in puzzles:
65         if 'rounds' not in puzzle:
66             continue
67         if round not in puzzle['rounds']:
68             continue
69         blocks.append(puzzle_block(puzzle))
70
71     return blocks
72
73 def hunt_details_blocks(turb, hunt):
74     name = hunt['name']
75     hunt_id = hunt['hunt_id']
76     channel_id = hunt['channel_id']
77
78     response = turb.table.query(
79         KeyConditionExpression=(
80             Key('hunt_id').eq(hunt_id) &
81             Key('SK').begins_with('puzzle-')
82         )
83     )
84     puzzles = response['Items']
85
86     # Compute the set of rounds across all puzzles
87     rounds = set()
88     for puzzle in puzzles:
89         if 'rounds' not in puzzle:
90             continue
91         for round in puzzle['rounds']:
92             rounds.add(round)
93
94     hunt_text = "*<{}|{}>*".format(channel_url(channel_id), name)
95
96     blocks = [
97         section_block(text_block(hunt_text)),
98     ]
99
100     # Construct blocks for each round
101     for round in rounds:
102         blocks += round_blocks(round, puzzles)
103
104     # Also blocks for any puzzles not in any round
105     stray_puzzles = [puzzle for puzzle in puzzles if 'rounds' not in puzzle]
106     if len(stray_puzzles):
107         stray_text = "*Puzzles with no asigned round*"
108         blocks.append(section_block(text_block(stray_text)))
109         for puzzle in stray_puzzles:
110             blocks.append(puzzle_block(puzzle))
111
112     blocks.append(divider_block())
113
114     return blocks
115
116 def hunt_link_block(turb, hunt):
117
118     name = hunt['name']
119     channel_id = hunt['channel_id']
120
121     hunt_link = "*<{}|{}>*".format(channel_url(channel_id), name)
122
123     return section_block(text_block(hunt_link)),
124
125 def home(turb, user_id):
126     """Returns a view to be published as the turbot home tab for user_id
127
128     The return value is a dictionary suitable to be published to the
129     Slack views_publish API."""
130
131     # Behave cleanly if there is no "turbot" table at all yet.
132     try:
133         response = turb.table.scan(
134             IndexName="is_hunt_index",
135         )
136         hunts = response['Items']
137     except Exception:
138         hunts = []
139
140     my_hunt_blocks = []
141     available_hunt_blocks = []
142     for hunt in hunts:
143         if not hunt['active']:
144             continue
145         if user_id in slack_channel_members(turb.slack_client,
146                                             hunt['channel_id']):
147             my_hunt_blocks += hunt_details_blocks(turb, hunt)
148         else:
149             available_hunt_blocks.append(hunt_link_block(turb, hunt))
150
151     if len(my_hunt_blocks):
152         my_hunt_blocks = [
153             section_block(text_block("*Hunts you belong to:*")),
154             divider_block(),
155             * my_hunt_blocks
156         ]
157     else:
158         my_hunt_blocks = [
159             section_block(text_block("You do not belong to any hunts"))
160         ]
161
162     if len(available_hunt_blocks):
163         available_hunt_blocks = [
164             section_block(text_block("*Hunts you can join:*")),
165             divider_block(),
166             * available_hunt_blocks
167         ]
168
169     return {
170         "type": "home",
171         "blocks": [
172             * my_hunt_blocks,
173             actions_block(button_block("New hunt", "new_hunt"))
174         ]
175     }
176
177 def app_home_opened(turb, event):
178     """Handler for the app_home_opened event
179
180     This event occurs when a user visits the home tab for the turbot app.
181     In response to this event we need to publish a view for the user."""
182
183     user_id = event['user']
184     view = home(turb, user_id)
185     turb.slack_client.views_publish(user_id=user_id, view=view)
186     return lambda_success
187
188 events['app_home_opened'] = app_home_opened
189
190 def hunt_channel_created(turb, channel_name, channel_id):
191     """Creates a Google sheet for a newly-created hunt channel"""
192
193     # First see if we can find an entry for this hunt in the database.
194     # If not, simply return an error and let Slack retry
195     response = turb.table.query(
196         IndexName='channel_id_index',
197         KeyConditionExpression=Key("channel_id").eq(channel_id)
198     )
199     if 'Items' not in response:
200         print("Warning: Cannot find channel_id {} in turbot table. "
201               .format(channel_id) + "Letting Slack retry this event")
202         return lambda_error
203
204     item = response['Items'][0]
205
206     if 'sheet_url' in item:
207         print("Info: channel_id {} already has sheet_url {}. Exiting."
208               .format(channel_id, item['sheet_url']))
209         return lambda_success
210
211     # Before launching into sheet creation, indicate that we're doing this
212     # in the database. This way, if we take too long to create the sheet
213     # and Slack retries the event, that next event will see this 'pending'
214     # string and cleanly return (eliminating all future retries).
215     item['sheet_url'] = 'pending'
216     turb.table.put_item(Item=item)
217
218     # Also, let the channel users know what we are up to
219     slack_send_message(
220         turb.slack_client, channel_id,
221         "Welcome to the channel for the {} hunt! ".format(item['name'])
222         + "Please wait a minute or two while I create some backend resources.")
223
224     # Create a sheet for the hunt
225     sheet = sheets_create(turb, item['name'])
226
227     # Update the database with the URL of the sheet
228     item['sheet_url'] = sheet['url']
229     turb.table.put_item(Item=item)
230
231     # Message the channel with the URL of the sheet
232     slack_send_message(turb.slack_client, channel_id,
233                        "Sheet created for this hunt: {}".format(sheet['url']))
234
235     # Mark the hunt as active in the database
236     item['active'] = True
237     turb.table.put_item(Item=item)
238
239     # Message the hunt channel that the database is ready
240     slack_send_message(
241         turb.slack_client, channel_id,
242         "Thank you for waiting. This hunt is now ready to begin! "
243         + "Use `/puzzle` to create puzzles for the hunt.")
244
245     return lambda_success
246
247 def set_channel_description(turb, puzzle):
248     channel_id = puzzle['channel_id']
249     description = puzzle['name']
250     url = puzzle.get('url', None)
251     sheet_url = puzzle.get('sheet_url', None)
252
253     links = []
254     if url:
255         links.append("<{}|Puzzle>".format(url))
256     if sheet_url:
257         links.append("<{}|Sheet>".format(sheet_url))
258
259     if len(links):
260         description += "({})".format(', '.join(links))
261
262     turb.slack_client.conversations_setPurpose(channel=channel_id,
263                                                purpose=description)
264     turb.slack_client.conversations_setTopic(channel=channel_id,
265                                              topic=description)
266
267 def puzzle_channel_created(turb, channel_name, channel_id):
268     """Creates sheet and invites user for a newly-created puzzle channel"""
269
270     # First see if we can find an entry for this puzzle in the database.
271     # If not, simply return an error and let Slack retry
272     response = turb.table.query(
273         IndexName="channel_id_index",
274         KeyConditionExpression=Key("channel_id").eq(channel_id),
275     )
276     if 'Items' not in response:
277         print("Warning: Cannot find channel_id {} in turbot table. "
278               .format(channel_id) + "Letting Slack retry this event")
279         return lambda_error
280
281     puzzle = response['Items'][0]
282
283     if 'sheet_url' in puzzle:
284         print("Info: channel_id {} already has sheet_url {}. Exiting."
285               .format(channel_id, puzzle['sheet_url']))
286         return lambda_success
287
288     # Before launching into sheet creation, indicate that we're doing this
289     # in the database. This way, if we take too long to create the sheet
290     # and Slack retries the event, that next event will see this 'pending'
291     # string and cleanly return (eliminating all future retries).
292     puzzle['sheet_url'] = 'pending'
293     puzzle['channel_url'] = channel_url(channel_id)
294     turb.table.put_item(Item=puzzle)
295
296     # Create a sheet for the puzzle
297     sheet = sheets_create_for_puzzle(turb, puzzle)
298
299     # Update the database with the URL of the sheet
300     puzzle['sheet_url'] = sheet['url']
301     turb.table.put_item(Item=puzzle)
302
303     # Get the new sheet_url into the channel description
304     set_channel_description(turb, puzzle)
305
306     # And finally, give a welcome message with some documentation
307     # on how to update the state of the puzzle in the database.
308     welcome_msg = (
309         "Welcome! This channel is the primary place to "
310         + "discuss things as the team works together to solve the "
311         + "puzzle '{}'. ".format(puzzle['name'])
312     )
313
314     if 'url' in puzzle:
315         welcome_msg += (
316             "See the <{}|puzzle itself> ".format(puzzle['url'])
317             + "for what was originally presented to us."
318         )
319
320     sheet_msg = (
321         "Actual puzzle solving work will take place within the following "
322         + "<{}|shared spreadsheet> ".format(puzzle['sheet_url'])
323     )
324
325     state_msg = (
326         "Whenever the status of the puzzle progress changes "
327         + "significantly, please type `/state` with a brief message "
328         + "explaining where things stand. This could be something "
329         + "like `/state Grid is filled. Need insight for extraction.` "
330         + "or `/state Nathan has printed this and is cutting/assembling`. "
331         + "It's especially important to put information in `/state` "
332         + "when you step away from a puzzle so the next team members "
333         + "to arrive will know what is going on."
334     )
335
336     solved_msg = (
337         "When a puzzle has been solved, submitted, and the solution is "
338         + "confirmed, please type `/solved THE PUZZLE ANSWER HERE`. All "
339         + "information given in `/state` and `/solved` will be presented "
340         + "in this channel's topic as well as in the hunt overview "
341         + "(which is available by selecting \"Turbot\" from the Slack "
342         + "list of members)."
343     )
344
345     turb.slack_client.chat_postMessage(
346         channel=channel_id,
347         text="New puzzle: {}".format(['name']),
348         blocks=[
349             section_block(text_block(welcome_msg)),
350             section_block(text_block(sheet_msg)),
351             section_block(text_block(state_msg)),
352             section_block(text_block(solved_msg))
353         ])
354
355     # Finally, finally, notify the hunt channel about the new puzzle
356     hunt = find_hunt_for_hunt_id(turb, puzzle['hunt_id'])
357     slack_send_message(
358         turb.slack_client, hunt['channel_id'],
359         "New puzzle available: <{}|{}>".format(
360             puzzle['channel_url'],
361             puzzle['name'])
362     )
363
364     return lambda_success
365
366 def channel_created(turb, event):
367
368     channel = event['channel']
369     channel_id = channel['id']
370     channel_name = channel['name']
371     creator = channel['creator']
372
373     # Ignore any channels that turbot didn't create
374     if creator != TURBOT_USER_ID:
375         print("channel_created: Not a turbot-created channel. Exiting.")
376         return lambda_success
377
378     # The presence of a hyphen determines whether this is a puzzle
379     # channel or a hunt channel.
380     if '-' in channel_name:
381         return puzzle_channel_created(turb, channel_name, channel_id)
382     else:
383         return hunt_channel_created(turb, channel_name, channel_id)
384
385 events['channel_created'] = channel_created