summaryrefslogtreecommitdiff
path: root/webfinger.c
diff options
context:
space:
mode:
authorkhm <khm@sciops.net>2024-02-16 11:53:23 -0800
committerkhm <khm@sciops.net>2024-02-16 11:53:23 -0800
commit62dfe46bfbc9a9588c33aa2f4818932de0d14345 (patch)
tree0cb583edb4a3a8c8be18253d1cf1bf9650a513d2 /webfinger.c
parent5d4e0b0914ca5410c245aa1d4b4db4580a5ca278 (diff)
webfinger: add webfinger profile page to links
Diffstat (limited to 'webfinger.c')
-rw-r--r--webfinger.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/webfinger.c b/webfinger.c
index 3f28b81..8e03698 100644
--- a/webfinger.c
+++ b/webfinger.c
@@ -172,6 +172,7 @@ int webfinger_get_handler(xs_dict *req, char *q_path,
/* build the object */
xs *acct;
xs *aaj = xs_dict_new();
+ xs *prof = xs_dict_new();
xs *links = xs_list_new();
xs *obj = xs_dict_new();
@@ -184,6 +185,12 @@ int webfinger_get_handler(xs_dict *req, char *q_path,
links = xs_list_append(links, aaj);
+ prof = xs_dict_append(prof, "rel", "http://webfinger.net/rel/profile-page");
+ prof = xs_dict_append(prof, "type", "text/html";
+ prof = xs_dict_append(prof, "href", snac.actor);
+
+ links = xs_list_append(links, prof);
+
char *avatar = xs_dict_get(snac.config, "avatar");
if (!xs_is_null(avatar) && *avatar) {
xs *d = xs_dict_new();