Awiteb
c3972b3566
The bot can run in dry-run mode, i.e. log that it has blocked users but will not actually block them Signed-off-by: Awiteb <a@4rs.nl> |
||
---|---|---|
locales | ||
src | ||
.gitignore | ||
Cargo.lock | ||
Cargo.toml | ||
cliff.toml | ||
DCO | ||
LICENSE | ||
README.md | ||
rust-toolchain.toml | ||
rustfmt.toml | ||
sumi.toml | ||
taplo.toml |
Forgejo Guardian
Simple Forgejo instance guardian, banning users and alerting admins based on certain regular expressions (regex)
Installation
You can let cargo build the binary for you, or build it yourself.
Build it
cargo-install
Tip
This will install the binary in
~/.cargo/bin/forgejo-guardian
. Make sure to add this directory to yourPATH
. If you want to update it, runcargo install ...
again.
cargo install --git https://git.4rs.nl/awiteb/forgejo-guardian
cargo-install
(from source)
Tip
Then when you want to update it, pull the changes and run
cargo install --path .
again.
git clone https://git.4rs.nl/awiteb/forgejo-guardian
cd forgejo-guardian
cargo install --path .
Build (from source)
Tip
The binary will be in
./target/release/forgejo-guardian
.
git clone https://git.4rs.nl/awiteb/forgejo-guardian
cd forgejo-guardian
cargo build --release
Configuration
We use TOML
format for configuration, the default configuration file is /app/forgejo-guardian.toml
, but you can specify a different one with FORGEJO_GUARDIAN_CONFIG
environment variable.
Structure
In our configuration file, we have three main sections:
forgejo
: Forgejo instance configurationexpressions
: Regular expressions to match againsttelegram
: Telegram bot configuration
forgejo
Forgejo configuration section, with the following fields:
instance_url
: Forgejo instance URL (must be HTTPS or HTTP)token
: Token to use to get the new users and ban them, requiresread:admin
andwrite:admin
scopes.
[forgejo]
instance_url = "https://forgejo.example"
token = "your-token"
expressions
Expressions configuration section, with the following fields:
ban
: Regular expressions to match against to ban the usersus
: Regular expressions to match against to alert the admins
ban
and sus
are tables, and each one have the following fields:
usernames
: Regular expressions to match against the usernamesfull_names
: Regular expressions to match against the full namesbiographies
: Regular expressions to match against the biographiesemails
: Regular expressions to match against the emailswebsites
: Regular expressions to match against the websiteslocations
: Regular expressions to match against the locations
[expressions.ban]
usernames = ['^admin.*$']
[expressions.sus]
usernames = ['^mod.*$']
telegram
Telegram bot configuration section, with the following fields:
token
: Telegram bot tokenchat
: Chat ID to send the alerts to (Can be a group or a channel or a user)lang
: Language to use for the alerts (Currently onlyar-sa
,en-us
andru-ru
are supported)
[telegram]
token = "your-token"
chat = 00000000000
lang = "en-us"
Running the guardian
After you have the configuration file ready, you can run the guardian with the following command:
FORGEJO_GUARDIAN_CONFIG=/path/to/your/config.toml forgejo-guardian
You can remove the FORGEJO_GUARDIAN_CONFIG
environment variable from the command if it's already set, or the file in the default location /app/forgejo-guardian.toml
.
Adding a new language
If you would like to contribute by adding a new language, you can do that by adding your language file in the locales
directory, and then add it to Lang
enum in src/telegram_bot/mod.rs
file. Then you can use it in the configuration file.
License
This project is licensed under the AGPL-3.0-or-later license.