mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-22 00:43:49 +01:00
[mastodon-client] Fix double-urlencoded redirect URLs
This fixes login in elk.zone
This commit is contained in:
parent
e5dc89c1cb
commit
2c0a006af6
@ -102,6 +102,20 @@ if ($i) {
|
||||
});
|
||||
}
|
||||
|
||||
const getUrlParams = () =>
|
||||
window.location.search
|
||||
.substring(1)
|
||||
.split("&")
|
||||
.reduce((result, query) => {
|
||||
const [k, v] = query.split("=");
|
||||
result[k] = decodeURIComponent(v);
|
||||
return result;
|
||||
}, {});
|
||||
|
||||
const redirectUri = getUrlParams()['redirect_uri'];
|
||||
if (redirectUri !== props.redirect_uri)
|
||||
console.warn(`Mismatching redirect_uris between props (${props.redirect_uri}) and getUrlParams (${redirectUri})`);
|
||||
|
||||
function getIcon(p: string) {
|
||||
if (p.startsWith("write")) return "pencil-simple";
|
||||
else if(p.startsWith("read")) return "eye";
|
||||
@ -114,7 +128,7 @@ async function accept(): Promise<void> {
|
||||
state = "waiting";
|
||||
const res = await os.apiJson("v1/iceshrimp/auth/code", {
|
||||
client_id: props.client_id,
|
||||
redirect_uri: props.redirect_uri,
|
||||
redirect_uri: redirectUri,
|
||||
scopes: _scopes,
|
||||
}).catch(r => {
|
||||
message = r;
|
||||
@ -125,7 +139,7 @@ async function accept(): Promise<void> {
|
||||
if (props.redirect_uri !== 'urn:ietf:wg:oauth:2.0:oob') {
|
||||
state = "accepted";
|
||||
location.href = appendQuery(
|
||||
props.redirect_uri,
|
||||
redirectUri,
|
||||
query({
|
||||
code: res.code,
|
||||
}),
|
||||
|
Loading…
Reference in New Issue
Block a user