@adobe/spacecat-shared-slack-client
v1.5.32
Published
Shared modules of the Spacecat Services - Slack Client
Downloads
917
Maintainers
Keywords
Readme
Spacecat Shared - Slack Client
This package provides a set of tools for interacting with Slack workspaces, specifically designed to cater to different organizational needs. It facilitates message posting, channel management, user invitations, and file uploads, with support for both standard and elevated privileges.
Installation
Install the package using npm:
npm install @adobe/spacecat-shared-slack-clientFeatures
- Client Creation: Utilize a factory method to create Slack clients for different targets, with or without elevated privileges.
- Message Posting: Send messages to channels or threads, including advanced formatting with Slack Block Builder.
- Channel Management: Create Slack channels and manage their details.
- User Invitations: Invite users to channels via email.
- File Uploading: Upload files to Slack channels.
Configuration
The package uses environment variables for configuration. Set the following variables in your environment:
Configuring Tokens
To configure tokens for your application, follow these steps:
Visit the main page of your Slack app at https://api.slack.com/apps.
Navigate to the "OAuth & Permissions" page and locate the "Scope" section. Here, you can add scopes to your Slack app based on the specific methods you intend to use from the Slack API. For example, if your app requires file upload functionality, ensure you add the
files:readandfiles:writescopes.Locate your Slack bot token under the "Bot User OAuth Token" section on the same page. You will need to provide this token to the
SlackClientin your application.For information on the scopes needed for each Slack API method, refer to the documentation. The required scopes for each API method are listed in the "Bot tokens" row. As an example, to use the
postMessageAPI method, the required scope ischat:write, as documented in https://api.slack.com/methods/chat.postMessage.
Scopes required for the current implementation
All Bot Tokens:
chat:write
files:read
files:write
team:readScopes needed for elevated Bot:
channels:manage (for public channels)
channels:read (check if user is in a channel or a channel exists)
channels:write.invites
channels:write.topic
groups:read (check if user is in a channel or a channel exists)
groups:write (for private channels)
groups:write.invites
groups:write.topic
users:read (to lookup users, required by users:read.email)
users:read.email (to lookup users by their emails)Standard Client
SLACK_TOKEN_WORKSPACE_INTERNALSLACK_TOKEN_WORKSPACE_EXTERNAL
Elevated Client
SLACK_TOKEN_WORKSPACE_INTERNAL_ELEVATEDSLACK_TOKEN_WORKSPACE_EXTERNAL_ELEVATEDSLACK_OPS_CHANNEL_WORKSPACE_INTERNALSLACK_OPS_CHANNEL_WORKSPACE_EXTERNALSLACK_OPS_ADMINS_WORKSPACE_INTERNALSLACK_OPS_ADMINS_WORKSPACE_EXTERNAL
Usage
Client Creation
Create a Slack client instance:
import { BaseSlackClient, ElevatedSlackClient, SLACK_TARGETS } from '@adobe/spacecat-shared-slack-client';
const context = {}; // Your context object
const target = SLACK_TARGETS.WORKSPACE_INTERNAL; // or WORKSPACE_EXTERNAL
const slackClient = BaseSlackClient.createFrom(context, target);
// elevated client:
const elevatedclient = ElevatedSlackClient.createFrom(context, target);Or, for an ElevatedSlackClient, use the elevatedSlackClientWrapper:
import { elevatedSlackClientWrapper, SLACK_TARGETS } from '@adobe/spacecat-shared-slack-client';
// .. Define `run` function ..
export const main = wrap(run)
.with(elevatedSlackClientWrapper, { slackTarget: SLACK_TARGETS.WORKSPACE_EXTERNAL })
.with(secrets, { name: resolveSecretsName });Posting a Message
await slackClient.postMessage({
channel: 'channel-id',
text: 'Hello, world!',
});Creating a Channel
const channel = await slackClient.createChannel('channel-name', 'Topic', 'Description', true);Inviting Users
await slackClient.inviteUsersByEmail('channel-id', [{ email: '[email protected]' }]);Uploading a File
await slackClient.fileUpload({
file: 'path/to/file.png',
filename: 'file.png',
channel_id: 'channel-id',
});Testing
To run tests:
npm testLinting
Lint your code:
npm run lintCleaning
To remove node_modules and package-lock.json:
npm run cleanAdditional Information
- Repository: GitHub
- Issue Tracking: GitHub Issues
- License: Apache-2.0
