This library allows using Slack with Wing.
- Events
- Direct Channel Messages
- Distribution Management
- Interactive Components
- Slash Commands
- Workflows
- Incoming Webhooks
Use npm
to install this library:
npm i @winglibs/slack
bring slack;
bring cloud;
let myBotToken = new cloud.Secret(name: "mybot_token");
let slackbot = new slack.App(token: myBotToken);
/// When registering events, the inflight function will be called with the context and event
/// The `ctx` is a reference to the context of the event, and provides client methods to interact with channels, threads, etc..
/// The `event` is the raw Json event data from Slack and can be used to extract information from the event
slackbot.onEvent("app_mention", inflight (ctx, event) => {
let message = new slack.Message();
message.addSection({
fields: [
{
type: slack.FieldType.mrkdwn,
text: "*Wow this is markdown!!*\ncool beans!!!"
}
]
});
ctx.channel.postMessage(message);
});
- Go to the Slack API Dashboard and create a new app.
- Select Create from Scratch.
- For the README example above, ensure you provide the following permissions:
app_mentions:read
chat:write
chat:write.public
channels:read
- Navigate to Events and subscribe to the following events:
app_mention
- Navigate to OAuth & Permissions and install the app to your workspace
- Copy the Bot User OAuth Token to your clipboard
- Navigate to Event Subscriptions and enable events, then subscribe to bot events:
app_mention
First lets configure our Slack bot token as a secret in the simulator.
wing secrets
When prompted, paste the Bot User OAuth Token you copied earlier.
Next when running in the Wing Simulator, you will need to expose the endpoint of the Slackbot API, this can be done through the simulator console by selecting Open tunnel for this endpoint
Take this URL and navigate back to your Slack App, under the Event Subscriptions section, paste the URL into the Request URL field and append /slack/events
to the end of the URL.
First lets configure our Slack bot token as a secret in AWS.
wing secrets -t tf-aws
When prompted, paste the Bot User OAuth Token you copied earlier.
Next, let's run the following command to deploy our app to AWS.
wing compile -t tf-aws
terraform -chdir=target/main.tfaws init
terraform -chdir=target/main.tfaws apply
After compiling and deploying your app using tf-aws
you there will be an endpoint called Slack_Request_Url
that is part of the terraform output. The URL should end with /slack/events
. It will look something like this:
Apply complete! Resources: 11 added, 0 changed, 0 destroyed.
Outputs:
App_Api_Endpoint_Url_E233F0E8 = "https://zgl8r8wsng.execute-api.us-east-1.amazonaws.com/prod"
App_Slack_Request_Url_FF26641D = "https://zgl8r8wsng.execute-api.us-east-1.amazonaws.com/prod/slack/events"
Navigate back to your Slack App, under the Event Subscriptions section, paste the URL into the Request URL field and append /slack/events
to the end of the URL.
If you want to post directly to a channel, you can do so by using the following code:
let postMessage = new cloud.Function(inflight () => {
let channel = bot.channel("NAME|ID");
channel.post("hello world!");
});
If you prefer to use a channel ID over a channel name, you can find the channel ID by right-clicking on the channel name and select View channel details
. The channel ID will be at the bottom of the popup modal.