From 3931640b6983ffcd1279669b1ed247ef80858a70 Mon Sep 17 00:00:00 2001 From: Kelson Vibber Date: Thu, 21 Sep 2023 01:16:13 +0000 Subject: [PATCH] Put hostname in OAuth page title for web-based clients like Elk --- mastoapi.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mastoapi.c b/mastoapi.c index 8155df5..fbb6843 100644 --- a/mastoapi.c +++ b/mastoapi.c @@ -149,7 +149,7 @@ const char *login_page = "" "\n" "\n" "\n" -"OAuth Identify: Snac2\n" +"%s OAuth - Snac2\n" "\n" "\n" "

%s OAuth identify

\n" @@ -195,7 +195,7 @@ int oauth_get_handler(const xs_dict *req, const char *q_path, if (xs_is_null(state)) state = ""; - *body = xs_fmt(login_page, host, "", host, "oauth/x-snac-login", + *body = xs_fmt(login_page, host, host, "", host, "oauth/x-snac-login", ruri, cid, state, USER_AGENT); *ctype = "text/html"; status = 200; @@ -212,7 +212,7 @@ int oauth_get_handler(const xs_dict *req, const char *q_path, if (strcmp(cmd, "/x-snac-get-token") == 0) { /** **/ const char *host = xs_dict_get(srv_config, "host"); - *body = xs_fmt(login_page, host, "", host, "oauth/x-snac-get-token", + *body = xs_fmt(login_page, host, host, "", host, "oauth/x-snac-get-token", "", "", "", USER_AGENT); *ctype = "text/html"; status = 200; @@ -262,7 +262,7 @@ int oauth_post_handler(const xs_dict *req, const char *q_path, const char *host = xs_dict_get(srv_config, "host"); /* by default, generate another login form with an error */ - *body = xs_fmt(login_page, host, "LOGIN INCORRECT", host, "oauth/x-snac-login", + *body = xs_fmt(login_page, host, host, "LOGIN INCORRECT", host, "oauth/x-snac-login", redir, cid, state, USER_AGENT); *ctype = "text/html"; status = 200; @@ -431,7 +431,7 @@ int oauth_post_handler(const xs_dict *req, const char *q_path, const char *host = xs_dict_get(srv_config, "host"); /* by default, generate another login form with an error */ - *body = xs_fmt(login_page, host, "LOGIN INCORRECT", host, "oauth/x-snac-get-token", + *body = xs_fmt(login_page, host, host, "LOGIN INCORRECT", host, "oauth/x-snac-get-token", "", "", "", USER_AGENT); *ctype = "text/html"; status = 200;