aboutsummaryrefslogtreecommitdiff
path: root/webfinger.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2024-09-18 19:56:40 +0200
committerdefault <nobody@localhost>2024-09-18 19:56:40 +0200
commitee63e2a78cc8a9ab448349920be932c738e1f19e (patch)
tree5affcc7c36de97a82d5963736db07805de2c3747 /webfinger.c
parent97cc35f577dbe390c5c6c841e41f6a82b32aff9d (diff)
New function webfinger_request_fake().
Diffstat (limited to 'webfinger.c')
-rw-r--r--webfinger.c27
1 files changed, 23 insertions, 4 deletions
diff --git a/webfinger.c b/webfinger.c
index 0c18362..bd7f946 100644
--- a/webfinger.c
+++ b/webfinger.c
@@ -8,7 +8,7 @@
#include "snac.h"
-int webfinger_request_signed(snac *snac, const char *qs, char **actor, char **user)
+int webfinger_request_signed(snac *snac, const char *qs, xs_str **actor, xs_str **user)
/* queries the webfinger for qs and fills the required fields */
{
int status;
@@ -117,15 +117,34 @@ int webfinger_request_signed(snac *snac, const char *qs, char **actor, char **us
}
-int webfinger_request(const char *qs, char **actor, char **user)
+int webfinger_request(const char *qs, xs_str **actor, xs_str **user)
/* queries the webfinger for qs and fills the required fields */
{
return webfinger_request_signed(NULL, qs, actor, user);
}
-int webfinger_get_handler(xs_dict *req, char *q_path,
- char **body, int *b_size, char **ctype)
+int webfinger_request_fake(const char *qs, xs_str **actor, xs_str **user)
+/* queries the webfinger and, if it fails, a user is faked if possible */
+{
+ int status;
+
+ if (!valid_status(status = webfinger_request(qs, actor, user))) {
+ if (xs_startswith(qs, "https:/") || xs_startswith(qs, "http:/")) {
+ xs *l = xs_split(qs, "/");
+
+ /* i'll end up in hell for this */
+ *user = xs_fmt("%s@%s", xs_list_get(l, 2), xs_list_get(l, -1));
+ status = HTTP_STATUS_RESET_CONTENT;
+ }
+ }
+
+ return status;
+}
+
+
+int webfinger_get_handler(xs_dict *req, const char *q_path,
+ xs_val **body, int *b_size, char **ctype)
/* serves webfinger queries */
{
int status;