A self-hosted, single-user, ActivityPub powered microblog.
Still in early development.
- Implements a basic ActivityPub server (with federation)
- Compatible with Mastodon and others (Pleroma, Hubzilla...)
- Also implements a remote follow compatible with Mastodon instances
- Exposes your outbox as a basic microblog
- Implements IndieAuth endpoints (authorization and token endpoint)
- U2F support
- You can use your ActivityPub identity to login to other websites/app
- Comes with an admin UI with notifications and the stream of people you follow
- Allows you to attach files to your notes
- Privacy-aware image upload endpoint that strip EXIF meta data before storing the file
- No JavaScript, that's it. Even the admin UI is pure HTML/CSS
- Easy to customize (the theme is written Sass)
- mobile-friendly theme
- with dark and light version
- Microformats aware (exports
h-feed
,h-entry
,h-cards
, ...) - Exports RSS/Atom/JSON feeds
- You stream/timeline is also available in an (authenticated) JSON feed
- Comes with a tiny HTTP API to help posting new content and and read your inbox/notifications
- Easy to "cache" (the external/public-facing microblog part)
- With a good setup, cached content can be served most of the time
- You can setup a "purge" hook to let you invalidate cache when the microblog was updated
- Deployable with Docker (Docker compose for everything: dev, test and deployment)
- Focused on testing
- The core ActivityPub code/tests are in Little Boxes
- Tested against the official ActivityPub test suite (report submitted)
- CI runs "federation" tests against two instances
- Manually tested against Mastodon
- Project is running an up-to-date instance
microblog.pub implements an ActivityPub server, it implements both the client to server API and the federated server to server API.
Activities are verified using HTTP Signatures or by fetching the content on the remote server directly.
$ git clone https://github.com/tsileo/microblog.pub
$ cd microblog.pub
$ pip install -r requirements.txt
$ make css
$ cp -r config/me.sample.yml config/me.yml
$ make password
Password: <enter a password; nothing will show on screen>
$2b$12$iW497g...
Edit config/me.yml
to add the above-generated password, like so:
username: 'username'
name: 'Your Name'
icon_url: 'https://you-avatar-url'
domain: 'your-domain.tld'
summary: 'your summary'
https: true
pass: $2b$12$iW497g...
Note: some of the docker yml files use version 3 of docker-compose.
$ docker-compose up -d
The most convenient way to hack on microblog.pub is to run the server locally, and run
# One-time setup
$ pip install -r requirements.txt
# Start the Celery worker, RabbitMQ and MongoDB
$ docker-compose -f docker-compose-dev.yml up -d
# Run the server locally
$ FLASK_DEBUG=1 MICROBLOGPUB_DEBUG=1 FLASK_APP=app.py flask run -p 5005 --with-threads
Your admin API key can be found at config/admin_api_key.key
.
Returns the actor profile, with links to all the "standard" collections.
Special collection that reference notes with the given tag.
Special collection that returns the stream/inbox as displayed in the UI.
The user API is used by the admin UI (and requires a CSRF token when used with a regular user session), but it can also be accessed with an API key.
All the examples are using HTTPie.
Deletes the given note id
(the note must from the instance outbox).
Answers a 201 (Created) status code.
You can pass the id
via JSON, form data or query argument.
$ http POST https://microblog.pub/api/note/delete Authorization:'Bearer <token>' id=http://microblob.pub/outbox/<note_id>/activity
{
"activity": "https://microblog.pub/outbox/<delete_id>"
}
Adds the given note id
(the note must from the instance outbox) to the featured collection (and pins it on the homepage).
Answers a 201 (Created) status code.
You can pass the id
via JSON, form data or query argument.
$ http POST https://microblog.pub/api/note/pin Authorization:'Bearer <token>' id=http://microblob.pub/outbox/<note_id>/activity
{
"pinned": true
}
Removes the given note id
(the note must from the instance outbox) from the featured collection (and un-pins it).
Answers a 201 (Created) status code.
You can pass the id
via JSON, form data or query argument.
$ http POST https://microblog.pub/api/note/unpin Authorization:'Bearer <token>' id=http://microblob.pub/outbox/<note_id>/activity
{
"pinned": false
}
Likes the given activity.
Answers a 201 (Created) status code.
You can pass the id
via JSON, form data or query argument.
$ http POST https://microblog.pub/api/like Authorization:'Bearer <token>' id=http://activity-iri.tld
{
"activity": "https://microblog.pub/outbox/<like_id>"
}
Boosts/Announces the given activity.
Answers a 201 (Created) status code.
You can pass the id
via JSON, form data or query argument.
$ http POST https://microblog.pub/api/boost Authorization:'Bearer <token>' id=http://activity-iri.tld
{
"activity": "https://microblog.pub/outbox/<announce_id>"
}
Blocks the given actor, all activities from this actor will be dropped after that.
Answers a 201 (Created) status code.
You can pass the id
via JSON, form data or query argument.
$ http POST https://microblog.pub/api/block Authorization:'Bearer <token>' actor=http://actor-iri.tld/
{
"activity": "https://microblog.pub/outbox/<block_id>"
}
Follows the given actor.
Answers a 201 (Created) status code.
You can pass the id
via JSON, form data or query argument.
$ http POST https://microblog.pub/api/follow Authorization:'Bearer <token>' actor=http://actor-iri.tld/
{
"activity": "https://microblog.pub/outbox/<follow_id>"
}
Creates a new note. reply
is the IRI of the "replied" note if any.
Answers a 201 (Created) status code.
You can pass the content
and reply
via JSON, form data or query argument.
$ http POST https://microblog.pub/api/new_note Authorization:'Bearer <token>' content=hello
{
"activity": "https://microblog.pub/outbox/<create_id>"
}
$ http GET https://microblog.pub/api/stream Authorization:'Bearer <token>'
PRs are welcome, please open an issue to start a discussion before your start any work.