2022-04-13 10:43:19 +00:00
# ActivityPub federation in Mitra
2022-04-28 16:19:59 +00:00
Mitra largely follows the [ActivityPub ](https://www.w3.org/TR/activitypub/ ) server-to-server specification but it makes uses of some non-standard extensions, some of which are required for interacting with it.
2022-04-13 10:43:19 +00:00
The following activities are supported:
- Accept(Follow)
- Reject(Follow)
- Undo(Follow)
- Create(Note)
- Delete(Note)
- Like(Note)
- Undo(Like)
- Announce(Note)
- Undo(Announce)
2022-08-21 17:56:28 +00:00
- Update(Note)
2022-04-13 10:43:19 +00:00
- Follow(Person)
- Update(Person)
2022-10-21 21:32:01 +00:00
- Move(Person)
2022-06-01 18:27:47 +00:00
- Delete(Person)
2022-07-16 00:28:45 +00:00
- Add(Person)
- Remove(Person)
2022-04-13 10:43:19 +00:00
And these additional standards:
- [Http Signatures ](https://datatracker.ietf.org/doc/html/draft-cavage-http-signatures )
- [NodeInfo ](https://nodeinfo.diaspora.software/ )
- [WebFinger ](https://webfinger.net/ )
2022-04-28 16:19:59 +00:00
Activities are implemented in way that is compatible with Pleroma, Mastodon and other popular ActivityPub servers.
2022-10-01 11:08:56 +00:00
## Supported FEPs
2022-10-11 16:13:06 +00:00
- [FEP-f1d5 ](https://codeberg.org/fediverse/fep/src/branch/main/feps/fep-f1d5.md )
2022-10-01 11:08:56 +00:00
- [FEP-e232 ](https://codeberg.org/fediverse/fep/src/branch/main/feps/fep-e232.md )
2022-04-28 16:19:59 +00:00
## Profile extensions
### Cryptocurrency addresses
Cryptocurrency addresses are represented as `PropertyValue` attachments where `name` attribute is a currency symbol prefixed with `$` :
```json
{
"name": "$XMR",
"type": "PropertyValue",
"value": "8Ahza5RM4JQgtdqvpcF1U628NN5Q87eryXQad3Fy581YWTZU8o3EMbtScuioQZSkyNNEEE1Lkj2cSbG4VnVYCW5L1N4os5p"
}
```
### Identity proofs
Identity proofs are represented as attachments of `IdentityProof` type:
```json
{
"name": "< did > ",
"type": "IdentityProof",
"signatureAlgorithm": "< proof-type > ",
"signatureValue": "< proof > "
}
```
2022-07-16 00:28:45 +00:00
2022-11-13 22:18:04 +00:00
Supported proof types:
- EIP-191 (Ethereum personal signatures)
- [Minisign ](https://jedisct1.github.io/minisign/ )
2022-07-16 00:28:45 +00:00
## Subscription events
Local actor profiles have `subscribers` property which points to the collection of actor's paid subscribers.
The `Add` activity is used to notify the subscriber about successful subscription payment. Upon receipt of this activity, the receiving server should add specified `object` to actors's `subscribers` collection (specified in `target` property):
```json
{
"@context": [
"https://www.w3.org/ns/activitystreams"
],
"actor": "https://example.com/users/alice",
"id": "https://example.com/activities/00000000-0000-0000-0000-000000000001",
"object": "https://example.com/users/bob",
"target": "https://example.com/users/alice/collections/subscribers",
"to": [
"https://example.com/users/bob"
],
"type": "Add"
}
```
The `Remove` activity is used to notify the subscriber about expired subscription. Upon receipt of this activity, the receiving server should remove specified `object` from actors's `subscribers` collection (specified in `target` property):
```json
{
"@context": [
"https://www.w3.org/ns/activitystreams"
],
"actor": "https://example.com/users/alice",
"id": "https://example.com/activities/00000000-0000-0000-0000-000000000002",
"object": "https://example.com/users/bob",
"target": "https://example.com/users/alice/collections/subscribers",
"to": [
"https://example.com/users/bob"
],
"type": "Remove"
}
```