Giter Site home page Giter Site logo

joesepi / openwhisk-slackapp Goto Github PK

View Code? Open in Web Editor NEW

This project forked from ibm-cloud/openwhisk-slackapp

0.0 2.0 0.0 3.5 MB

A serverless Slack app built with Slack Events API and IBM Cloud Functions

License: Other

JavaScript 67.73% Batchfile 15.29% Shell 16.98%

openwhisk-slackapp's Introduction

A serverless Slack app built with IBM Cloud Functions and Slack Events API

This sample shows how to build a serverless Slack app using Slack Events API to receive events, with IBM Cloud Functions to process these events.

A previous version of this sample was using API Connect to expose the actions as HTTP endpoints. With the introduction of web actions in Cloud Functions this was no longer needed. You can browse this tag to view the code using API Connect.

Overview

Built using IBM Bluemix, the app uses:

  • Cloud Functions - to implement the app bot and commands
  • Cloudant - to keep track of app installations
  • and Slack Events API.

When a user installs the app in a Slack team, or interacts with a bot user, or uses a custom command, Slack calls the app implementation. Slack will talk directly with IBM Cloud Functions.

From the perspective of the developer of the Slack app, there is no server involved, only actions in a serverless environment. Furthermore the code is not running if no user interacts with the app and if the app gets popular, it will benefit from IBM Cloud Functions scalability.

Architecture

architecture_diagram digraph G { node [fontname = "helvetica"] rankdir=LR user -> slack slack -> openwhisk openwhisk -> cloudant slack [shape=square style=filled color="%23e9a820" fontcolor=white label="%23 Slack"] openwhisk [shape=circle style=filled color="%23325c80" fontcolor=white label="Cloud Functions"] cloudant [shape=circle style=filled color="%2372c7e7" fontcolor=white label="Cloudant"] } architecture_diagram )

In this sample, we will:

  • create the Slack app in Slack,
  • prepare the Cloud Functions environment, creating the actions implementing our Slack app,
  • complete the integration by updating the endpoints in the Slack app,
  • add our Slack app to a Slack team,
  • test our Slack app.

Requirements

To deploy this app, you need:

Your own Slack team is recommended if you want to play with the integration without impacting others.

Create the Slack app

  1. Proceed to the new app creation in Slack

  2. Type a name for your app, select your Slack team.

  3. Click Create

  4. View the App Credentials

We will need the Client ID, Client Secret and Verification Token in the next steps.

At this stage, we will put the configuration of the Slack app on hold. For the next app configuration steps to work we need to have our actions up and running.

Deploy the IBM Cloud Functions

Get the code

  • Clone the app to your local environment from your terminal using the following command:

    git clone https://github.com/IBM-Bluemix/openwhisk-slackapp.git
    
  • or Download and extract the source code from this archive

Create the Bluemix Cloudant service

  1. Open the IBM Bluemix console

  2. Create a Cloudant NoSQL DB service instance named cloudant-for-slackapp

  3. Open the Cloudant service dashboard and create a new database named registrations

  4. Select the database

  5. Create a new document.

  6. Replace the default JSON with the content of the file cloudant-designs.json

Deploy from Linux or macOS

  1. Copy the file named template.local.env into local.env

    cp template.local.env local.env
    
  2. Get the service credentials for the Cloudant service created above and set CLOUDANT_url in local.env to the corresponding value (url). Make sure you take the full url including the username and password https://username:[email protected].

  3. Set the values for SLACK_CLIENT_ID, SLACK_CLIENT_SECRET, SLACK_VERIFICATION_TOKEN - these are the App Credentials we've seen in the previous steps.

  4. Ensure your bx wsk command line interface is property configured with:

    bx wsk list
    

    This shows the packages, actions, triggers and rules currently deployed in your namespace.

  5. Create the actions:

    ./deploy.sh --install
    

    If all goes well it outputs:

    Creating slackapp package
    ok: created package slackapp
    Adding app registration command
    ok: created action slackapp/slackapp-register
    Adding app event processing
    ok: created action slackapp/slackapp-event
    Adding app command processing
    ok: created action slackapp/slackapp-command
    OAuth URL:
    https://openwhisk.ng.bluemix.net/api/v1/web/<org_space>/slackapp/slackapp-register
    Command URL:
    https://openwhisk.ng.bluemix.net/api/v1/web/<org_space>/slackapp/slackapp-command
    Event Subscription Request URL:
    https://openwhisk.ng.bluemix.net/api/v1/web/<org_space>/slackapp/slackapp-event
    

    Note: the script can also be used to --uninstall the Cloud Functions artifacts to --update the artifacts if you change the action code, or simply with --env to show the environment variables set in local.env.

Deploy from Windows

  1. Copy the file named template.local.cmd into local.cmd

    copy template.local.cmd local.cmd
    
  2. Get the service credentials for the Cloudant service created above and set CLOUDANT_url in local.cmd to the corresponding value (url). Make sure you take the full url including the username and password https://username:[email protected].

  3. Set the values for SLACK_CLIENT_ID, SLACK_CLIENT_SECRET, SLACK_VERIFICATION_TOKEN - these are the App Credentials we've seen in the previous steps.

  4. Ensure your bx wsk command line interface is property configured with:

    bx wsk list
    

    This shows the packages, actions, triggers and rules currently deployed in your namespace.

  5. Create the actions:

    deploy.cmd --install
    

    If all goes well it outputs:

    Creating slackapp package
    ok: created package slackapp
    Adding app registration command
    ok: created action slackapp/slackapp-register
    Adding app event processing
    ok: created action slackapp/slackapp-event
    Adding app command processing
    ok: created action slackapp/slackapp-command
    

    Note: the script can also be used to --uninstall the Cloud Functions artifacts to --update the artifacts if you change the action code, or simply with --env to show the environment variables set in local.cmd.

Our actions are ready. Back to the Slack app configuration.

Complete the Slack app configuration

Add a bot user

  1. Go to the Bot Users section of your Slack app

  2. Click Add a Bot User

  3. Name your bot, check the option to have your bot always online and click Add Bot User

Add an Event Subscription

  1. Go to the Event Subscriptions section of your app

  2. Enable Events

  3. Set the Request URL to the URL of the slack-event web action. The URL should look like https://openwhisk.ng.bluemix.net/api/v1/web/your-org_your-space/slackapp/slackapp-event

    Slack will contact this URL immediately. It should turn to Verified if the Cloud Functions configuration steps worked.

Listen to Bot messages

  1. Add a new Bot User Event for message.im

    This allows us to react to direct messages sent to a bot. We could select more event type but for our simple app will only deal with this one today.

  2. Save the changes

Set the callback URL for authentication

  1. Under OAuth and Permissions, add a new Redirect URL. This URL will be called when a user installs your application in a team. It should point to the slackapp-register web action. The URL should look like https://openwhisk.ng.bluemix.net/api/v1/web/your-org_your-space/slackapp/slackapp-register

  2. Click Save Changes

Create a new command

  1. Under Slash Commands, Create New Command

  2. Set the values

    1. Command: /myserverlessapp

    2. Request URL: URL of the slackapp-command web action. The URL should look like https://openwhisk.ng.bluemix.net/api/v1/web/your-org_your-space/slackapp/slackapp-command

    3. Short Description: A test command

    4. Usage Hint: [param1] [param2]

  3. Save

Our app is finally ready to be installed!

Add the app to your team

  1. To see what's happening behind the scene as Slack calls our actions, open a new command prompt and run

    bx wsk activation poll
    

    Leave it running. Actions triggered by Slack will show up there

  2. Go to Slack Add Button page

  3. Scroll down to the Add the Slack button section

  4. Pick you app from the dropdown list

  5. Uncheck incoming webhook

  6. Check commands and bot

  7. Press Add to Slack

  8. Select your team if needed

  9. Authorize the app

    After a few seconds, the app is installed. You should see logs appearing in the activation polling as Slack will be sending the registration info we will use later to interact with Slack channels and users.

    In your web browser, you should see Registration was successful. You can try the command in Slack or send a direct message to the bot.

    Ideally you would redirect to another page once the registration is completed.

Test the integration

  1. Go into your team in Slack

  2. Send a direct message to our new bot friend

  3. The bot replies

  4. Go to the #general channel (although this could work from any place in Slack) and type /my you should see the custom command

  5. Try the command /myserverless two params as example

Code Structure

Cloud Functions - Deployment Script

File Description
deploy.cmd
deploy.sh
Helper script to install, uninstall, update the actions.

Cloud Functions - Actions

File Description
slackapp-register.js Handles the installation of the app in a team. It stores the authorization token in Cloudant for future use by the bot and commands.
slackapp-event.js Handles events triggered by the Events API. In this sample, it handles messages sent to the bot user and simply echoes the message sent by the user.
slackapp-command.js Handles custom commands. In this sample, it echoes the command parameters.

Contribute

Please create a pull request with your desired changes.

Troubleshooting

Cloud Functions

Polling activations is good start to debug the action execution. Run

bx wsk activation poll

and send a message to the bot or use a custom command.

License

See License.txt for license information.

openwhisk-slackapp's People

Contributors

l2fprod avatar

Watchers

Joe Sepi avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.