image.png
profile picture Vishaka Gayathri D
6 min read Mar 3, 2022

Serverless Integration of Slack with Alexa

Introduction

Smart devices such as Amazon’s firestick and echo, Google nest, etc have made their way to our homes. I decided to leverage these devices to increase my productivity. Most of my workplace communications happen over slack channels. I made some tweaks to send my slack notifications to echo dot. There is also a possibility to filter messages based on your needs. For example, if I am expecting an important message regarding a meeting, I can filter the messages I receive and get notified by echo only if I get the message containing the word “meeting”. I eliminate the need to keep checking slack or sift through the other messages.

Let’s split the entire process into sub tasks:

  1. Notify Me Skill

    Notify Me is an Alexa skill that we will use to notify Alexa devices. We can also design custom skills but for our purpose this skill is apt.

  2. AWS CDK App

    We will use the CDK platform to create a serverless app. We create an API Gateway to which the slack events are passed. The API request triggers a Lambda that sends the notification message.

  3. Slack Events API

    Create a new App in your slack workspace and set the necessary permissions. It will require a Request URL.

blog.png

Step 1: Enable Notify Me Skill

  1. Go to the following link and log into your amazon account connected with the device. Click on the enable button. In case of trouble, try enabling the skill via the Alexa app on your mobile.

  2. Give your device the command “Alexa, open Notify Me” and the skill will introduce itself and send your access code via email.

  3. Once you have the access code, your device is set to receive notifications. If you did not receive your access code, follow the steps here to get them.

Step 2: The CDK App

  1. Install NodeJS suitable for your build from here.

  2. Install AWS CLI by following the instructions here.

  3. Install AWS CDK from terminal/command prompt:

    npm install -g aws-cdk
  4. Configure your aws profile by following the instructions here.

  5. Create a project directory and navigate to that directory:

    mkdir notify-lex
    cd notify-lex
  6. Initialize the app using the following command:

    cdk init app --language javascript
  7. Replace the code in the stack file (notify-lex/lib/notify-lex-stack.js) and save it.

    const cdk = require('aws-cdk-lib');
    const lambda = cdk.aws_lambda;
    const apigateway = cdk.aws_apigateway;
    
    class NotifyLexStack extends cdk.Stack {
    constructor(scope, id, props) {
        super(scope, id, props);
    
        const notifyFunction = new lambda.Function(this, 'Notify Function', {
        runtime: lambda.Runtime.NODEJS_14_X,
        handler: 'index.handler',
        code: lambda.Code.fromAsset('lambda')
        });
    
        const api = new apigateway.RestApi(this, "Notification API", {
        restApiName: "Notification Service",
        description: "This api is hit when we have an incoming notification"
        });
    
        const notifyIntegration = new apigateway.LambdaIntegration(notifyFunction);
        api.root.addResource('slack').addResource('events').addMethod('POST', notifyIntegration);
    
        }
    }
    
    module.exports = { NotifyLexStack }
  8. Create a folder called lambda and navigate inside it. Create an npm package and install the dependency axios.

    mkdir lambda
    cd lambda
    npm init -y
    npm install axios
    cd ..
  9. Create a file called index.js and type the following code and save it.

    const axios = require('axios');
    
    exports.handler = async (event, context, callback) => {
        const data = JSON.parse(event.body);
        const response = {
            statusCode: 200,
            body: data.challenge
        };
        return response;
    }
  10. Execute the command in terminal to deploy the CDK app. Type y to confirm the deployment.

    cdk deploy –profile <Your AWS profile name>
    Do you wish to deploy these changes (y/n)? y
  11. Once the app is deployed, you will see an output with the URL. Keep note of this URL.

Sample diagram of URL post deployment

Step 3: Creating a Slack App

  1. Follow the link here and sign in to your slack account. Click on Create an app. Choose From scratch from the given options.
img1.png
  1. Name your app and choose the workspace where you want to install it and click Create App.
img2.png
  1. This page contains an overview of your app in addition to important credentials.
img3.png
  1. Navigate to the OAuth & Permissions on the left sidebar and scroll down to the User Token Scopes section. Click Add an OAuth Scope and select all the below scopes.
img4.png
  1. Scroll up to the top of the OAuth & Permissions page and click Install App to Workspace. You’ll be led through Slack’s OAuth UI, where you should allow your app to be installed in your development workspace.
img5.png
  1. Once you authorize the installation, you’ll land on the OAuth & Permissions page and see a Bot User OAuth Access Token.
img6.png
  1. Click Event Subscriptions on the left sidebar. Toggle the switch labelled Enable Events.
img7.png
  1. Add your Request URL. Slack will send HTTP POST requests corresponding to events to this Request URL endpoint.The request URL will be <URL from previous step>/slack/events.

    Example:

    If this is the URL: https://vc8slpee9l.execute-api.region.amazonaws.com/prod

    Request URL will be: https://vc8slpee9l.execute-api.region.amazonaws.com/prod/slack/events

  2. It will automatically process on adding the URL and you should see the verified sign.


img9.png
  1. Scroll down to the Subscribe to events on behalf of users and select the below workspace events. Click on Save changes.
img10.png

Step 4: Final Integration

  1. Go to the CDK app and open the index.js file (notify-lex/lambda/index.js). Update the code and replace the ACCESS CODE with the one you received in Step 1.

    const axios = require('axios');
    
    exports.handler = async (event, context, callback) => {
        const data = JSON.parse(event.body);
        try {
            console.log(data);
            await axios({
                method: 'post',
                url: 'https://api.notifymyecho.com/v1/NotifyMe',
                data: {
                    accessCode: 'ACCESS CODE',
                    notification: `Message: ${data.event.text}`
                }
            });
        } catch (err) {
            console.log(err);
        } finally {
            const response = {
                statusCode: 200,
                body: 'User notified'
            };
            return response;
        }
    }
  2. Redeploy the app from terminal

    cdk deploy –profile <Your AWS profile name>
  3. Once you send a message in Slack, the Alexa device will notify you with an alarm tone and light up yellow. Ask for the message with the command, Alexa, What are my notifications?. Alexa will give you the message.

Uninstallation

  1. Delete CDK App.

    cdk destroy –profile <Your AWS profile name>
  2. Delete the App from the Slack workspace.

    Go to this link, select your app and scroll to the end of the page. Click on Delete App and confirm.

The repository can be found here.

service category

Innovate faster, and go farther with serverless-native application development. Explore limitless possibilities with AntStack's serverless solutions. Empowering your business to achieve your most audacious goals.

Build with us

Author(s)

Tags

Share this blog

Your Digital Journey deserves a great story.

Build one with us.

Recommended Blogs

cookie

These cookies are used to collect information about how you interact with this website and allow us to remember you. We use this information in order to improve and customize your browsing experience and for analytics and metrics about our visitors on this website.

If you decline, your information won’t be tracked when you visit this website. A single cookie will be used in your browser to remember your preference not to be tracked.

Build With Us