]> git.cworth.org Git - turbot/blobdiff - turbot_lambda/turbot_lambda.py
Defer all sheet creation until after the channel is created
[turbot] / turbot_lambda / turbot_lambda.py
index 59312c8b2e1e19e7b573b7e108cc2458384cb286..e19e96d801ab0b0ea7d7f502e2c66fa341883b1b 100644 (file)
@@ -4,22 +4,16 @@ import base64
 import boto3
 import requests
 import json
-import os
 import pickle
 from types import SimpleNamespace
 from google.auth.transport.requests import Request
 from googleapiclient.discovery import build
 
-import turbot.actions
-import turbot.commands
+import turbot.interaction
 import turbot.events
 
 ssm = boto3.client('ssm')
 
-response = ssm.get_parameter(Name='SLACK_SIGNING_SECRET', WithDecryption=True)
-slack_signing_secret = response['Parameter']['Value']
-os.environ['SLACK_SIGNING_SECRET'] = slack_signing_secret
-
 # Note: Late import here to have the environment variable above available
 from turbot.slack import slack_is_valid_request # noqa
 
@@ -130,10 +124,11 @@ def url_verification_handler(turb, body):
     }
 
 def event_callback_handler(turb, body):
-    type = body['event']['type']
+    event = body['event']
+    type = event['type']
 
     if type in turbot.events.events:
-        return turbot.events.events[type](turb, body)
+        return turbot.events.events[type](turb, event)
     return error("Unknown event type: {}".format(type))
 
 def turbot_interactive_or_slash_command(turb, event, context):
@@ -166,9 +161,9 @@ def turbot_interactive(turb, payload):
     if type == 'block_actions':
         return turbot_block_action(turb, payload)
     if type == 'view_submission':
-        return turbot.actions.view_submission(turb, payload)
+        return turbot.interaction.view_submission(turb, payload)
     if type == 'shortcut':
-        return turbot_shortcut(turb, payload);
+        return turbot_shortcut(turb, payload)
     return error("Unrecognized interactive type: {}".format(type))
 
 def turbot_block_action(turb, payload):
@@ -188,10 +183,10 @@ def turbot_block_action(turb, payload):
     avalue = action['value']
 
     if (
-            atype in turbot.actions.actions
-            and avalue in turbot.actions.actions[atype]
+            atype in turbot.interaction.actions
+            and avalue in turbot.interaction.actions[atype]
     ):
-        return turbot.actions.actions[atype][avalue](turb, payload)
+        return turbot.interaction.actions[atype][avalue](turb, payload)
     return error("Unknown action of type/value: {}/{}".format(atype, avalue))
 
 def turbot_shortcut(turb, payload):
@@ -216,7 +211,7 @@ def turbot_slash_command(turb, body):
     else:
         args = ''
 
-    if command in turbot.commands.commands:
-        return turbot.commands.commands[command](turb, body, args)
+    if command in turbot.interaction.commands:
+        return turbot.interaction.commands[command](turb, body, args)
 
     return error("Command {} not implemented".format(command))