mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 12:41:04 +00:00
37 lines
1.3 KiB
HTML
37 lines
1.3 KiB
HTML
<!doctype html>
|
|
<!--
|
|
Element only honours a `?loginToken=` on `/` if `mx_sso_hs_url` is already
|
|
in localStorage (element-web apps/web/src/Lifecycle.ts attemptTokenLogin,
|
|
key defined in apps/web/src/BasePlatform.ts). Normally that key is written
|
|
by Element itself at the start of an SSO redirect; freight-api's SSO
|
|
handoff skips that redirect (it already knows the homeserver), so this
|
|
page seeds the key by hand and forwards straight to the login-token URL.
|
|
|
|
freight-api's chat-sso.service.ts links here as
|
|
https://chat.edr.et/sso.html?t=<login_token>&hs=<homeserver base_url>.
|
|
`hs` is passed rather than hardcoded so this file doesn't need to change if
|
|
MATRIX_PUBLIC_BASEURL ever does.
|
|
-->
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Signing in to EDR Chat…</title>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
var params = new URLSearchParams(window.location.search);
|
|
var token = params.get("t");
|
|
var homeserver = params.get("hs");
|
|
if (token && homeserver) {
|
|
localStorage.setItem("mx_sso_hs_url", homeserver);
|
|
window.location.replace(
|
|
"/?loginToken=" + encodeURIComponent(token),
|
|
);
|
|
} else {
|
|
document.body.textContent =
|
|
"Missing sign-in token. Go back to the EDR backoffice and click Chat again.";
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|