You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bovine/bovine_process
Helge af0c7a4851 bovine 0.2.5 1 day ago
..
bovine_process Initial move of json-ld 1 week ago
tests Cleanup last remaining usage of host as a configuration variable 1 week ago
README.md Updates before releasing 1 week ago
poetry.lock Move mymath.rocks specific code to bovine_web 1 day ago
pyproject.toml bovine 0.2.5 1 day ago

README.md

bovine_process

bovine_process consists of the side effect logic of Activity objects. This means it contains the code, the logic that for an incoming object, one executes:

  • Store object in bovine_store
  • Add reference to inbox
  • Perform side effects
  • Enque object for bovine_pubsub

And a similar list of effects for outgoing objects, i.e

  • Store object in bovine_store
  • Add reference to outbox
  • Perform side effects
  • Send objects to follower's inbox
  • Enque object for bovine_pubsub

The behavior defined in this package corresponds to 6. Client to Server Interactions and 7. Server to Server Interactions of the ActivityPub specification. However, only a small subset of side effects is implemented.

Implemented Side Effects

  • Create, Update, Delete. Deletes are handled by replacing the object with a Tombstone. Various checks are performed to ensure only appropriate Updates happen.
  • Specify Update checks
  • Follow and Accept
    • Outgoing Accept of Follow adds to followers
    • Incoming Accept of Follows adds to following
  • Implement other side effects, in particular Like, Announce, and inReplyTo
  • Authority checks.

That's it. Currently, no collections for replies and likes are kept in bovine_store, so implementing these side effects cannot happen yet:

  • Announce -> add to share collection
  • Like -> add to likes collection
  • Create with inReplyTo -> add to replies collection

Tests

The folder tests/data contains test cases what side effects happen in the database for certain cases.