Usage

Entities

Federation has it’s own base entity classes. When incoming messages are processed, the protocol specific entity mappers transform the messages into our base entities. In reverse, when creating outgoing payloads, outgoing protocol specific messages are constructed from the base entities.

Entity types are as follows below.

class federation.entities.base.Comment(*args, **kwargs)[source]

Represents a comment, linked to another object.

class federation.entities.base.Follow(*args, **kwargs)[source]

Represents a handle following or unfollowing another handle.

class federation.entities.base.Image(*args, **kwargs)[source]

Reflects a single image, possibly linked to another object.

class federation.entities.base.Post(*args, **kwargs)[source]

Reflects a post, status message, etc, which will be composed from the message or to the message.

class federation.entities.base.Profile(*args, **kwargs)[source]

Represents a profile for a user.

class federation.entities.base.Reaction(*args, **kwargs)[source]

Represents a reaction to another object, for example a like.

class federation.entities.base.Relationship(*args, **kwargs)[source]

Represents a relationship between two handles.

class federation.entities.base.Retraction(*args, **kwargs)[source]

Represents a retraction of content by author.

class federation.entities.base.Share(*args, **kwargs)[source]

Represents a share of another entity.

entity_type defaults to “Post” but can be any base entity class name. It should be the class name of the entity that was shared.

The optional raw_content can be used for a “quoted share” case where the sharer adds their own note to the share.

Protocol entities

Each protocol additionally has it’s own variants of the base entities, for example Diaspora entities in federation.entities.diaspora.entities. All the protocol specific entities subclass the base entities so you can safely work with for example DiasporaPost and use isinstance(obj, Post).

When creating incoming objects from messages, protocol specific entity classes are returned. This is to ensure protocol specific extra attributes or methods are passed back to the caller.

For sending messages out, either base or protocol specific entities can be passed to the outbound senders.

If you need the correct protocol speficic entity class from the base entity, each protocol will define a get_outbound_entity function.

federation.entities.diaspora.mappers.get_outbound_entity(entity: federation.entities.mixins.BaseEntity, private_key: Crypto.PublicKey.RSA.RsaKey)[source]

Get the correct outbound entity for this protocol.

We might have to look at entity values to decide the correct outbound entity. If we cannot find one, we should raise as conversion cannot be guaranteed to the given protocol.

Private key of author is needed to be passed for signing the outbound entity.

Parameters:
  • entity – An entity instance which can be of a base or protocol entity class.
  • private_key – Private key of sender as an RSA object
Returns:

Protocol specific entity class instance.

Raises:

ValueError – If conversion cannot be done.

Federation identifiers

All entities have an id to guarantee them a unique name in the network. The format of the id depends on the protocol in question.

  • ActivityPub: maps to the object id (whether wrapped in an Activity or not)
  • Diaspora: maps to guid for the entity.

Profiles

Profiles are uniquely identified by the id as above. Additionally for Diaspora they always have a handle. ActivityPub profiles can also have a handle but it is optional.

A handle will always be in email like format, without the @ prefix found on some platforms. This will be added to outgoing payloads where needed.

Creator and owner identifiers

All entities except Profile have an actor_id which tells who created this object or activity. The format depends on the protocol in question.

  • ActivityPub: maps to Object attributedTo or Activity actor_id.
  • Diaspora: maps to entity author

Activity identifiers

Entities which are an activity on something, for example creating, updating, deleting, following, etc, should have an activity_id given to be able to send out to the ActivityPub protocol.

Mentions

Entities store mentions in the list _mentions. The list is a simple list of strings which will be either an URL format profile.id or handle, as per above examples.

The syntax for a mention in text is URL format @{<profile.id>} or @{<profile.handle>}. The GUID format profile.id cannot be used for a mention.

Examples:

# profile.handle
Hello @{user@domain.tld}!

# profile.id in URL format
Hello @{https://domain.tld/user}

It is suggested profile.handle syntax is used always for textual mentions unless handles are not available.

Inbound

Mentions are added to the entity _mentions list when processing inbound entities. For ActivityPub they will be extracted from Mention tags and for Diaspora extracted from the text using the Diaspora mention format.

Outbound

Mentions can be given in the _mentions list. If not given, they will be extracted from the textual content using the above formats in the example.

For ActivityPub they will be added as Mention tags before sending. If the mention is in handle format, a WebFinger fetch will be made to find the profile URL format ID.

For Diaspora they will be added to the text in the correct format, if not found. If they are found in the text in non-Diaspora format, they will be converted before sending.

Discovery

Federation provides many generators to allow providing discovery documents. They have been made as Pythonic as possible so that library users don’t have to meddle with the various documents and their internals.

The protocols themselves are too complex to document within this library, please consult protocol documentation on what kind of discovery documents are expected to be served by the application.

Generators

Helper methods

federation.hostmeta.fetchers.fetch_nodeinfo_document(host)[source]
federation.hostmeta.fetchers.fetch_nodeinfo2_document(host)[source]
federation.hostmeta.fetchers.fetch_statisticsjson_document(host)[source]
federation.hostmeta.generators.generate_host_meta(template=None, *args, **kwargs)[source]

Generate a host-meta XRD document.

Template specific key-value pairs need to be passed as kwargs, see classes.

Parameters:template – Ready template to fill with args, for example “diaspora” (optional)
Returns:Rendered XRD document (str)
federation.hostmeta.generators.generate_legacy_webfinger(template=None, *args, **kwargs)[source]

Generate a legacy webfinger XRD document.

Template specific key-value pairs need to be passed as kwargs, see classes.

Parameters:template – Ready template to fill with args, for example “diaspora” (optional)
Returns:Rendered XRD document (str)
federation.hostmeta.generators.generate_hcard(template=None, **kwargs)[source]

Generate a hCard document.

Template specific key-value pairs need to be passed as kwargs, see classes.

Parameters:template – Ready template to fill with args, for example “diaspora” (optional)
Returns:HTML document (str)
federation.hostmeta.generators.generate_nodeinfo2_document(**kwargs)[source]

Generate a NodeInfo2 document.

Pass in a dictionary as per NodeInfo2 1.0 schema: https://github.com/jaywink/nodeinfo2/blob/master/schemas/1.0/schema.json

Minimum required schema:
{server:
baseUrl name software version

} openRegistrations

Protocols default will match what this library supports, ie “diaspora” currently.

Returns:dict
Raises:KeyError on missing required items
federation.hostmeta.generators.get_nodeinfo_well_known_document(url, document_path=None)[source]

Generate a NodeInfo .well-known document.

See spec: http://nodeinfo.diaspora.software

Parameters:
  • url – The full base url with protocol, ie https://example.com
  • document_path – Custom NodeInfo document path if supplied (optional)
Returns:

dict

Generator classes

class federation.hostmeta.generators.DiasporaHostMeta(*args, **kwargs)[source]

Diaspora host-meta.

Required keyword args:

  • webfinger_host (str)
class federation.hostmeta.generators.DiasporaWebFinger(handle, host, guid, public_key, *args, **kwargs)[source]

Diaspora version of legacy WebFinger.

Required keyword args:

class federation.hostmeta.generators.DiasporaHCard(**kwargs)[source]

Diaspora hCard document.

Must receive the required attributes as keyword arguments to init.

class federation.hostmeta.generators.NodeInfo(software, protocols, services, open_registrations, usage, metadata, skip_validate=False, raise_on_validate=False)[source]

Generate a NodeInfo document.

See spec: http://nodeinfo.diaspora.software

NodeInfo is unnecessarely restrictive in field values. We wont be supporting such strictness, though we will raise a warning unless validation is skipped with skip_validate=True.

For strictness, raise_on_validate=True will cause a ValidationError to be raised.

See schema document federation/hostmeta/schemas/nodeinfo-1.0.json for how to instantiate this class.

class federation.hostmeta.generators.RFC7033Webfinger(id: str, handle: str, guid: str, base_url: str, profile_path: str, hcard_path: str = '/hcard/users/', atom_path: str = None, search_path: str = None)[source]

RFC 7033 webfinger - see https://tools.ietf.org/html/rfc7033

A Django view is also available, see the child django module for view and url configuration.

Parameters:
  • id – Profile ActivityPub ID in URL format
  • handle – Profile Diaspora handle
  • guid – Profile Diaspora guid
  • base_url – The base URL of the server (protocol://domain.tld)
  • profile_path – Profile path for the user (for example /profile/johndoe/)
  • hcard_path – (Optional) hCard path, defaults to /hcard/users/.
  • atom_path – (Optional) atom feed path
Returns:

dict

class federation.hostmeta.generators.SocialRelayWellKnown(subscribe, tags=(), scope='all', *args, **kwargs)[source]

A .well-known/social-relay document in JSON.

For apps wanting to announce their preferences towards relay applications.

See WIP spec: https://wiki.diasporafoundation.org/Relay_servers_for_public_posts

Schema see schemas/social-relay-well-known.json

Parameters:
  • subscribe – bool
  • tags – tuple, optional
  • scope – Should be either “all” or “tags”, default is “all” if not given

Fetchers

High level utility functions to fetch remote objects. These should be favoured instead of protocol specific utility functions.

federation.fetchers.retrieve_remote_content(id: str, guid: str = None, handle: str = None, entity_type: str = None, sender_key_fetcher: Callable[[str], str] = None)[source]

Retrieve remote content and return an Entity object.

sender_key_fetcher is an optional function to use to fetch sender public key. If not given, network will be used to fetch the profile and the key. Function must take federation id as only parameter and return a public key.

federation.fetchers.retrieve_remote_profile(id: str) → Optional[federation.entities.base.Profile][source]

High level retrieve profile method.

Retrieve the profile from a remote location, using protocols based on the given ID.

Inbound

High level utility functions to pass incoming messages to. These should be favoured instead of protocol specific utility functions.

federation.inbound.handle_receive(request: federation.types.RequestType, user: federation.types.UserType = None, sender_key_fetcher: Callable[[str], str] = None, skip_author_verification: bool = False) → Tuple[str, str, List[T]][source]

Takes a request and passes it to the correct protocol.

Returns a tuple of:
  • sender id
  • protocol name
  • list of entities

NOTE! The returned sender is NOT necessarily the author of the entity. By sender here we’re talking about the sender of the request. If this object is being relayed by the sender, the author could actually be a different identity.

Parameters:
  • request – Request object of type RequestType - note not a HTTP request even though the structure is similar
  • user – User that will be passed to protocol.receive (only required on private encrypted content) MUST have a private_key and id if given.
  • sender_key_fetcher – Function that accepts sender handle and returns public key (optional)
  • skip_author_verification – Don’t verify sender (test purposes, false default)
Returns:

Tuple of sender id, protocol name and list of entity objects

Outbound

High level utility functions to pass outbound entities to. These should be favoured instead of protocol specific utility functions.

federation.outbound.handle_send(entity: federation.entities.mixins.BaseEntity, author_user: federation.types.UserType, recipients: List[Dict[KT, VT]], parent_user: federation.types.UserType = None, payload_logger: callable = None) → None[source]

Send an entity to remote servers.

Using this we will build a list of payloads per protocol. After that, each recipient will get the generated protocol payload delivered. Delivery to the same endpoint will only be done once so it’s ok to include the same endpoint as a receiver multiple times.

Any given user arguments must have private_key and fid attributes.

Parameters:
  • entity – Entity object to send. Can be a base entity or a protocol specific one.
  • author_user – User authoring the object.
  • recipients

    A list of recipients to delivery to. Each recipient is a dict containing at minimum the “endpoint”, “fid”, “public” and “protocol” keys.

    For ActivityPub and Diaspora payloads, “endpoint” should be an URL of the endpoint to deliver to.

    The “fid” can be empty for Diaspora payloads. For ActivityPub it should be the recipient federation ID should the delivery be non-private.

    The “protocol” should be a protocol name that is known for this recipient.

    The “public” value should be a boolean to indicate whether the payload should be flagged as a public payload.

    TODO: support guessing the protocol over networks? Would need caching of results

    For private deliveries to Diaspora protocol recipients, “public_key” is also required.

    For example [

    {
    “endpoint”: “https://domain.tld/receive/users/1234-5678-0123-4567”, “fid”: “”, “protocol”: “diaspora”, “public”: False, “public_key”: <RSAPublicKey object> | str,

    }, {

    ”endpoint”: “https://domain2.tld/receive/public”, “fid”: “”, “protocol”: “diaspora”, “public”: True,

    }, {

    ”endpoint”: “https://domain4.tld/sharedinbox/”, “fid”: “https://domain4.tld/profiles/jack/”, “protocol”: “activitypub”, “public”: True,

    }, {

    ”endpoint”: “https://domain4.tld/profiles/jill/inbox”, “fid”: “https://domain4.tld/profiles/jill”, “protocol”: “activitypub”, “public”: False,

    },

    ]

  • parent_user – (Optional) User object of the parent object, if there is one. This must be given for the Diaspora protocol if a parent object exists, so that a proper parent_author_signature can be generated. If given, the payload will be sent as this user.
  • payload_logger – (Optional) Function to log the payloads with.

Django

Some ready provided views and URL configuration exist for Django.

Note! Django is not part of the normal requirements for this library. It must be installed separately.

Configuration

To use the Django views, ensure a modern version of Django is installed and add the views to your URL config for example as follows. The URL’s must be mounted on root if Diaspora protocol support is required.

url(r"", include("federation.hostmeta.django.urls")),

Some settings need to be set in Django settings. An example is below:

FEDERATION = {
    "base_url": "https://myserver.domain.tld,
    "get_object_function": "myproject.utils.get_object",
    "get_private_key_function": "myproject.utils.get_private_key",
    "get_profile_function": "myproject.utils.get_profile",
    "nodeinfo2_function": "myproject.utils.get_nodeinfo2_data",
    "process_payload_function": "myproject.utils.process_payload",
    "search_path": "/search/?q=",
    "tags_path": "/tags/:tag:",
}
  • base_url is the base URL of the server, ie protocol://domain.tld.
  • get_object_function should be the full path to a function that will return the object matching the ActivityPub ID for the request object passed to this function.
  • get_private_key_function should be the full path to a function that will accept a federation ID (url, handle or guid) and return the private key of the user (as an RSA object). Required for example to sign outbound messages in some cases.
  • get_profile_function should be the full path to a function that should return a Profile entity. The function should take one or more keyword arguments: fid, handle, guid or request. It should look up a profile with one or more of the provided parameters.
  • nodeinfo2_function (optional) function that returns data for generating a NodeInfo2 document. Once configured the path /.well-known/x-nodeinfo2 will automatically generate a NodeInfo2 document. The function should return a dict corresponding to the NodeInfo2 schema, with the following minimum items:
{server:
    baseUrl
    name
    software
    version
}
openRegistrations
  • process_payload_function (optional) function that takes in a request object. It should return True if successful (or placed in queue for processing later) or False in case of any errors.
  • search_path (optional) site search path which ends in a parameter for search input, for example “/search?q=”
  • tags_path (optional) path format to view items for a particular tag. :tag: will be replaced with the tag (without #).

Protocols

The code for opening and creating protocol messages lives under each protocol module in federation.protocols.

Each protocol defines a protocol.Protocol class under it’s own module. This is expected to contain certain methods that are used by the higher level functions that are called on incoming messages and when sending outbound messages. Everything that is needed to transform an entity into a message payload and vice versa should be here.

Instead of calling methods directly for a specific protocol, higher level generic functions should be normally used.

Utils

Various utils are provided for internal and external usage.

ActivityPub

Diaspora

federation.utils.diaspora.fetch_public_key(handle)[source]

Fetch public key over the network.

Parameters:handle – Remote handle to retrieve public key for.
Returns:Public key in str format from parsed profile.
federation.utils.diaspora.get_fetch_content_endpoint(domain, entity_type, guid)[source]

Get remote fetch content endpoint.

See: https://diaspora.github.io/diaspora_federation/federation/fetching.html

federation.utils.diaspora.get_private_endpoint(id: str, guid: str) → str[source]

Get remote endpoint for delivering private payloads.

federation.utils.diaspora.get_public_endpoint(id: str) → str[source]

Get remote endpoint for delivering public payloads.

federation.utils.diaspora.parse_profile_from_hcard(hcard: str, handle: str)[source]

Parse all the fields we can from a hCard document to get a Profile.

Parameters:
Returns:

federation.entities.diaspora.entities.DiasporaProfile instance

federation.utils.diaspora.retrieve_and_parse_content(id: str, guid: str, handle: str, entity_type: str, sender_key_fetcher: Callable[[str], str] = None)[source]

Retrieve remote content and return an Entity class instance.

This is basically the inverse of receiving an entity. Instead, we fetch it, then call “handle_receive”.

Parameters:sender_key_fetcher – Function to use to fetch sender public key. If not given, network will be used to fetch the profile and the key. Function must take handle as only parameter and return a public key.
Returns:Entity object instance or None
federation.utils.diaspora.retrieve_and_parse_diaspora_webfinger(handle)[source]

Retrieve a and parse a remote Diaspora webfinger document.

Parameters:handle – Remote handle to retrieve
Returns:dict
federation.utils.diaspora.retrieve_and_parse_profile(handle)[source]

Retrieve the remote user and return a Profile object.

Parameters:handle – User handle in username@domain.tld format
Returns:federation.entities.Profile instance or None
federation.utils.diaspora.retrieve_diaspora_hcard(handle)[source]

Retrieve a remote Diaspora hCard document.

Parameters:handle – Remote handle to retrieve
Returns:str (HTML document)
federation.utils.diaspora.retrieve_diaspora_host_meta(host)[source]

Retrieve a remote Diaspora host-meta document.

Parameters:host – Host to retrieve from
Returns:XRD instance

Network

federation.utils.network.fetch_document(url=None, host=None, path='/', timeout=10, raise_ssl_errors=True, extra_headers=None)[source]

Helper method to fetch remote document.

Must be given either the url or host. If url is given, only that will be tried without falling back to http from https. If host given, path will be added to it. Will fall back to http on non-success status code.

Parameters:
  • url – Full url to fetch, including protocol
  • host – Domain part only without path or protocol
  • path – Path without domain (defaults to “/”)
  • timeout – Seconds to wait for response (defaults to 10)
  • raise_ssl_errors – Pass False if you want to try HTTP even for sites with SSL errors (default True)
  • extra_headers – Optional extra headers dictionary to add to requests
Returns:

Tuple of document (str or None), status code (int or None) and error (an exception class instance or None)

Raises:

ValueError – If neither url nor host are given as parameters

federation.utils.network.send_document(url, data, timeout=10, *args, **kwargs)[source]

Helper method to send a document via POST.

Additional *args and **kwargs will be passed on to requests.post.

Parameters:
  • url – Full url to send to, including protocol
  • data – Dictionary (will be form-encoded), bytes, or file-like object to send in the body
  • timeout – Seconds to wait for response (defaults to 10)
Returns:

Tuple of status code (int or None) and error (exception class instance or None)

Protocols

federation.utils.protocols.identify_recipient_protocol(id: str) → Optional[str][source]

Exceptions

Various custom exception classes might be returned.

exception federation.exceptions.EncryptedMessageError[source]

Encrypted message could not be opened.

exception federation.exceptions.NoSenderKeyFoundError[source]

Sender private key was not available to sign a payload message.

exception federation.exceptions.NoSuitableProtocolFoundError[source]

No suitable protocol found to pass this payload message to.

exception federation.exceptions.SignatureVerificationError[source]

Authenticity of the signature could not be verified given the key.