snac2/webfinger.c

200 lines
5.4 KiB
C
Raw Normal View History

2022-09-21 22:12:49 +03:00
/* snac - A simple, minimalistic ActivityPub instance */
2023-07-28 12:34:18 +03:00
/* copyright (c) 2022 - 2023 grunfink et al. / MIT license */
2022-09-21 22:12:49 +03:00
#include "xs.h"
#include "xs_json.h"
#include "xs_curl.h"
2022-09-21 22:12:49 +03:00
#include "snac.h"
int webfinger_request_signed(snac *snac, const char *qs, char **actor, char **user)
/* queries the webfinger for qs and fills the required fields */
{
int status;
xs *payload = NULL;
int p_size = 0;
xs *headers = xs_dict_new();
2022-09-22 12:28:13 +03:00
xs *l = NULL;
d_char *host = NULL;
xs *resource = NULL;
if (xs_startswith(qs, "https:/" "/")) {
/* actor query: pick the host */
2023-05-02 07:49:00 +03:00
xs *s = xs_replace_n(qs, "https:/" "/", "", 1);
2022-09-22 12:28:13 +03:00
l = xs_split_n(s, "/", 1);
host = xs_list_get(l, 0);
resource = xs_dup(qs);
}
else {
/* it's a user */
xs *s = xs_strip_chars_i(xs_dup(qs), "@.");
l = xs_split_n(s, "@", 1);
if (xs_list_len(l) == 2) {
2022-09-22 12:28:13 +03:00
host = xs_list_get(l, 1);
2022-11-09 09:34:04 +03:00
resource = xs_fmt("acct:%s", s);
}
}
if (host == NULL || resource == NULL)
return 400;
2023-05-12 21:33:29 +03:00
headers = xs_dict_append(headers, "accept", "application/json");
headers = xs_dict_append(headers, "user-agent", USER_AGENT);
2022-09-22 12:28:13 +03:00
/* is it a query about one of us? */
if (strcmp(host, xs_dict_get(srv_config, "host")) == 0) {
/* route internally */
xs *req = xs_dict_new();
xs *q_vars = xs_dict_new();
char *ctype;
q_vars = xs_dict_append(q_vars, "resource", resource);
req = xs_dict_append(req, "q_vars", q_vars);
status = webfinger_get_handler(req, "/.well-known/webfinger",
&payload, &p_size, &ctype);
2022-09-22 12:28:13 +03:00
}
else {
xs *url = xs_fmt("https:/" "/%s/.well-known/webfinger?resource=%s", host, resource);
if (snac == NULL)
xs_http_request("GET", url, headers, NULL, 0, &status, &payload, &p_size, 0);
else
http_signed_request(snac, "GET", url, headers, NULL, 0, &status, &payload, &p_size, 0);
2022-09-22 12:28:13 +03:00
}
if (valid_status(status)) {
2022-09-22 12:28:13 +03:00
xs *obj = xs_json_loads(payload);
if (user != NULL) {
2022-09-22 12:35:44 +03:00
char *subject = xs_dict_get(obj, "subject");
if (subject)
2023-05-02 07:49:00 +03:00
*user = xs_replace_n(subject, "acct:", "", 1);
2022-09-22 12:28:13 +03:00
}
if (actor != NULL) {
char *list = xs_dict_get(obj, "links");
char *v;
while (xs_list_iter(&list, &v)) {
2022-09-25 23:57:18 +03:00
if (xs_type(v) == XSTYPE_DICT) {
2022-09-22 12:28:13 +03:00
char *type = xs_dict_get(v, "type");
2023-05-07 08:42:47 +03:00
if (type && (strcmp(type, "application/activity+json") == 0 ||
strcmp(type, "application/ld+json; profile=\"https://www.w3.org/ns/activitystreams\"") == 0)) {
2022-09-22 12:28:13 +03:00
*actor = xs_dup(xs_dict_get(v, "href"));
break;
}
}
}
}
}
return status;
}
int webfinger_request(const char *qs, char **actor, char **user)
/* queries the webfinger for qs and fills the required fields */
{
return webfinger_request_signed(NULL, qs, actor, user);
}
int webfinger_get_handler(d_char *req, char *q_path,
char **body, int *b_size, char **ctype)
2022-09-21 22:12:49 +03:00
/* serves webfinger queries */
{
int status;
2023-05-04 10:28:36 +03:00
(void)b_size;
2022-09-21 22:12:49 +03:00
if (strcmp(q_path, "/.well-known/webfinger") != 0)
return 0;
2022-09-21 22:12:49 +03:00
char *q_vars = xs_dict_get(req, "q_vars");
char *resource = xs_dict_get(q_vars, "resource");
2022-09-21 22:12:49 +03:00
if (resource == NULL)
return 400;
2022-09-21 22:12:49 +03:00
snac snac;
int found = 0;
if (xs_startswith(resource, "https:/" "/")) {
/* actor search: find a user with this actor */
xs *list = user_list();
char *p, *uid;
2022-09-21 22:12:49 +03:00
p = list;
while (xs_list_iter(&p, &uid)) {
if (user_open(&snac, uid)) {
if (strcmp(snac.actor, resource) == 0) {
found = 1;
break;
}
user_free(&snac);
}
}
}
else
if (xs_startswith(resource, "acct:")) {
/* it's an account name */
2023-05-02 07:49:00 +03:00
xs *an = xs_replace_n(resource, "acct:", "", 1);
2022-09-21 22:12:49 +03:00
xs *l = NULL;
/* strip a possible leading @ */
if (xs_startswith(an, "@"))
2023-01-12 11:28:02 +03:00
an = xs_crop_i(an, 1, 0);
2022-09-21 22:12:49 +03:00
l = xs_split_n(an, "@", 1);
if (xs_list_len(l) == 2) {
char *uid = xs_list_get(l, 0);
char *host = xs_list_get(l, 1);
2022-09-21 22:12:49 +03:00
if (strcmp(host, xs_dict_get(srv_config, "host")) == 0)
found = user_open(&snac, uid);
}
}
if (found) {
/* build the object */
xs *acct;
xs *aaj = xs_dict_new();
xs *links = xs_list_new();
xs *obj = xs_dict_new();
d_char *j;
2022-09-21 22:12:49 +03:00
acct = xs_fmt("acct:%s@%s",
xs_dict_get(snac.config, "uid"), xs_dict_get(srv_config, "host"));
aaj = xs_dict_append(aaj, "rel", "self");
aaj = xs_dict_append(aaj, "type", "application/activity+json");
aaj = xs_dict_append(aaj, "href", snac.actor);
links = xs_list_append(links, aaj);
obj = xs_dict_append(obj, "subject", acct);
obj = xs_dict_append(obj, "links", links);
j = xs_json_dumps_pp(obj, 4);
2022-09-21 22:12:49 +03:00
user_free(&snac);
status = 200;
*body = j;
*ctype = "application/json";
2022-09-21 22:12:49 +03:00
}
2022-09-22 12:28:13 +03:00
else
status = 404;
return status;
2022-09-21 22:12:49 +03:00
}