Modern ActivityPub compliant server, designed for simplicity and accessibility. Includes calendar, news and sharing economy features to empower your federated community. We spent a year testing this for a hyper local indymedia codebase.
 
 
 
 
 
Go to file
Bob Mottram 03a43f64f1 Fix posts 2019-07-06 22:58:56 +01:00
img Name on logo 2019-07-04 21:56:04 +01:00
LICENSE Initial 2019-06-28 19:55:29 +01:00
Makefile Initial 2019-06-28 19:55:29 +01:00
README.md Reduce some line lengths 2019-07-06 18:00:22 +01:00
acceptreject.py Follow request test passes 2019-07-06 20:24:52 +01:00
announce.py Reduce some line lengths 2019-07-06 18:00:22 +01:00
auth.py Reduce some line lengths 2019-07-06 18:00:22 +01:00
cache.py Reduce some line lengths 2019-07-06 18:00:22 +01:00
capabilities.py Optionally specify capabilities list 2019-07-06 11:38:48 +01:00
code-of-conduct.md Add CoC 2019-07-04 22:52:39 +01:00
config.py Configuration file functions 2019-07-05 10:20:54 +01:00
daemon.py Secondary format for individual posts 2019-07-06 22:33:46 +01:00
epicyon.py Fix posts 2019-07-06 22:58:56 +01:00
follow.py Missing basedir 2019-07-06 20:54:09 +01:00
httpsig.py Fixing public key lookup 2019-07-04 15:36:29 +01:00
inbox.py Follow request test passes 2019-07-06 20:24:52 +01:00
like.py Adding capabilities to posts 2019-07-06 11:33:57 +01:00
person.py Comma 2019-07-05 23:17:06 +01:00
posts.py Fix posts 2019-07-06 22:58:56 +01:00
session.py Always allow capabilities requests 2019-07-06 12:03:51 +01:00
tests.py Follow request test passes 2019-07-06 20:24:52 +01:00
threads.py Move tests to their own file 2019-06-30 21:14:03 +01:00
utils.py Follow request test passes 2019-07-06 20:24:52 +01:00
webfinger.py Tidying 2019-07-05 17:13:31 +01:00

README.md

A minimal ActivityPub server.

Based on the specification: https://www.w3.org/TR/activitypub

Also: https://raw.githubusercontent.com/w3c/activitypub/gh-pages/activitypub-tutorial.txt

https://blog.dereferenced.org/what-is-ocap-and-why-should-i-care

https://alexcastano.com/what-is-activity-pub

This project is currently pre alpha and not recommended for any real world uses.

Goals

  • A minimal ActivityPub server, comparable to an email MTA.
  • AGPLv3+
  • Server-to-server and client-to-server protocols supported.
  • Implemented in a common language (Python 3)
  • Opt-in federation. Federate with a well-defined list of instances.
  • Keyword filtering.
  • Being able to define roles and skills, similar to the Pursuance project.
  • Sharings collection, similar to the gnusocial sharings plugin
  • Resistant to flooding, hellthreads, etc.
  • Support content warnings, reporting and blocking.
  • http signatures and basic auth.
  • Compatible with http (onion addresses), https and dat.
  • Minimal dependencies.
  • Capabilities based security
  • Data minimization principle. Configurable post expiry time.
  • Commandline interface. If there's a GUI it should be a separate project.
  • Designed for intermittent connectivity. Assume network disruptions.
  • Suitable for single board computers.

Install

sudo pacman -S tor python-pip python-pysocks python-pycryptodome python-beautifulsoup4
sudo pip install commentjson

Running Tests

To run the unit tests:

python3 epicyon.py --tests

To run the network tests. These simulate instances exchanging messages.

python3 epicyon.py --testsnetwork

Viewing Public Posts

To view the public posts for a person:

python3 epicyon.py --posts nickname@domain

If you want to view the raw json:

python3 epicyon.py --postsraw nickname@domain

Account Management

To add a new account:

python3 epicyon.py --addaccount nickname@domain --password [yourpassword]

To remove an account (be careful!):

python3 epicyon.py --rmaccount nickname@domain

To change the password for an account:

python3 epicyon.py --changepassword nickname@domain newpassword

Running the Server

To run with defaults:

python3 epicyon.py

In a browser of choice (but not Tor browser) you can then navigate to:

http://localhost:8085/users/admin

If it's working then you should see the json actor for the default admin account.

For a more realistic installation you can run on a defined domain and port:

python3 epicyon.py --domain [name] --port 8000 --https

You will need to proxy port 8000 through your web server and set up CA certificates as needed.

By default data will be stored in the directory in which you run the server, but you can also specify a directory:

python3 epicyon.py --domain [name] --port 8000 --https --path [data directory]

By default the server will federate with any others. You can limit this to a well-defined list with the --federate option.

python3 epicyon.py --domain [name] --port 8000 --https --federate domain1.net domain2.org domain3.co.uk