2022-08-15 09:24:32 +00:00
|
|
|
# Mastodon group bot
|
|
|
|
This is a bot which implements group functionality in Mastodon.
|
|
|
|
|
2022-08-25 23:34:01 +00:00
|
|
|
## Features
|
|
|
|
* Repost toots
|
|
|
|
* Welcome message of new members
|
|
|
|
* Limit of toots per hour
|
2022-09-01 11:31:27 +00:00
|
|
|
* Duplicate protection
|
2022-11-25 16:06:47 +00:00
|
|
|
* Reply protection (if thread broken)
|
2022-09-09 18:37:17 +00:00
|
|
|
* Order limit
|
|
|
|
* Notification cleaning
|
2022-09-01 11:31:27 +00:00
|
|
|
* Logging
|
2022-08-25 23:34:01 +00:00
|
|
|
* Admin commands
|
2022-08-15 09:24:32 +00:00
|
|
|
|
2022-08-26 10:56:21 +00:00
|
|
|
### Admin commands
|
2022-11-25 16:06:47 +00:00
|
|
|
* boost \<Toot ID>
|
2022-08-26 10:56:21 +00:00
|
|
|
* unboost \<Toot ID>
|
|
|
|
* delete \<Toot ID>
|
|
|
|
|
2022-08-25 23:34:01 +00:00
|
|
|
# Configuration
|
2022-08-15 09:24:32 +00:00
|
|
|
The bot is configured in a JSON file that looks like this:
|
|
|
|
```
|
|
|
|
{
|
2022-09-08 12:26:25 +00:00
|
|
|
"Server": "https://example.com",
|
|
|
|
"ClientID": "0000000000000000000000000000000000000000000",
|
|
|
|
"ClientSecret": "0000000000000000000000000000000000000000000",
|
|
|
|
"AccessToken": "0000000000000000000000000000000000000000000",
|
|
|
|
"WelcomeMessage": "We have a new member in our group. Please love and favor",
|
|
|
|
"NotFollowedMessage": "you are not followed",
|
|
|
|
"Max_toots": 2,
|
|
|
|
"Toots_interval": 12,
|
|
|
|
"Duplicate_buf": 10,
|
|
|
|
"Order_limit": 1,
|
|
|
|
"Del_notices_interval": 30,
|
|
|
|
"Admins": ["admin@example.com"]
|
2022-08-15 09:24:32 +00:00
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
# Building
|
|
|
|
```
|
|
|
|
go mod init mastodon-group-bot
|
|
|
|
go mod tidy
|
|
|
|
go build
|
|
|
|
```
|
|
|
|
|
2022-08-25 23:34:01 +00:00
|
|
|
# Setup services
|
2022-08-28 16:37:43 +00:00
|
|
|
For first make dirs, copy config and binary
|
2022-08-25 23:34:01 +00:00
|
|
|
```
|
2022-08-26 10:56:21 +00:00
|
|
|
mkdir /etc/mastodon-group-bot
|
|
|
|
mkdir /var/lib/mastodon-group-bot
|
2022-08-28 16:37:43 +00:00
|
|
|
mkdir /var/log/mastodon-group-bot
|
2022-08-26 10:56:21 +00:00
|
|
|
chown nobody /var/lib/mastodon-group-bot
|
2022-08-28 16:37:43 +00:00
|
|
|
chown nobody /var/log/mastodon-group-bot
|
2022-08-26 10:56:21 +00:00
|
|
|
cp config.json /etc/mastodon-group-bot/config.json
|
2022-08-28 16:37:43 +00:00
|
|
|
cp mastodon-group-bot /usr/bin/mastodon-group-bot
|
2022-08-25 23:34:01 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
## Systemd
|
|
|
|
```
|
|
|
|
cp ./services/systemd/mastodon-group-bot.service /etc/systemd/system/mastodon-group-bot.service
|
|
|
|
```
|
2022-08-15 09:24:32 +00:00
|
|
|
|
2022-08-25 23:34:01 +00:00
|
|
|
## OpenRC
|
|
|
|
```
|
|
|
|
cp ./services/openrc/mastodon-group-bot /etc/init.d/mastodon-group-bot
|
|
|
|
```
|
|
|
|
|
|
|
|
# Usage
|
2022-08-15 09:24:32 +00:00
|
|
|
```
|
2022-08-28 16:37:43 +00:00
|
|
|
mastodon-group-bot -config <path> -db <path> -log <path>
|
2022-11-25 16:06:47 +00:00
|
|
|
```
|