This is a Slack bot that creates backlinks when you link messages. It's written using the Servant web framework for Haskell, and the slack-web Slack library.
It also supports backlinking Linear tickets when they are mentioned on Slack by adding an attached Slack message to the tickets.
Here is the app manifest you can use to set up the Slack app on the Slack API site:
display_information:
name: Slacklinker
features:
app_home:
home_tab_enabled: true
messages_tab_enabled: true
messages_tab_read_only_enabled: false
bot_user:
display_name: Slacklinker
always_online: true
oauth_config:
redirect_urls:
- https://YOUR_SERVICE/oauth_redirect
scopes:
bot:
# read chat messages
- channels:history
# join itself to channels
- channels:join
# find public channels
- channels:read
# send messages
- chat:write
# send reactions to messages
- reactions:write
# read the team URL
- team:read
# take commands via IM
- im:history
# know which IMs it is in (?!)
- im:read
# read files sent in DMs for updating user emoji
- files:read
# find users by email
- users:read
# find users by email
- users:read.email
settings:
event_subscriptions:
request_url: https://YOUR_SERVICE/webhook
bot_events:
- app_home_opened
- channel_created
- channel_left
- file_shared
- message.channels
- message.im
org_deploy_enabled: false
socket_mode_enabled: false
token_rotation_enabled: false
Additionally, on the "App Home" panel, you have to enable "Messages tab" and "Allow users to send Slash commands and messages from the messages tab" as well as "Home Tab".
This app is developed and deployed using Nix. You can get a development shell
with haskell-language-server and all the tools you need with nix develop
.
To deploy it, you can equivalently use the packages.${system}.default
attribute from flake.nix
or the build
attribute of release.nix
(which are
identical). Before starting the application (result/bin/slacklinker
), your
service manager should run result/db/migrate.sh
to run the database
migrations.
Some basic configuration is done via environment variables:
Corresponding to the values in the "Basic Information" pane of the Slack API site:
SLACK_CLIENT_SECRET
SLACK_SIGNING_SECRET
SLACK_CLIENT_ID
Corresponding to your database:
POSTGRES_CONNECTION_STRING
is a Postgres connection string likepostgresql://slacklinker:yourpassword@localhost:5432/slacklinker
Corresponding to your OpenTelemetry tracing service (this is the recommended way to debug and monitor Slacklinker):
OTEL_SERVICE_NAME=slacklinker
OTEL_EXPORTER_OTLP_ENDPOINT
(for Honeycomb,https://api.honeycomb.io
)OTEL_EXPORTER_OTLP_HEADERS
(for Honeycomb,x-honeycomb-team=YOUR-API-KEY
)
You can set some runtime configuration settings in the database using
one-off-task set-setting
. A full list of these is in
src/Slacklinker/Settings/Types.hs
.
Make Slacklinker not backlink to posts by these apps. This is helpful in making sure that Slacklinker won't backlink to itself. It is recommended to put Slacklinker's own app id here.
BLOCKED_APP_IDS=appid1,appid2
Linear integration is optional and is not visible if not configured.
For Linear integration (backlinking Linear tickets with Slack message attachments on the tickets), create a Linear app.
The redirect URL should be given as https://YOUR-SLACKLINKER/linear/oauth_redirect
.
Configure the following settings in Slacklinker's environment variables:
-
LINEAR_CLIENT_ID
is the Client ID from the Linear App page. -
LINEAR_CLIENT_SECRET
is the Signing Secret from the Linear App page. -
SLACKLINKER_HOST
is the unqualified Slacklinker domain, i.e.slacklinker.example.com
.This is required to make redirect URLs for Linear OAuth2.
Then, you can link Linear by visiting App Home (the DMs with Slacklinker, on the home tab). If it's not visible, make sure it's enabled in the Slack app API settings.
Slacklinker will try linking any Linear ticket identifiers matching a known Linear Team for any given Slack workspace.
However, the list of teams is not updated automatically.
To update them, you can run one-off-task update-all-linear-teams
(which should be put in a cron job in a real deployment) or the IM command update_linear_teams
.
Once you have the application running at some public URL, you need to authorize it with OAuth2.
To do this, go to https://YOUR_SERVICE/authorize
. You will be redirected to
Slack to authorize the application.
After authorizing Slacklinker on your workspace, unless you intend to run a
public instance, you should immediately disable AllowRegistration
:
bin/one-off-task set-setting --settingName AllowRegistration --value false
(note that one-off-task needs to have the same environment variables as the service)
Once Slacklinker is authorized, you can send the bot a private message
join_all
, which will have the bot join all existing public non-shared Slack
channels.
The bot will automatically join any newly created public channels, so no further action is needed.
Since slack-web does not (currently) support Slack's Socket Mode, you need a public request URL to run Slacklinker. This is most easily achieved with something like ngrok in development and your preferred infrastructure in production.
We recommend using direnv
and nix-direnv
to get a
working environment for working on slacklinker.
You can see a sample for .envrc.local
at ./.envrc.local.sample.
The database is, by default, provisioned by process-compose
and will work automatically once you run process-compose up
in a terminal in a Nix shell in the Slacklinker repo.
If you want to use system postgres, set DONT_PROCESS_COMPOSE
in .envrc.local
.
If you do a database schema change, you will need to generate a migration. These use the Refinery CLI, which basically just runs SQL. You can get Persistent to generate the outline of the migration like so:
$ cabal run one-off-task -- suggest-migrations --migrationName your_migration_name
Use scripts/update-golden.sh SOME_GOLDEN_DIR
to update golden snapshot test
files.
Set log level with LOG_LEVEL=debug
and SQL log level with LOG_SQL=debug
environment variables.
Some Haskell dependencies (such as tmp-postgress and slack-web) are overriden from source in ./nix/deps. To update, use cabal2nix
(available in your dev shell via nix develop).
cabal2nix "${GITHUB_URI}" > "./nix/deps/${PACKAGE_NAME}.nix"
That command will grab the latest git head from the repo. To get a specific version you can use --revision
.