2022-09-23 18:33:33 +03:00
|
|
|
/* snac - A simple, minimalistic ActivityPub instance */
|
|
|
|
/* copyright (c) 2022 grunfink - MIT license */
|
|
|
|
|
|
|
|
#include "xs.h"
|
|
|
|
#include "xs_encdec.h"
|
|
|
|
#include "xs_json.h"
|
|
|
|
#include "xs_curl.h"
|
2022-09-25 22:02:47 +03:00
|
|
|
#include "xs_mime.h"
|
2022-09-27 08:16:46 +03:00
|
|
|
#include "xs_openssl.h"
|
2022-09-23 18:33:33 +03:00
|
|
|
|
|
|
|
#include "snac.h"
|
|
|
|
|
|
|
|
const char *public_address = "https:/" "/www.w3.org/ns/activitystreams#Public";
|
|
|
|
|
|
|
|
int activitypub_request(snac *snac, char *url, d_char **data)
|
|
|
|
/* request an object */
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
xs *response = NULL;
|
2022-09-23 19:15:59 +03:00
|
|
|
xs *payload = NULL;
|
2022-09-23 18:33:33 +03:00
|
|
|
int p_size;
|
2022-09-23 19:15:59 +03:00
|
|
|
char *ctype;
|
2022-09-23 18:33:33 +03:00
|
|
|
|
|
|
|
/* check if it's an url for this same site */
|
|
|
|
/* ... */
|
|
|
|
|
|
|
|
/* get from the net */
|
|
|
|
response = http_signed_request(snac, "GET", url,
|
|
|
|
NULL, NULL, 0, &status, &payload, &p_size);
|
|
|
|
|
|
|
|
if (valid_status(status)) {
|
2022-09-23 19:15:59 +03:00
|
|
|
/* ensure it's ActivityPub data */
|
|
|
|
ctype = xs_dict_get(response, "content-type");
|
|
|
|
|
|
|
|
if (xs_str_in(ctype, "application/activity+json") != -1)
|
|
|
|
*data = xs_json_loads(payload);
|
|
|
|
else
|
|
|
|
status = 500;
|
2022-09-23 18:33:33 +03:00
|
|
|
}
|
|
|
|
|
2022-09-23 19:15:59 +03:00
|
|
|
if (!valid_status(status))
|
|
|
|
*data = NULL;
|
|
|
|
|
2022-09-23 18:33:33 +03:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int actor_request(snac *snac, char *actor, d_char **data)
|
|
|
|
/* request an actor */
|
|
|
|
{
|
2022-09-23 19:15:59 +03:00
|
|
|
int status, status2;
|
|
|
|
xs *payload = NULL;
|
2022-09-23 18:33:33 +03:00
|
|
|
|
|
|
|
/* get from disk first */
|
|
|
|
status = actor_get(snac, actor, data);
|
|
|
|
|
|
|
|
if (status == 200)
|
2022-09-23 19:15:59 +03:00
|
|
|
return status;
|
2022-09-23 18:33:33 +03:00
|
|
|
|
2022-09-23 19:15:59 +03:00
|
|
|
/* actor data non-existent or stale: get from the net */
|
|
|
|
status2 = activitypub_request(snac, actor, &payload);
|
2022-09-23 18:33:33 +03:00
|
|
|
|
2022-09-23 19:15:59 +03:00
|
|
|
if (valid_status(status2)) {
|
|
|
|
/* renew data */
|
2022-09-23 19:46:30 +03:00
|
|
|
status = actor_add(snac, actor, payload);
|
2022-09-23 19:15:59 +03:00
|
|
|
|
|
|
|
*data = payload;
|
|
|
|
payload = NULL;
|
|
|
|
}
|
2022-09-23 18:33:33 +03:00
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
2022-09-23 20:07:45 +03:00
|
|
|
|
|
|
|
|
2022-09-26 10:08:03 +03:00
|
|
|
void timeline_request(snac *snac, char *id, char *referrer)
|
2022-09-25 19:28:15 +03:00
|
|
|
/* ensures that an entry and its ancestors are in the timeline */
|
|
|
|
{
|
|
|
|
if (!xs_is_null(id)) {
|
|
|
|
/* is the admired object already there? */
|
|
|
|
if (!timeline_here(snac, id)) {
|
|
|
|
int status;
|
|
|
|
xs *object = NULL;
|
|
|
|
|
|
|
|
/* no; download it */
|
|
|
|
status = activitypub_request(snac, id, &object);
|
|
|
|
|
|
|
|
if (valid_status(status)) {
|
|
|
|
/* does it have an ancestor? */
|
|
|
|
char *in_reply_to = xs_dict_get(object, "inReplyTo");
|
|
|
|
|
|
|
|
/* recurse! */
|
2022-09-26 10:08:03 +03:00
|
|
|
timeline_request(snac, in_reply_to, referrer);
|
2022-09-25 19:28:15 +03:00
|
|
|
|
|
|
|
/* finally store */
|
2022-09-26 10:08:03 +03:00
|
|
|
timeline_add(snac, id, object, in_reply_to, referrer);
|
2022-09-25 19:28:15 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-23 20:07:45 +03:00
|
|
|
int send_to_inbox(snac *snac, char *inbox, char *msg, d_char **payload, int *p_size)
|
|
|
|
/* sends a message to an Inbox */
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
d_char *response;
|
2022-09-23 20:37:01 +03:00
|
|
|
xs *j_msg = xs_json_dumps_pp(msg, 4);
|
2022-09-23 20:07:45 +03:00
|
|
|
|
|
|
|
response = http_signed_request(snac, "POST", inbox,
|
2022-09-23 20:37:01 +03:00
|
|
|
NULL, j_msg, strlen(j_msg), &status, payload, p_size);
|
2022-09-23 20:07:45 +03:00
|
|
|
|
|
|
|
free(response);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int send_to_actor(snac *snac, char *actor, char *msg, d_char **payload, int *p_size)
|
|
|
|
/* sends a message to an actor */
|
|
|
|
{
|
|
|
|
int status;
|
|
|
|
xs *data = NULL;
|
|
|
|
|
|
|
|
/* resolve the actor first */
|
|
|
|
status = actor_request(snac, actor, &data);
|
|
|
|
|
|
|
|
if (valid_status(status)) {
|
|
|
|
char *inbox = xs_dict_get(data, "inbox");
|
|
|
|
|
|
|
|
if (inbox != NULL)
|
|
|
|
status = send_to_inbox(snac, inbox, msg, payload, p_size);
|
|
|
|
else
|
|
|
|
status = 400;
|
|
|
|
}
|
|
|
|
|
2022-09-23 20:37:01 +03:00
|
|
|
snac_log(snac, xs_fmt("send_to_actor %s %d", actor, status));
|
|
|
|
|
2022-09-23 20:07:45 +03:00
|
|
|
return status;
|
|
|
|
}
|
2022-09-23 20:37:01 +03:00
|
|
|
|
|
|
|
|
2022-09-24 11:43:57 +03:00
|
|
|
/** messages **/
|
|
|
|
|
2022-09-27 08:54:05 +03:00
|
|
|
d_char *msg_base(snac *snac, char *type, char *id, char *actor, char *date, char *object)
|
2022-09-24 11:43:57 +03:00
|
|
|
/* creates a base ActivityPub message */
|
|
|
|
{
|
2022-09-27 08:54:05 +03:00
|
|
|
xs *did = NULL;
|
|
|
|
xs *published = NULL;
|
|
|
|
|
|
|
|
/* generated values */
|
|
|
|
if (date && strcmp(date, "@now") == 0)
|
|
|
|
date = published = xs_utc_time("%Y-%m-%dT%H:%M:%SZ");
|
|
|
|
|
|
|
|
if (id != NULL) {
|
|
|
|
if (strcmp(id, "@dummy") == 0) {
|
|
|
|
xs *ntid = tid(0);
|
|
|
|
id = did = xs_fmt("%s/d/%s/%s", snac->actor, ntid, type);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if (strcmp(id, "@object") == 0) {
|
|
|
|
if (object != NULL)
|
|
|
|
id = did = xs_fmt("%s/%s", xs_dict_get(object, "id"), type);
|
|
|
|
else
|
|
|
|
id = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-24 11:43:57 +03:00
|
|
|
d_char *msg = xs_dict_new();
|
|
|
|
|
|
|
|
msg = xs_dict_append(msg, "@context", "https:/" "/www.w3.org/ns/activitystreams");
|
|
|
|
msg = xs_dict_append(msg, "type", type);
|
|
|
|
|
|
|
|
if (id != NULL)
|
|
|
|
msg = xs_dict_append(msg, "id", id);
|
|
|
|
|
2022-09-24 12:04:35 +03:00
|
|
|
if (actor != NULL)
|
2022-09-24 11:43:57 +03:00
|
|
|
msg = xs_dict_append(msg, "actor", actor);
|
2022-09-24 12:04:35 +03:00
|
|
|
|
2022-09-27 08:54:05 +03:00
|
|
|
if (date != NULL)
|
|
|
|
msg = xs_dict_append(msg, "published", date);
|
|
|
|
|
|
|
|
if (object != NULL)
|
|
|
|
msg = xs_dict_append(msg, "object", object);
|
2022-09-24 11:43:57 +03:00
|
|
|
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
d_char *msg_collection(snac *snac, char *id)
|
|
|
|
/* creates an empty OrderedCollection message */
|
|
|
|
{
|
2022-09-27 08:54:05 +03:00
|
|
|
d_char *msg = msg_base(snac, "OrderedCollection", id, NULL, NULL, NULL);
|
2022-09-24 11:43:57 +03:00
|
|
|
xs *ol = xs_list_new();
|
|
|
|
xs *nz = xs_number_new(0);
|
|
|
|
|
|
|
|
msg = xs_dict_append(msg, "attributedTo", snac->actor);
|
|
|
|
msg = xs_dict_append(msg, "orderedItems", ol);
|
|
|
|
msg = xs_dict_append(msg, "totalItems", nz);
|
|
|
|
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-27 08:54:05 +03:00
|
|
|
d_char *msg_accept(snac *snac, char *object, char *to)
|
|
|
|
/* creates an Accept message (as a response to a Follow) */
|
|
|
|
{
|
|
|
|
d_char *msg = msg_base(snac, "Accept", "@dummy", snac->actor, NULL, object);
|
|
|
|
|
|
|
|
msg = xs_dict_append(msg, "to", to);
|
|
|
|
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-24 12:04:35 +03:00
|
|
|
d_char *msg_update(snac *snac, char *object)
|
2022-09-24 12:54:35 +03:00
|
|
|
/* creates an Update message */
|
2022-09-24 12:04:35 +03:00
|
|
|
{
|
2022-09-27 08:54:05 +03:00
|
|
|
d_char *msg = msg_base(snac, "Update", "@object", snac->actor, "@now", object);
|
2022-09-24 12:04:35 +03:00
|
|
|
|
2022-09-27 08:54:05 +03:00
|
|
|
msg = xs_dict_append(msg, "to", public_address);
|
2022-09-24 12:04:35 +03:00
|
|
|
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-26 11:08:14 +03:00
|
|
|
d_char *msg_admiration(snac *snac, char *object, char *type)
|
|
|
|
/* creates a Like or Announce message */
|
|
|
|
{
|
2022-09-26 12:19:45 +03:00
|
|
|
xs *a_msg = NULL;
|
|
|
|
d_char *msg = NULL;
|
2022-09-26 11:08:14 +03:00
|
|
|
|
|
|
|
/* call the object */
|
|
|
|
timeline_request(snac, object, snac->actor);
|
|
|
|
|
2022-09-26 12:19:45 +03:00
|
|
|
if ((a_msg = timeline_find(snac, object)) != NULL) {
|
|
|
|
xs *rcpts = xs_list_new();
|
2022-09-26 11:08:14 +03:00
|
|
|
|
2022-09-27 08:54:05 +03:00
|
|
|
msg = msg_base(snac, type, "@dummy", snac->actor, "@now", object);
|
2022-09-26 12:19:45 +03:00
|
|
|
|
|
|
|
rcpts = xs_list_append(rcpts, public_address);
|
|
|
|
rcpts = xs_list_append(rcpts, xs_dict_get(a_msg, "attributedTo"));
|
|
|
|
|
|
|
|
msg = xs_dict_append(msg, "to", rcpts);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
snac_log(snac, xs_fmt("msg_admiration cannot retrieve object %s", object));
|
2022-09-26 11:08:14 +03:00
|
|
|
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-25 22:02:47 +03:00
|
|
|
d_char *msg_actor(snac *snac)
|
|
|
|
/* create a Person message for this actor */
|
|
|
|
{
|
|
|
|
xs *ctxt = xs_list_new();
|
|
|
|
xs *icon = xs_dict_new();
|
|
|
|
xs *keys = xs_dict_new();
|
|
|
|
xs *avtr = NULL;
|
|
|
|
xs *kid = NULL;
|
2022-09-27 08:54:05 +03:00
|
|
|
d_char *msg = msg_base(snac, "Person", snac->actor, NULL, NULL, NULL);
|
2022-09-25 22:02:47 +03:00
|
|
|
char *p;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
/* change the @context (is this really necessary?) */
|
|
|
|
ctxt = xs_list_append(ctxt, "https:/" "/www.w3.org/ns/activitystreams");
|
|
|
|
ctxt = xs_list_append(ctxt, "https:/" "/w3id.org/security/v1");
|
|
|
|
msg = xs_dict_set(msg, "@context", ctxt);
|
|
|
|
|
|
|
|
msg = xs_dict_set(msg, "url", snac->actor);
|
|
|
|
msg = xs_dict_set(msg, "name", xs_dict_get(snac->config, "name"));
|
|
|
|
msg = xs_dict_set(msg, "preferredUsername", snac->uid);
|
|
|
|
msg = xs_dict_set(msg, "published", xs_dict_get(snac->config, "published"));
|
|
|
|
msg = xs_dict_set(msg, "summary", xs_dict_get(snac->config, "bio"));
|
|
|
|
|
|
|
|
char *folders[] = { "inbox", "outbox", "followers", "following", NULL };
|
|
|
|
|
|
|
|
for (n = 0; folders[n]; n++) {
|
|
|
|
xs *f = xs_fmt("%s/%s", snac->actor, folders[n]);
|
|
|
|
msg = xs_dict_set(msg, folders[n], f);
|
|
|
|
}
|
|
|
|
|
|
|
|
p = xs_dict_get(snac->config, "avatar");
|
|
|
|
|
|
|
|
if (*p == '\0')
|
|
|
|
avtr = xs_fmt("%s/susie.png", srv_baseurl);
|
|
|
|
else
|
|
|
|
avtr = xs_dup(p);
|
|
|
|
|
|
|
|
icon = xs_dict_append(icon, "type", "Image");
|
|
|
|
icon = xs_dict_append(icon, "mediaType", xs_mime_by_ext(avtr));
|
|
|
|
icon = xs_dict_append(icon, "url", avtr);
|
|
|
|
msg = xs_dict_set(msg, "icon", icon);
|
|
|
|
|
|
|
|
kid = xs_fmt("%s#main-key", snac->actor);
|
|
|
|
|
|
|
|
keys = xs_dict_append(keys, "id", kid);
|
|
|
|
keys = xs_dict_append(keys, "owner", snac->actor);
|
|
|
|
keys = xs_dict_append(keys, "publicKeyPem", xs_dict_get(snac->key, "public"));
|
|
|
|
msg = xs_dict_set(msg, "publicKey", keys);
|
|
|
|
|
|
|
|
return msg;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-24 11:43:57 +03:00
|
|
|
/** queues **/
|
|
|
|
|
|
|
|
void process_message(snac *snac, char *msg, char *req)
|
|
|
|
/* processes an ActivityPub message from the input queue */
|
2022-09-24 00:49:09 +03:00
|
|
|
{
|
2022-09-25 08:58:25 +03:00
|
|
|
/* actor and type exist, were checked previously */
|
|
|
|
char *actor = xs_dict_get(msg, "actor");
|
|
|
|
char *type = xs_dict_get(msg, "type");
|
|
|
|
|
|
|
|
char *object, *utype;
|
|
|
|
|
|
|
|
object = xs_dict_get(msg, "object");
|
2022-09-25 23:57:18 +03:00
|
|
|
if (object != NULL && xs_type(object) == XSTYPE_DICT)
|
2022-09-25 08:58:25 +03:00
|
|
|
utype = xs_dict_get(object, "type");
|
|
|
|
else
|
|
|
|
utype = "(null)";
|
2022-09-24 00:49:09 +03:00
|
|
|
|
2022-09-24 11:03:27 +03:00
|
|
|
/* check the signature */
|
|
|
|
/* ... */
|
|
|
|
|
2022-09-24 00:49:09 +03:00
|
|
|
if (strcmp(type, "Follow") == 0) {
|
2022-09-27 08:54:05 +03:00
|
|
|
xs *reply = msg_accept(snac, msg, actor);
|
|
|
|
|
|
|
|
post(snac, reply);
|
|
|
|
|
|
|
|
timeline_add(snac, xs_dict_get(msg, "id"), msg, NULL, NULL);
|
|
|
|
|
|
|
|
follower_add(snac, actor, msg);
|
|
|
|
|
|
|
|
snac_log(snac, xs_fmt("New follower %s", actor));
|
2022-09-24 00:49:09 +03:00
|
|
|
}
|
|
|
|
else
|
2022-09-27 08:54:05 +03:00
|
|
|
/*
|
2022-09-24 00:49:09 +03:00
|
|
|
if (strcmp(type, "Undo") == 0) {
|
|
|
|
}
|
|
|
|
else
|
2022-09-25 08:58:25 +03:00
|
|
|
*/
|
2022-09-24 00:49:09 +03:00
|
|
|
if (strcmp(type, "Create") == 0) {
|
2022-09-25 08:58:25 +03:00
|
|
|
if (strcmp(utype, "Note") == 0) {
|
|
|
|
if (is_muted(snac, actor))
|
|
|
|
snac_log(snac, xs_fmt("ignored 'Note' from muted actor %s", actor));
|
|
|
|
else {
|
|
|
|
char *id = xs_dict_get(object, "id");
|
|
|
|
char *in_reply_to = xs_dict_get(object, "inReplyTo");
|
|
|
|
|
2022-09-26 10:08:03 +03:00
|
|
|
timeline_request(snac, in_reply_to, NULL);
|
2022-09-25 08:58:25 +03:00
|
|
|
|
2022-09-27 08:16:46 +03:00
|
|
|
if (timeline_add(snac, id, object, in_reply_to, NULL))
|
2022-09-25 19:50:53 +03:00
|
|
|
snac_log(snac, xs_fmt("new 'Note' %s %s", actor, id));
|
2022-09-25 08:58:25 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
snac_debug(snac, 1, xs_fmt("ignored 'Create' for object type '%s'", utype));
|
2022-09-24 00:49:09 +03:00
|
|
|
}
|
|
|
|
else
|
2022-09-25 08:58:25 +03:00
|
|
|
/*
|
2022-09-24 00:49:09 +03:00
|
|
|
if (strcmp(type, "Accept") == 0) {
|
|
|
|
}
|
|
|
|
else
|
2022-09-25 18:42:39 +03:00
|
|
|
*/
|
|
|
|
if (strcmp(type, "Like") == 0) {
|
2022-09-26 08:19:45 +03:00
|
|
|
if (xs_type(object) == XSTYPE_DICT)
|
|
|
|
object = xs_dict_get(object, "id");
|
|
|
|
|
|
|
|
timeline_admire(snac, object, actor, 1);
|
|
|
|
snac_log(snac, xs_fmt("new 'Like' %s %s", actor, object));
|
2022-09-25 18:42:39 +03:00
|
|
|
}
|
|
|
|
else
|
2022-09-25 19:28:15 +03:00
|
|
|
if (strcmp(type, "Announce") == 0) {
|
2022-09-26 08:19:45 +03:00
|
|
|
if (xs_type(object) == XSTYPE_DICT)
|
|
|
|
object = xs_dict_get(object, "id");
|
2022-09-25 19:28:15 +03:00
|
|
|
|
2022-09-26 10:08:03 +03:00
|
|
|
timeline_request(snac, object, actor);
|
2022-09-26 08:19:45 +03:00
|
|
|
|
|
|
|
timeline_admire(snac, object, actor, 0);
|
|
|
|
snac_log(snac, xs_fmt("new 'Announce' %s %s", actor, object));
|
2022-09-24 00:49:09 +03:00
|
|
|
}
|
2022-09-25 19:28:15 +03:00
|
|
|
/*
|
2022-09-24 00:49:09 +03:00
|
|
|
else
|
|
|
|
if (strcmp(type, "Update") == 0) {
|
|
|
|
}
|
|
|
|
else
|
|
|
|
if (strcmp(type, "Delete") == 0) {
|
|
|
|
}
|
2022-09-25 08:58:25 +03:00
|
|
|
*/
|
2022-09-25 19:28:15 +03:00
|
|
|
else
|
2022-09-24 00:49:09 +03:00
|
|
|
snac_debug(snac, 1, xs_fmt("process_message type '%s' ignored", type));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-23 20:37:01 +03:00
|
|
|
void process_queue(snac *snac)
|
|
|
|
/* processes the queue */
|
|
|
|
{
|
|
|
|
xs *list;
|
|
|
|
char *p, *fn;
|
|
|
|
int queue_retry_max = xs_number_get(xs_dict_get(srv_config, "queue_retry_max"));
|
|
|
|
|
|
|
|
list = queue(snac);
|
|
|
|
|
|
|
|
p = list;
|
|
|
|
while (xs_list_iter(&p, &fn)) {
|
|
|
|
xs *q_item = dequeue(snac, fn);
|
|
|
|
char *type;
|
|
|
|
|
2022-09-25 22:55:29 +03:00
|
|
|
if (q_item == NULL) {
|
|
|
|
snac_log(snac, xs_fmt("process_queue q_item error"));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2022-09-23 20:37:01 +03:00
|
|
|
if ((type = xs_dict_get(q_item, "type")) == NULL)
|
|
|
|
type = "output";
|
|
|
|
|
|
|
|
if (strcmp(type, "output") == 0) {
|
|
|
|
int status;
|
|
|
|
char *actor = xs_dict_get(q_item, "actor");
|
|
|
|
char *msg = xs_dict_get(q_item, "object");
|
|
|
|
int retries = xs_number_get(xs_dict_get(q_item, "retries"));
|
2022-09-26 12:19:45 +03:00
|
|
|
xs *payload = NULL;
|
|
|
|
int p_size = 0;
|
2022-09-23 20:37:01 +03:00
|
|
|
|
|
|
|
/* deliver */
|
2022-09-26 12:19:45 +03:00
|
|
|
status = send_to_actor(snac, actor, msg, &payload, &p_size);
|
2022-09-23 20:37:01 +03:00
|
|
|
|
|
|
|
if (!valid_status(status)) {
|
|
|
|
/* error sending; reenqueue? */
|
|
|
|
if (retries > queue_retry_max)
|
|
|
|
snac_log(snac, xs_fmt("process_queue giving up %s %d", actor, status));
|
|
|
|
else {
|
|
|
|
/* reenqueue */
|
2022-09-24 11:03:27 +03:00
|
|
|
enqueue_output(snac, msg, actor, retries + 1);
|
2022-09-23 20:37:01 +03:00
|
|
|
snac_log(snac, xs_fmt("process_queue requeue %s %d", actor, retries + 1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-24 00:49:09 +03:00
|
|
|
else
|
|
|
|
if (strcmp(type, "input") == 0) {
|
|
|
|
/* process the message */
|
|
|
|
char *msg = xs_dict_get(q_item, "object");
|
2022-09-24 11:43:57 +03:00
|
|
|
char *req = xs_dict_get(q_item, "req");
|
2022-09-24 00:49:09 +03:00
|
|
|
|
2022-09-24 11:43:57 +03:00
|
|
|
process_message(snac, msg, req);
|
2022-09-24 00:49:09 +03:00
|
|
|
}
|
2022-09-23 20:37:01 +03:00
|
|
|
}
|
|
|
|
}
|
2022-09-23 21:28:23 +03:00
|
|
|
|
|
|
|
|
2022-09-26 10:25:35 +03:00
|
|
|
d_char *recipient_list(snac *snac, char *msg, int expand_public)
|
2022-09-26 10:22:05 +03:00
|
|
|
/* returns the list of recipients for a message */
|
|
|
|
{
|
|
|
|
d_char *list = xs_list_new();
|
|
|
|
char *to = xs_dict_get(msg, "to");
|
|
|
|
char *cc = xs_dict_get(msg, "cc");
|
|
|
|
int n;
|
|
|
|
|
|
|
|
char *lists[] = { to, cc, NULL };
|
|
|
|
for (n = 0; lists[n]; n++) {
|
|
|
|
char *l = lists[n];
|
|
|
|
char *v;
|
|
|
|
|
2022-09-27 08:54:05 +03:00
|
|
|
if (xs_type(l) == XSTYPE_STRING) {
|
|
|
|
if (xs_list_in(list, l) == -1)
|
|
|
|
list = xs_list_append(list, l);
|
|
|
|
}
|
|
|
|
else
|
2022-09-26 10:22:05 +03:00
|
|
|
while (xs_list_iter(&l, &v)) {
|
|
|
|
if (expand_public && strcmp(v, public_address) == 0) {
|
|
|
|
/* iterate the followers and add them */
|
|
|
|
xs *fwers = follower_list(snac);
|
|
|
|
char *fw;
|
|
|
|
|
|
|
|
char *p = fwers;
|
|
|
|
while (xs_list_iter(&p, &fw)) {
|
2022-09-26 12:19:45 +03:00
|
|
|
char *actor = xs_dict_get(fw, "actor");
|
|
|
|
|
|
|
|
if (xs_list_in(list, actor) == -1)
|
|
|
|
list = xs_list_append(list, actor);
|
2022-09-26 10:22:05 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
2022-09-26 12:19:45 +03:00
|
|
|
if (xs_list_in(list, v) == -1)
|
2022-09-26 10:22:05 +03:00
|
|
|
list = xs_list_append(list, v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-26 10:25:35 +03:00
|
|
|
int is_msg_public(snac *snac, char *msg)
|
|
|
|
/* checks if a message is public */
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
xs *rcpts = recipient_list(snac, msg, 0);
|
|
|
|
char *p, *v;
|
|
|
|
|
|
|
|
p = rcpts;
|
|
|
|
while (!ret && xs_list_iter(&p, &v)) {
|
|
|
|
if (strcmp(v, public_address) == 0)
|
|
|
|
ret = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-26 10:28:39 +03:00
|
|
|
void post(snac *snac, char *msg)
|
|
|
|
/* enqueues a message to all its recipients */
|
|
|
|
{
|
|
|
|
xs *rcpts = recipient_list(snac, msg, 1);
|
|
|
|
char *p, *v;
|
|
|
|
|
|
|
|
p = rcpts;
|
|
|
|
while (xs_list_iter(&p, &v)) {
|
|
|
|
enqueue_output(snac, msg, v, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-26 10:22:05 +03:00
|
|
|
/** HTTP handlers */
|
|
|
|
|
2022-09-23 21:59:19 +03:00
|
|
|
int activitypub_get_handler(d_char *req, char *q_path,
|
|
|
|
char **body, int *b_size, char **ctype)
|
|
|
|
{
|
|
|
|
int status = 200;
|
2022-09-25 08:42:57 +03:00
|
|
|
char *accept = xs_dict_get(req, "accept");
|
2022-09-23 21:59:19 +03:00
|
|
|
snac snac;
|
2022-09-24 12:04:35 +03:00
|
|
|
xs *msg = NULL;
|
2022-09-23 21:59:19 +03:00
|
|
|
|
2022-09-24 00:09:09 +03:00
|
|
|
if (accept == NULL)
|
|
|
|
return 400;
|
|
|
|
|
2022-09-23 21:59:19 +03:00
|
|
|
if (xs_str_in(accept, "application/activity+json") == -1 &&
|
|
|
|
xs_str_in(accept, "application/ld+json") == -1)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
xs *l = xs_split_n(q_path, "/", 2);
|
|
|
|
char *uid, *p_path;
|
|
|
|
|
|
|
|
uid = xs_list_get(l, 1);
|
|
|
|
if (!user_open(&snac, uid)) {
|
|
|
|
/* invalid user */
|
|
|
|
srv_log(xs_fmt("activitypub_get_handler bad user %s", uid));
|
|
|
|
return 404;
|
|
|
|
}
|
|
|
|
|
|
|
|
p_path = xs_list_get(l, 2);
|
|
|
|
|
2022-09-26 13:29:26 +03:00
|
|
|
*ctype = "application/activity+json";
|
|
|
|
|
2022-09-23 21:59:19 +03:00
|
|
|
if (p_path == NULL) {
|
|
|
|
/* if there was no component after the user, it's an actor request */
|
2022-09-25 22:02:47 +03:00
|
|
|
msg = msg_actor(&snac);
|
2022-09-26 13:29:26 +03:00
|
|
|
*ctype = "application/ld+json";
|
2022-09-23 21:59:19 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
if (strcmp(p_path, "outbox") == 0) {
|
2022-09-24 11:43:57 +03:00
|
|
|
xs *id = xs_fmt("%s/outbox", snac.actor);
|
|
|
|
msg = msg_collection(&snac, id);
|
2022-09-24 12:04:35 +03:00
|
|
|
|
|
|
|
/* replace the 'orderedItems' with the latest posts */
|
|
|
|
/* ... */
|
2022-09-23 21:59:19 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
if (strcmp(p_path, "followers") == 0 || strcmp(p_path, "following") == 0) {
|
|
|
|
xs *id = xs_fmt("%s/%s", snac.actor, p_path);
|
2022-09-24 11:43:57 +03:00
|
|
|
msg = msg_collection(&snac, id);
|
2022-09-23 21:59:19 +03:00
|
|
|
}
|
|
|
|
else
|
|
|
|
if (xs_startswith(p_path, "p/")) {
|
|
|
|
}
|
|
|
|
else
|
|
|
|
status = 404;
|
|
|
|
|
2022-09-24 12:04:35 +03:00
|
|
|
if (status == 200 && msg != NULL) {
|
2022-09-23 21:59:19 +03:00
|
|
|
*body = xs_json_dumps_pp(msg, 4);
|
|
|
|
*b_size = strlen(*body);
|
|
|
|
}
|
|
|
|
|
|
|
|
user_free(&snac);
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-23 21:28:23 +03:00
|
|
|
int activitypub_post_handler(d_char *req, char *q_path,
|
|
|
|
d_char *payload, int p_size,
|
|
|
|
char **body, int *b_size, char **ctype)
|
|
|
|
/* processes an input message */
|
|
|
|
{
|
2022-09-24 00:09:09 +03:00
|
|
|
int status = 202; /* accepted */
|
2022-09-25 08:42:57 +03:00
|
|
|
char *i_ctype = xs_dict_get(req, "content-type");
|
2022-09-23 21:28:23 +03:00
|
|
|
snac snac;
|
2022-09-27 08:16:46 +03:00
|
|
|
char *v;
|
2022-09-23 21:28:23 +03:00
|
|
|
|
2022-09-24 00:09:09 +03:00
|
|
|
if (i_ctype == NULL)
|
|
|
|
return 400;
|
|
|
|
|
2022-09-23 21:28:23 +03:00
|
|
|
if (xs_str_in(i_ctype, "application/activity+json") == -1 &&
|
|
|
|
xs_str_in(i_ctype, "application/ld+json") == -1)
|
|
|
|
return 0;
|
|
|
|
|
2022-09-24 12:54:35 +03:00
|
|
|
/* decode the message */
|
|
|
|
xs *msg = xs_json_loads(payload);
|
|
|
|
|
|
|
|
if (msg == NULL) {
|
|
|
|
srv_log(xs_fmt("activitypub_post_handler JSON error %s", q_path));
|
|
|
|
status = 400;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* get the user and path */
|
2022-09-23 21:28:23 +03:00
|
|
|
xs *l = xs_split_n(q_path, "/", 2);
|
|
|
|
char *uid;
|
|
|
|
|
|
|
|
if (xs_list_len(l) != 3 || strcmp(xs_list_get(l, 2), "inbox") != 0) {
|
|
|
|
/* strange q_path */
|
2022-09-24 12:54:35 +03:00
|
|
|
srv_debug(1, xs_fmt("activitypub_post_handler unsupported path %s", q_path));
|
2022-09-23 21:28:23 +03:00
|
|
|
return 404;
|
|
|
|
}
|
|
|
|
|
|
|
|
uid = xs_list_get(l, 1);
|
|
|
|
if (!user_open(&snac, uid)) {
|
|
|
|
/* invalid user */
|
2022-09-24 12:54:35 +03:00
|
|
|
srv_debug(1, xs_fmt("activitypub_post_handler bad user %s", uid));
|
2022-09-23 21:28:23 +03:00
|
|
|
return 404;
|
|
|
|
}
|
|
|
|
|
2022-09-27 08:16:46 +03:00
|
|
|
/* if it has a digest, check it now, because
|
|
|
|
later the payload won't be exactly the same */
|
|
|
|
if ((v = xs_dict_get(req, "digest")) != NULL) {
|
|
|
|
xs *s1 = xs_sha256_base64(payload, p_size);
|
|
|
|
xs *s2 = xs_fmt("SHA-256=%s", s1);
|
|
|
|
|
|
|
|
if (strcmp(s2, v) == 0)
|
|
|
|
srv_log(xs_fmt("digest check OK"));
|
|
|
|
else
|
|
|
|
srv_log(xs_fmt("digest check FAILED"));
|
|
|
|
}
|
|
|
|
|
2022-09-24 12:54:35 +03:00
|
|
|
enqueue_input(&snac, msg, req);
|
2022-09-24 00:09:09 +03:00
|
|
|
|
2022-09-23 21:28:23 +03:00
|
|
|
user_free(&snac);
|
|
|
|
|
2022-09-24 00:49:09 +03:00
|
|
|
if (valid_status(status))
|
|
|
|
*ctype = "application/activity+json";
|
|
|
|
|
2022-09-23 21:28:23 +03:00
|
|
|
return status;
|
|
|
|
}
|