motzel / bl-bot

Beat Leader Discord bot

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Beat Leader Discord Bot

Disclaimer: I don't know what I'm doing, both in Rust and Discord territory. It may blow up in your face, be warned.

What is this project?

A simple Discord bot providing the following commands:

  • /bl-link / /bl-unlink, allowing to link user account to Beat Leader profile
  • /bl-replay, allowing to post replay according to set criteria along with links to BL replay and ArcViewer
  • /bl-profile, allowing to post user profile
  • /bl-add-auto-role / /bl-remove-auto-role, allowing a user (role management permission required) to configure the automatic setting of selected roles to server users based on their BL profile. The roles to be set up are grouped, and each role can be assigned a set of multiple conditions that must be met for it to be given.
  • /bl-set-log-channel, allowing to set the channel on which all role changes will be posted
  • /bl-set-profile-verification, allowing to set the profile verification requirement when linking a player's profile
  • /bl-set-clan-invitation / /bl-set-clan-invitation-code, allowing to set up self-sending by the user invitations to the clan without the involvement of the clan owner (NOTE: requires contacting NSGolova on BeatLeader discord to get OAuth application id and secret)
  • /bl-clan-invitation, allowing a user to send an invitation to join a clan on their own
  • /bl-show-settings, showing current server settings
  • /bl-export / /bl-import, allowing to export and import all bot data (bot owner only)

Setup

All of the following commands require a Rust environment installed on your computer.

  1. Copy config.example.toml as config.toml and/or config.dev.toml. The first will be used production, the second for development. If both are present dev one takes precedence.
  2. Register bot:
  • Go to Discord Developer Portal
  • Create New Application
  • Copy Discord Token (click Reset Token button on Bot tab to obtain it) and set discord_token in config.toml / config.dev.toml
  • If you want to use clan commands set client_id, client_secret and redirect_url in the oauth section of config.toml (get them from NSGolova on BeatLeader discord). In addition, you need to run a server that will receive the OAuth Authorization code and generate the corresponding Discord command. You can use this project for this purpose or write your own.
  1. Invite a bot to your server (replace <APP_ID> with your application ID, you can find it on General Information tab in Discord Developer Portal) https://discord.com/oauth2/authorize?client_id=<APP_ID>&scope=bot&permissions=2415937536 (required permissions: Manage roles, Embed links, Send Messages, Use Application Commands)
  2. Either download the latest version for your server architecture from the Releases page and run it, or build from source as described below. Make sure that the directory from which you run the bot includes the config.toml file, the assets directory from this repository, and empty .logs, .storage and .http-cache directories.

Build and run

cargo test && cargo run

After you launch and invite the bot to your server, it will be visible in the list of users, but inaccessible. The bot does not automatically register Discord commands globally, you have to do it manually. To do this, after logging into the account that owns the bot, issue the command @BL Bot register (use the name you gave it). The bot will respond by displaying 4 buttons that allow you to register or delete commands globally or only on this server.

Note: If you register commands globally remember that global commands can take up to 1 hour to update. During development, it is better to register them only on the test server, because they update immediately.

Setting up an automatic deployment using Github Actions

The description applies to Ubuntu Server 22.04 (x86_64), but it will look similar for other Linux distributions.

  1. Add deploy user and create deployments directory
sudo useradd -m -s /sbin/bash -d /home/deploy deploy
sudo -u deploy bash -c "mkdir -p /home/deploy/deployments"
  1. Install supervisor
sudo apt install supervisor
  1. Update /etc/supervisor/supervisord.conf
[unix_http_server]
file=/tmp/supervisor.sock
chown=deploy:deploy
chmod=0700

... 

[supervisorctl]
serverurl=unix:///tmp/supervisor.sock
  1. Restart supervisor service
 systemctl restart supervisor
  1. Add process configuration /etc/supervisor/conf.d/your-program-name.conf
[program:your-program-name]
directory=/home/deploy/deployments/your-program-name
command=/home/deploy/deployments/your-program-name/your-program-name
environment=RUST_LOG="your_program_name=debug"
autostart=true
autorestart=true
stopasgroup=true
killasgroup=true
user=deploy
numprocs=1
redirect_stderr=true
stdout_logfile=/home/deploy/deployments/your-program-name/.logs/your-program-name.log
stdout_logfile_maxbytes=20MB
stdout_logfile_backups=30
stopwaitsecs=30
  1. Update config and start program
supervisorctl update your-program-name
  1. Update program name in .deploy/deploy.sh and possibly the architecture of your server in .github/workflows/release.yml

  2. Create SSH keys

ssh-keygen -t ed25519 -C "your_email@example.com"

and copy public key contents to /home/deploy/.ssh/authorized_keys on your server. Make sure that both .ssh directory and /home/deploy/.ssh/authorized_keys file are owned by deploy:deploy and have 0700 and 0600 permissions, respectively.

  1. Add GitHub actions secrets (Settings/Secrets and variables/Actions)
  • SSH_PRIVATE_KEY - copy contents of your private SSH key
  • SSH_HOST - set it to your server IP address
  • SSH_USER - set it to deploy
  • DEPLOY_PATH - set it to /home/deploy/deployments
  1. Create /home/deployments/YOUR-PROGRAM-NAME/.http-cache, /home/deployments/YOUR-PROGRAM-NAME/.logs and /home/deploy/deployments/YOUR-PROGRAM-NAME/.storage directories. Copy assets folder as /home/deploy/deployments/YOUR-PROGRAM-NAME/assets. Copy config.example.toml as /home/deploy/deployments/YOUR-PROGRAM-NAME/config.toml and set it up.

Every time you want to deploy a new version, just add the vX.Y.Z (e.g. v0.1.1) tag to your commit and push the code to the repository.

About

Beat Leader Discord bot

License:GNU General Public License v3.0


Languages

Language:Rust 99.8%Language:HTML 0.2%Language:Shell 0.0%