2022-09-23 15:33:33 +00: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"
|
|
|
|
|
|
|
|
#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 16:15:59 +00:00
|
|
|
xs *payload = NULL;
|
2022-09-23 15:33:33 +00:00
|
|
|
int p_size;
|
2022-09-23 16:15:59 +00:00
|
|
|
char *ctype;
|
2022-09-23 15:33:33 +00: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 16:15:59 +00:00
|
|
|
if (dbglevel >= 3) {
|
|
|
|
xs *j = xs_json_dumps_pp(response, 4);
|
|
|
|
fprintf(stderr, "%s\n", j);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* 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 15:33:33 +00:00
|
|
|
}
|
|
|
|
|
2022-09-23 16:15:59 +00:00
|
|
|
if (!valid_status(status))
|
|
|
|
*data = NULL;
|
|
|
|
|
2022-09-23 15:33:33 +00:00
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int actor_request(snac *snac, char *actor, d_char **data)
|
|
|
|
/* request an actor */
|
|
|
|
{
|
2022-09-23 16:15:59 +00:00
|
|
|
int status, status2;
|
|
|
|
xs *payload = NULL;
|
2022-09-23 15:33:33 +00:00
|
|
|
|
|
|
|
/* get from disk first */
|
|
|
|
status = actor_get(snac, actor, data);
|
|
|
|
|
|
|
|
if (status == 200)
|
2022-09-23 16:15:59 +00:00
|
|
|
return status;
|
2022-09-23 15:33:33 +00:00
|
|
|
|
2022-09-23 16:15:59 +00:00
|
|
|
/* actor data non-existent or stale: get from the net */
|
|
|
|
status2 = activitypub_request(snac, actor, &payload);
|
2022-09-23 15:33:33 +00:00
|
|
|
|
2022-09-23 16:15:59 +00:00
|
|
|
if (valid_status(status2)) {
|
|
|
|
/* renew data */
|
2022-09-23 16:46:30 +00:00
|
|
|
status = actor_add(snac, actor, payload);
|
2022-09-23 16:15:59 +00:00
|
|
|
|
|
|
|
*data = payload;
|
|
|
|
payload = NULL;
|
|
|
|
}
|
2022-09-23 15:33:33 +00:00
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
2022-09-23 17:07:45 +00: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;
|
|
|
|
|
|
|
|
response = http_signed_request(snac, "POST", inbox,
|
|
|
|
NULL, msg, strlen(msg), &status, payload, p_size);
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|