ActivityPub relay in Rust
Go to file
2021-02-09 22:05:06 -06:00
docker/prod bro we are sledding 2021-02-09 22:05:06 -06:00
scss Don't style instance descriptions 2020-09-27 12:44:23 -05:00
src bro we are sledding 2021-02-09 22:05:06 -06:00
templates bro we are sledding 2021-02-09 22:05:06 -06:00
.env bro we are sledding 2021-02-09 22:05:06 -06:00
.gitignore Add container build script 2020-03-21 20:29:59 -05:00
Cargo.lock bro we are sledding 2021-02-09 22:05:06 -06:00
Cargo.toml bro we are sledding 2021-02-09 22:05:06 -06:00
diesel.toml whatamidoing 2020-03-14 21:05:40 -05:00
LICENSE Fix VERIFY_SIGNATURES config, add README 2020-03-19 22:23:10 -05:00
README.md Spelling 2020-04-23 12:10:40 -05:00

AodeRelay

A simple and efficient activitypub relay

Usage

To simply run the server, the command is as follows

$ ./relay

To learn about any other tasks, the --help flag can be passed

$ ./relay --help
relay 0.1.0
An activitypub relay

USAGE:
    relay [FLAGS] [OPTIONS]

FLAGS:
    -h, --help         Prints help information
    -j, --jobs-only    Only process background jobs, do not start the relay server
    -n, --no-jobs      Only run the relay server, do not process background jobs
    -u, --undo         Undo whitelisting or blocking domains
    -V, --version      Prints version information

OPTIONS:
    -b <blocks>...            A list of domains that should be blocked
    -w <whitelists>...        A list of domains that should be whitelisted

To add domains to the blocklist, use the -b flag and pass a list of domains

$ ./relay -b asonix.dog blimps.xyz

To remove domains from the blocklist, simply pass the -u flag along with -b

$ ./relay -ub asonix.dog blimps.xyz

The same rules apply for whitelisting domains, although domains are whitelisted with the -w flag

$ ./relay -w asonix.dog blimps.xyz
$ ./relay -uw asonix.dog blimps.xyz

Whitelisted domains are only checked against incoming activities if WHITELIST_MODE is enabled. Blocks can be published in the nodeinfo metadata by setting PUBLISH_BLOCKS to true

For advanced setups, it may be useful to run the relay API and the background tasks in separate processes, possibly on separate hosts. The -j and -n flags have been provided for this purpose. By passing -n, a relay can be spawned that handles no deliveries. By passing -j, a relay will not be spawned, but any deliveries existing in the database will be processed.

Subscribing

Mastodon admins can subscribe to this relay by adding the /inbox route to their relay settings. For example, if the server is https://relay.my.tld, the correct URL would be https://relay.my.tld/inbox.

Pleroma admins can subscribe to this relay by adding the /actor route to their relay settings. For example, if the server is https://relay.my.tld, the correct URL would be https://relay.my.tld/actor.

Supported Activities

  • Accept Follow {remote-actor}, this is a no-op
  • Reject Follow {remote-actor}, an Undo Follow is sent to {remote-actor}
  • Announce {anything}, {anything} is Announced to listening servers
  • Create {anything}, {anything} is Announced to listening servers
  • Follow {self-actor}, become a listener of the relay, a Follow will be sent back
  • Follow Public, become a listener of the relay
  • Undo Follow {self-actor}, stop listening on the relay, an Undo Follow will be sent back
  • Undo Follow Public, stop listening on the relay
  • Delete {anything}, the Delete {anything} is relayed verbatim to listening servers Note that this activity will likely be rejected by the listening servers unless it has been signed with a JSON-LD signature
  • Update {anything}, the Update {anything} is relayed verbatim to listening servers Note that this activity will likely be rejected by the listening servers unless it has been signed with a JSON-LD signature

Supported Discovery Protocols

  • Webfinger
  • NodeInfo

Configuration

By default, all these values are set to development values. These are read from the environment, or from the .env file in the working directory.

HOSTNAME=localhost:8080
ADDR=127.0.0.1
PORT=8080
DEBUG=true
WHITELIST_MODE=false
VALIDATE_SIGNATURES=false
HTTPS=false
DATABASE_URL=
PRETTY_LOG=true
PUBLISH_BLOCKS=false
MAX_CONNECTIONS=4 # how many postgres connections should be made

To run this server in production, you'll likely want to set most of them

HOSTNAME=relay.my.tld
ADDR=0.0.0.0
PORT=8080
DEBUG=false
WHITELIST_MODE=false
VALIDATE_SIGNATURES=true
HTTPS=true
DATABASE_URL=postgres://pg_user:pg_pass@pg_host:pg_port/pg_database
PRETTY_LOG=false
PUBLISH_BLOCKS=true
MAX_CONNECTIONS=16

Contributing

Unless otherwise stated, all contributions to this project will be licensed under the CSL with the exceptions listed in the License section of this file.

License

This work is licensed under the Cooperative Software License. This is not a Free Software License, but may be considered a "source-available License." For most hobbyists, self-employed developers, worker-owned companies, and cooperatives, this software can be used in most projects so long as this software is distributed under the terms of the CSL. For more information, see the provided LICENSE file. If none exists, the license can be found online here. If you are a free software project and wish to use this software under the terms of the GNU Affero General Public License, please contact me at asonix@asonix.dog and we can sort that out. If you wish to use this project under any other license, especially in proprietary software, the answer is likely no.