Slon/Modules/ActivityPub: Add initial support for receiving remote statuses to local inbox

This commit is contained in:
Alec Murphy 2025-02-16 20:35:44 -05:00
parent 0994ab3887
commit fecfa23ddd
2 changed files with 182 additions and 0 deletions

View file

@ -84,3 +84,17 @@ JsonObject* @slon_api_account_by_username(U8* username)
}
return NULL;
}
JsonObject* @slon_api_account_by_remote_actor(U8* remote_actor)
{
if (!remote_actor || !StrLen(remote_actor))
return NULL;
JsonArray* accts = db->a("accounts");
I64 i;
for (i = 0; i < accts->length; i++) {
if (accts->o(i)->@("remote_actor") && !StrICmp(accts->o(i)->@("remote_actor"), remote_actor)) {
return accts->o(i);
}
}
return NULL;
}