npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@adobe/spacecat-shared-slack-client

v1.3.24

Published

Shared modules of the Spacecat Services - Slack Client

Downloads

1,910

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-client

Features

  • 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:

  1. Visit the main page of your Slack app at https://api.slack.com/apps.

  2. 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:read and files:write scopes.

  3. 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 SlackClient in your application.

  4. 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 postMessage API method, the required scope is chat: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:read

Scopes 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_INTERNAL
  • SLACK_TOKEN_WORKSPACE_EXTERNAL

Elevated Client

  • SLACK_TOKEN_WORKSPACE_INTERNAL_ELEVATED
  • SLACK_TOKEN_WORKSPACE_EXTERNAL_ELEVATED
  • SLACK_OPS_CHANNEL_WORKSPACE_INTERNAL
  • SLACK_OPS_CHANNEL_WORKSPACE_EXTERNAL
  • SLACK_OPS_ADMINS_WORKSPACE_INTERNAL
  • SLACK_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 test

Linting

Lint your code:

npm run lint

Cleaning

To remove node_modules and package-lock.json:

npm run clean

Additional Information