Last active
March 26, 2021 02:03
-
-
Save alsmola/37aba9b8e6282987fa1f118a2f6af7a2 to your computer and use it in GitHub Desktop.
Template for Lambda interactions handler for Serverless Slack Block Kit application
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"context" | |
"encoding/json" | |
"fmt" | |
"net/url" | |
"strings" | |
"github.com/aws/aws-lambda-go/events" | |
"github.com/aws/aws-lambda-go/lambda" | |
"github.com/slack-go/slack" | |
) | |
// Handler is our lambda handler invoked by the `lambda.Start` function call | |
func Handler(ctx context.Context, request events.APIGatewayProxyRequest) (events.APIGatewayProxyResponse, error) { | |
var payload slack.InteractionCallback | |
sv, err := slack.NewSecretsVerifier(request.MultiValueHeaders, "your-signing-token") | |
if err != nil { | |
return events.APIGatewayProxyResponse{}, err | |
} | |
if _, err := sv.Write([]byte(request.Body)); err != nil { | |
return events.APIGatewayProxyResponse{}, err | |
} | |
if err := return sv.Ensure(); err != nil { | |
return events.APIGatewayProxyResponse{}, err | |
} | |
err := json.Unmarshal([]byte(parseBody(request.Body)), &payload) | |
if err != nil { | |
return events.APIGatewayProxyResponse{}, err | |
} | |
switch payload.Type { | |
case slack.InteractionTypeBlockActions: | |
// Do things here | |
case slack.InteractionTypeViewSubmission: | |
// Do things here | |
case slack.InteractionTypeShortcut: | |
// Do things here | |
default: | |
err = fmt.Errorf("Unrecognized payload type: %s", payload) | |
} | |
if err != nil { | |
errorText := fmt.Sprintf("Error handling interaction: %s", err.Error()) | |
} | |
return event, err | |
} | |
func parseBody(body string) string { | |
decodedValue, _ := url.QueryUnescape(body) | |
data := strings.Trim(decodedValue, ":payload=") | |
return data | |
} | |
func main() { | |
lambda.Start(Handler) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment