Skip to main content

A Django app implementing the ActivityPub protocol

Project description

This is an reusable Django app implementing the ActivityPub protocol with the intent of allowing any Django project to be federated with other ActivityPub-compliant servers.

It currently provides:

  • Models for ActivityPub objects and associated admin interface

  • View implementations for serving the ActivityPub protocol API

  • Helpers for rendering ActivityPub interactions in Django templates

  • @Mention parsing and auto-linking in content models

Current Status

This project is in the early stages of development. It is not yet ready for production use. The API is likely to change, security issues are likely to be present, and there are many missing features. That said, it is usable for testing and experimentation. The maintainer of the libray is using it for their own website.

Supported ActivityPub features:

  • Webfinger endpoint and discovery (both acct adn http(s) URIs)

  • One or more local actors (paired with your User model) with outbox and followers collections

  • Local actor inbox supports Follow, Like, Announce, Create, and Undo [Follow, Like, Announce]

  • Delivery of activities to local actor followers

Roadmap:

  • Signing of incoming and outgoing GET requests

  • Support for other ActivityPub object types (Article, Image, Video, etc.)

  • Support background processing of incoming activities

  • Support background delivery of outgoing activities

Quick Start

  1. Install django-activitypub:

pip install django-activitypub
  1. Add “django_activitypub” to your INSTALLED_APPS setting like this:

INSTALLED_APPS = [
    ...,
    'django_activitypub',
]
  1. Include the django_activitpub URLconf in your project urls.py like this:

path('', include('django_activitypub.urls')),  # this can be customized later
  1. Run python manage.py migrate to create the activitypub models.

  2. Create instances of LocalActor for your user profiles:

from django.contrib.auth import get_user_model
from django_activitypub.models import LocalActor

user = get_user_model().objects.get(username='myuser')
LocalActor.objects.create(user=user, name=user.username, preferred_username=user.username)
  1. Publish your content by creating a note:

from django_activitypub.models import LocalActor, Note

class MyModel(models.Model):
    # ... your model fields
    def publish(self, base_uri):
        actor = LocalActor.objects.get(user=self.author)
        Note.objects.upsert(
            base_uri=base_uri,
            local_actor=actor,
            content=self.formatted_content(),
            content_url=f'{base_uri}{self.get_absolute_url()}'
        )
  1. Start the development server and check the ActivityPub URLs:

python manage.py runserver
http get http://127.0.0.1:8000/pub/myuser Accept:application/activity+json
  1. You can also use the Django Admin to create new Notes and LocalActors.

Security

Currently there is a fairly bare-bone approach to security, implementing the the minimum required to successfully communicate with other ActivityPub servers and protect library integrators from common attacks.

  • HTTP POST requests to the inbox are currently verified

  • HTTP POST requests to follower inboxes are signed by a local per-user key stored in the database

  • When remote content is displayed in a template, the content is sanitized or escaped

Please send any security issues immediately to the maintainer: security@steamboatlabs.com

Interoperability

Verified interoperability with:

  • ✅ Mastodon

  • ❓Pleroma

  • Others

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-activitypub-0.0.2.tar.gz (18.2 kB view details)

Uploaded Source

File details

Details for the file django-activitypub-0.0.2.tar.gz.

File metadata

  • Download URL: django-activitypub-0.0.2.tar.gz
  • Upload date:
  • Size: 18.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for django-activitypub-0.0.2.tar.gz
Algorithm Hash digest
SHA256 7fb6421fff63dd4fcee7f562cdfcbc3481a265c35fda49b08957bf51f1f700b5
MD5 771200936af556d6bb5d02a1efdd39fe
BLAKE2b-256 0a32f1b90b4136653aa7f5cfbf51f67c6135d26048d5beefdbc60c93c5d88c17

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page