Archive Bot

Slack bot helper for managing outdated and very small channels.

Using

This bot is not currently on the Rust registry. To add to a project, add the following to your [dependencies] in Cargo.toml.

toml archive_bot = { git = "https://github.com/reiniiriarios/archive-bot" }

See the examples directory for implementation details.

Configuration

Archive bot needs a bit of data to get started:

rust let config = archive_bot::Config { token: env::var("SLACK_BOT_TOKEN").expect("Error: environment variable SLACK_BOT_TOKEN is not set."), notification_channel_id: "A01A02A03A04", filter_prefixes: vec!["-"], message_headers: vec![ "Hey, you've got some cleaning up to do!", "Hey boss, take a look at these, will ya?", ], stale_after: 2 * 7 * 24 * 60 * 60, small_channel_threshold: 3, };

Or, using default values:

rust let config = archive_bot::Config { token: env::var("SLACK_BOT_TOKEN").expect("Error: environment variable SLACK_BOT_TOKEN is not set."), notification_channel_id: "A01A02A03A04", ..archive_bot::Config::default() };

Setting Up Slack

See Slack documentation for basic app setup.

Generate your Bot User OAuth Token on the Slack API Admin > [Your App] > Features > OAuth & Permissions.

Your app needs the following scopes:

Logging

Archive Bot implements the log crate and does not produce output directly. See the examples directory for an implementation of simplelog.

Finding Slack Channel ID

To find the ID of a Slack channel, you can click the channel name for more info and find it at the bottom.

Screenshot of Slack channel info with an arrow pointing to the Channel ID at the bottom of the window.