A small tool to deploy blocklist updates to a mastodon server using its API.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Julian-Samuel Gebühr 3dce62417e refactor: Cleaner solution for exportable dict 2 months ago
assets Add some documentation 2 months ago
mastodon_blocklist_deploy refactor: Cleaner solution for exportable dict 2 months ago
.drone.yml feat: Build docker image in CI 2 months ago
.gitignore Remove personal files and readd 3 months ago
DEVELOPMENT.md feat: Add Dockerfile for development and deployment 2 months ago
Dockerfile feat: Add Dockerfile for development and deployment 2 months ago
LICENSE Initial commit 3 months ago
README.md Add some documentation 2 months ago
blocklist.toml Change key names to comply with API names 3 months ago
poetry.lock Restructure project to make a valid poetry project, add script 2 months ago
pyproject.toml Restructure project to make a valid poetry project, add script 2 months ago

README.md

mastodon-blocklist-deploy

A small tool to deploy blocklist updates to a mastodon server using its API.

Concept

The idea is to maintain a blocklist in a simple structured file in this repository. All changes need to be deployed to the mastodon server, this is supposed to be automated with Drone CI.

In order to compare the list entries, we can read the whole blocklist using the get endpoint. At the same time we read the whole file in the repository, make a comparision and remove unblocked domains from the blocklist and add newly added.

Since we have several attributes for a domain blog, a simple .txt file might not be sufficient. We probably want to set the severity, reject_media, reject_reports and comments. This means we need a human-readable, easily python-readable and structured file format. Since Python 3.11 got native support for toml and it supports Array of Tables, I'd prefer to use this.

Basic usage

$ mastodon_blocklist_deploy -h
usage: mastodon_blocklist_deploy [-h] [-s SERVER] [-t TOKEN] [-i INPUT_FILE] [-r REMOTE_BLOCKLIST] [-o OUTPUT] [-v] [-n] {diff,deploy,export}

Deploy blocklist updates to a mastodon server

positional arguments:
  {diff,deploy,export}  Either use 'diff' to check the difference between local blockĺist and the blocklist on the server, 'deploy' to apply the current local blocklist or 'export' to export the remote blocklist into a local file.

options:
  -h, --help            show this help message and exit
  -s SERVER, --server SERVER
                        The address of the server where you want to deploy (e.g. mastodon.social)
  -t TOKEN, --token TOKEN
                        Authorization token
  -i INPUT_FILE, --input-file INPUT_FILE
                        The blocklist to use
  -r REMOTE_BLOCKLIST, --remote-blocklist REMOTE_BLOCKLIST
                        The remote blocklist as json for debugging reasons
  -o OUTPUT, --output OUTPUT
                        Filename where to export the blocklist
  -v, --verbose
  -n, --no-delete       Do not delete existing blocks

Obtain a server token

  1. Be an admin on the server.
  2. Add an application in the Mastodon Web Client (https://yourdomain.org/settings/applications/new. Make sure to select the permissions admin:read and admin:write.
  3. Copy the Token (last value in the table)

Typical workflow

  1. Export the current blocklist from the server
mastodon_blocklist_deploy export -s yourserver -t yourtoken -o blocklist.toml
  1. Manually add something to the blocklist
[[instances]]
name = "instance-to-block.com"
domain = "instance-to-block.com"
severity = "suspend"
reject_media = true
reject_reports = true
public_comment = "X, Y and Z"
private_comment = "We discussed this after X and Y and now that Z happend we decided to block"
  1. Check the difference between the local and remote blocklist
mastodon_blocklist_deploy diff -s yourserver -t yourtoken -i blocklist.toml
  1. Apply the local blocklist to the server
mastodon_blocklist_deploy apply -s yourserver -t yourtoken -i blocklist.toml