CI

Discord as Code (dac)

A tool to manage Discord settings as a config, just like Infra as Code.

Prerequesites

Install the executable

Method 1 : with cargo

shell cargo install dac

To validate installation, run :

shell dac

Method 2 : standalone

Not yet available.

Create and get a Discord bot token

If you don't have created a bot yet, here's how to do it :

  1. Go to https://discord.com/developers/applications, login and create an application.
  2. Go to the created application, click on Bot on the sidebar and create a bot.
  3. Go to the created Bot page and copy the token (might need to create it first).

P.S.: The same bot can be used for all of your Discord servers :wink:

Add a bot to a Discord server (guild)

If your bot hasn't been already added to the server that you want to manage with dac, here's how do add it :

  1. On your bot's application page, go to OAuth2 on the sidebar
  2. In the General section, add a placeholder Redirect URL (can be http://localhost) and Save
  3. In the URL Generator section, select the identify scope. A new section for the redirect URL will appear, make sur to select one.
  4. Then also select the bot scope. A new pannel with Permissions will appear. dac only needs the Manage Roles and Manage Channels permissions, so you can select those.
  5. Navigate to the generated URL at the bottom of the page. This will bring you to an auth page, asking you to choose which server to add your bot to.
  6. Confirm and your bot should have been added to your server!

P.S.: You will need to redo those steps for every server

P.P.S.: You can change the bot's permissions directly in the Server Settings without redoing all those steps :wink:

To validate the bot's read access, run :

shell dac list

Commands

:warning: All commands needs the evironment variable DAC_DISCORD_BOT_TOKEN to be set.

list

List bot's accessible servers. If you don't see access to your server, make sure to add your bot to it.

save

Save a server (guild) configuration.

Arguments:

:warning: The saving functionality will never use templates. Therefore, the file could easily have a few hundred lines.

apply

Apply changes to a server based on a configuration file.

Arguments

Server configuration file

The configuration file can be either a JSON file (.json) or a YAML file (.yaml or .yml). It is used to describe the wanted state or a Discord server (guild).

Configuration file example (click to reveal)

```yaml roles: - name: '@everyone' permissions: - CHANGENICKNAME - VIEWCHANNEL - CONNECT - SPEAK - USEVAD - STREAM - REQUESTTOSPEAK - SENDMESSAGES - READMESSAGEHISTORY - CREATEPUBLICTHREADS - SENDMESSAGESINTHREADS - ADDREACTIONS - ATTACHFILES showinsidebar: true ismentionable: true

templates: roles: - name: team permissions: - CHANGENICKNAME - VIEWCHANNEL - CONNECT - SPEAK - USEVAD - STREAM - REQUESTTOSPEAK - SENDMESSAGES - READMESSAGEHISTORY - CREATEPUBLICTHREADS - SENDMESSAGESINTHREADS - ADDREACTIONS - ATTACHFILES showinsidebar: true ismentionable: true ```

roles

Fields

template.roles

Same as roles, but the name represents the template's name instead of the role's name.