Skip to content

Bob deletes himself

given: "Alice" created an actor on "abel" called "Alice"

send.Alice.request.create_actor
{
  "base_url": "http://abel",
  "preferred_username": "Alice",
  "profile": {},
  "automatically_accept_followers": null,
  "name": null
}
receive.Alice.response.create_actor
{
  "attachment": null,
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    "https://w3id.org/security/v1"
  ],
  "publicKey": {
    "id": "http://abel/actor/ee2Ot8rvLER5IHY2sDG7Ew#legacy-key-1",
    "owner": "http://abel/actor/ee2Ot8rvLER5IHY2sDG7Ew",
    "publicKeyPem": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5+leB/ohTdn7nkV06ra9\nNRMz+ntpZM/n2ehpVMUYyljqQBoQLQcKx4dCfdHGAybcM+9K/Gy3aIO35SfcESvT\n23tNTj4z57Oc1DTiUPFX77MV0PZZzOa/gyBrvyQGl7LvOJOi+u1L1piwuo8IFpsc\nZz7zjQuPxCOdHahccs8c/AdSer8AflIwy3vD61l4qx5Dxn2A9osjaj4W7RxKgz25\n9J4vcknXy5HW5NoQ5C+1mznfqkn6A2H2XcvvIKtCRxg/z4CVwp8fJ3dcb2gTCRBv\nSI2xe20tCi8ouiMnjPrz+viYAw/MhcZJajR+1pv91aXxAaFmxOemxZsz5o9OzxDe\nsQIDAQAB\n-----END PUBLIC KEY-----\n"
  },
  "id": "http://abel/actor/ee2Ot8rvLER5IHY2sDG7Ew",
  "type": "Person",
  "inbox": "http://abel/inbox/mIuP-KIiZbaZkOk72P6MMA",
  "outbox": "http://abel/outbox/OUTLwqgBabj7bXdayZODkA",
  "followers": "http://abel/followers/TgjQF3dep1nCiEHtUqK8Ag",
  "following": "http://abel/following/C7XdmPHB2ZRGuY4BTC_Xeg",
  "preferredUsername": "Alice",
  "name": "Alice",
  "identifiers": [
    "acct:Alice@abel",
    "http://abel/actor/ee2Ot8rvLER5IHY2sDG7Ew"
  ],
  "endpoints": {
    "sharedInbox": "http://abel/shared_inbox"
  }
}

given: "Bob" created an actor on "banach" called "Bob"

send.Bob.request.create_actor
{
  "base_url": "http://banach",
  "preferred_username": "Bob",
  "profile": {},
  "automatically_accept_followers": null,
  "name": null
}
receive.Bob.response.create_actor
{
  "attachment": null,
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    "https://w3id.org/security/v1"
  ],
  "publicKey": {
    "id": "http://banach/actor/d7HZcDwTT3l6MJqOwKmnvw#legacy-key-1",
    "owner": "http://banach/actor/d7HZcDwTT3l6MJqOwKmnvw",
    "publicKeyPem": "-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnJGtirhppRVIXXxdHyYo\njFH3oX+XpkC7FhDVNLruTkj7xPN/56gs+1lVY8Xp3u+0V1DJbfMqe4xuLyW9NrAV\nv8QFq1wmOQBHyO4HR7A6RH10B/qINUvQdcnvH1fZEbbhcBZtvxJsw9ON5JDWcDti\n2Xxom7XcjXqJF9gWFYv0bB/QjQVDUzpoa5bRXf01+ywIgQqoGAH1t05WmjksmBp0\npfscawUAIFDqGnKK+DfESGmp1mnv7BeOiq7Rka9vRknzCsJhaBxW84BY8gK635Je\nThBi2GE6scwclFq/GHaGrKVAz4DaZtDlZpRKYBksql8xlJUjmCEXuMndhB092i2W\nQwIDAQAB\n-----END PUBLIC KEY-----\n"
  },
  "id": "http://banach/actor/d7HZcDwTT3l6MJqOwKmnvw",
  "type": "Person",
  "inbox": "http://banach/inbox/cX_nWKO23Jhsf9CVkXAqjg",
  "outbox": "http://banach/outbox/D5_vyKk0aIx1_JkTJitNkg",
  "followers": "http://banach/followers/4XoQ_-RBSt81GcVi7PoN_g",
  "following": "http://banach/following/_7qIyEStjyJ0XzBS60hBoA",
  "preferredUsername": "Bob",
  "name": "Bob",
  "identifiers": [
    "acct:Bob@banach",
    "http://banach/actor/d7HZcDwTT3l6MJqOwKmnvw"
  ],
  "endpoints": {
    "sharedInbox": "http://banach/shared_inbox"
  }
}

when: "Bob" sends "Alice" a Follow Activity

send.Bob.trigger.send_message
{
  "actor": "http://banach/actor/d7HZcDwTT3l6MJqOwKmnvw",
  "data": {
    "@context": "https://www.w3.org/ns/activitystreams",
    "type": "Follow",
    "actor": "http://banach/actor/d7HZcDwTT3l6MJqOwKmnvw",
    "to": [
      "http://abel/actor/ee2Ot8rvLER5IHY2sDG7Ew"
    ],
    "id": "follow:d3ea220f-9a12-4b2a-95c1-5d7c84aad8b2",
    "published": "2025-02-23T08:46:35Z",
    "object": "http://abel/actor/ee2Ot8rvLER5IHY2sDG7Ew"
  }
}
receive.Bob.outgoing
{
  "actor": "http://banach/actor/d7HZcDwTT3l6MJqOwKmnvw",
  "event_type": "outgoing",
  "data": {
    "raw": {
      "@context": "https://www.w3.org/ns/activitystreams",
      "type": "Follow",
      "actor": "http://banach/actor/d7HZcDwTT3l6MJqOwKmnvw",
      "to": [
        "http://abel/actor/ee2Ot8rvLER5IHY2sDG7Ew"
      ],
      "id": "follow:d3ea220f-9a12-4b2a-95c1-5d7c84aad8b2",
      "published": "2025-02-23T08:46:35Z",
      "object": "http://abel/actor/ee2Ot8rvLER5IHY2sDG7Ew"
    },
    "recipients": {
      "recipients": [
        "http://abel/actor/ee2Ot8rvLER5IHY2sDG7Ew"
      ],
      "public": false
    }
  }
}
receive.Alice.incoming
{
  "actor": "http://abel/actor/ee2Ot8rvLER5IHY2sDG7Ew",
  "event_type": "incoming",
  "data": {
    "raw": {
      "@context": "https://www.w3.org/ns/activitystreams",
      "type": "Follow",
      "actor": "http://banach/actor/d7HZcDwTT3l6MJqOwKmnvw",
      "to": [
        "http://abel/actor/ee2Ot8rvLER5IHY2sDG7Ew"
      ],
      "id": "follow:d3ea220f-9a12-4b2a-95c1-5d7c84aad8b2",
      "published": "2025-02-23T08:46:35Z",
      "object": "http://abel/actor/ee2Ot8rvLER5IHY2sDG7Ew"
    },
    "recipients": {
      "recipients": [
        "http://abel/actor/ee2Ot8rvLER5IHY2sDG7Ew"
      ],
      "public": false
    }
  }
}

when: "Alice" sends an Accept to this Follow Activity

send.Alice.trigger.send_message
{
  "actor": "http://abel/actor/ee2Ot8rvLER5IHY2sDG7Ew",
  "data": {
    "@context": "https://www.w3.org/ns/activitystreams",
    "type": "Accept",
    "actor": "http://abel/actor/ee2Ot8rvLER5IHY2sDG7Ew",
    "to": [
      "http://banach/actor/d7HZcDwTT3l6MJqOwKmnvw"
    ],
    "published": "2025-02-23T08:46:35Z",
    "object": "follow:d3ea220f-9a12-4b2a-95c1-5d7c84aad8b2",
    "id": "accept:1ee22ec0-e0b8-44f0-8f03-da2a019c87cf"
  }
}
receive.Alice.outgoing
{
  "actor": "http://abel/actor/ee2Ot8rvLER5IHY2sDG7Ew",
  "event_type": "outgoing",
  "data": {
    "raw": {
      "@context": "https://www.w3.org/ns/activitystreams",
      "type": "Accept",
      "actor": "http://abel/actor/ee2Ot8rvLER5IHY2sDG7Ew",
      "to": [
        "http://banach/actor/d7HZcDwTT3l6MJqOwKmnvw"
      ],
      "published": "2025-02-23T08:46:35Z",
      "object": "follow:d3ea220f-9a12-4b2a-95c1-5d7c84aad8b2",
      "id": "accept:1ee22ec0-e0b8-44f0-8f03-da2a019c87cf"
    },
    "recipients": {
      "recipients": [
        "http://banach/actor/d7HZcDwTT3l6MJqOwKmnvw"
      ],
      "public": false
    }
  }
}
receive.Bob.incoming
{
  "actor": "http://banach/actor/d7HZcDwTT3l6MJqOwKmnvw",
  "event_type": "incoming",
  "data": {
    "raw": {
      "@context": "https://www.w3.org/ns/activitystreams",
      "type": "Accept",
      "actor": "http://abel/actor/ee2Ot8rvLER5IHY2sDG7Ew",
      "to": [
        "http://banach/actor/d7HZcDwTT3l6MJqOwKmnvw"
      ],
      "published": "2025-02-23T08:46:35Z",
      "object": "follow:d3ea220f-9a12-4b2a-95c1-5d7c84aad8b2",
      "id": "accept:1ee22ec0-e0b8-44f0-8f03-da2a019c87cf"
    },
    "recipients": {
      "recipients": [
        "http://banach/actor/d7HZcDwTT3l6MJqOwKmnvw"
      ],
      "public": false
    }
  }
}

when: "Bob" deletes himself

send.Bob.trigger.delete_actor
{
  "actor": "http://banach/actor/d7HZcDwTT3l6MJqOwKmnvw"
}
receive.Bob.outgoing
{
  "actor": "http://banach/actor/d7HZcDwTT3l6MJqOwKmnvw",
  "event_type": "outgoing",
  "data": {
    "raw": {
      "@context": "https://www.w3.org/ns/activitystreams",
      "type": "Delete",
      "actor": "http://banach/actor/d7HZcDwTT3l6MJqOwKmnvw",
      "to": [
        "https://www.w3.org/ns/activitystreams#Public"
      ],
      "cc": [
        "http://banach/followers/4XoQ_-RBSt81GcVi7PoN_g",
        "http://banach/following/_7qIyEStjyJ0XzBS60hBoA"
      ],
      "published": "2025-02-23T08:46:36Z",
      "object": "http://banach/actor/d7HZcDwTT3l6MJqOwKmnvw",
      "id": "http://banach/object/019531fc-a6a2-7aff-a386-eca2bbb38c7f"
    },
    "recipients": {
      "recipients": [
        "https://www.w3.org/ns/activitystreams#Public",
        "http://banach/followers/4XoQ_-RBSt81GcVi7PoN_g",
        "http://banach/following/_7qIyEStjyJ0XzBS60hBoA"
      ],
      "public": true
    }
  }
}
receive.Alice.incoming
{
  "actor": "http://abel/actor/ee2Ot8rvLER5IHY2sDG7Ew",
  "event_type": "incoming",
  "data": {
    "raw": {
      "@context": "https://www.w3.org/ns/activitystreams",
      "type": "Delete",
      "actor": "http://banach/actor/d7HZcDwTT3l6MJqOwKmnvw",
      "to": [
        "https://www.w3.org/ns/activitystreams#Public"
      ],
      "cc": [
        "http://banach/followers/4XoQ_-RBSt81GcVi7PoN_g",
        "http://banach/following/_7qIyEStjyJ0XzBS60hBoA"
      ],
      "published": "2025-02-23T08:46:36Z",
      "object": "http://banach/actor/d7HZcDwTT3l6MJqOwKmnvw",
      "id": "http://banach/object/019531fc-a6a2-7aff-a386-eca2bbb38c7f"
    },
    "recipients": {
      "recipients": [
        "https://www.w3.org/ns/activitystreams#Public",
        "http://banach/followers/4XoQ_-RBSt81GcVi7PoN_g",
        "http://banach/following/_7qIyEStjyJ0XzBS60hBoA"
      ],
      "public": true
    }
  }
}

then: The "followers" collection of "Alice" does not include "Bob"

send.Alice.request.fetch
{
  "actor": "http://abel/actor/ee2Ot8rvLER5IHY2sDG7Ew",
  "uri": "http://abel/followers/TgjQF3dep1nCiEHtUqK8Ag"
}
receive.Alice.response.fetch
{
  "actor": "http://abel/actor/ee2Ot8rvLER5IHY2sDG7Ew",
  "uri": "http://abel/followers/TgjQF3dep1nCiEHtUqK8Ag",
  "data": {
    "@context": "https://www.w3.org/ns/activitystreams",
    "id": "http://abel/followers/TgjQF3dep1nCiEHtUqK8Ag",
    "type": "OrderedCollection"
  }
}