thelounge/client/js/socket-events/auth.js

101 lines
2.5 KiB
JavaScript
Raw Normal View History

2017-05-18 22:08:54 +02:00
"use strict";
2019-11-16 18:24:03 +01:00
import socket from "../socket";
import storage from "../localStorage";
import {router, navigate} from "../router";
import store from "../store";
import location from "../location";
2019-11-05 20:29:51 +01:00
let lastServerHash = null;
2017-05-18 22:08:54 +02:00
socket.on("auth:success", function () {
2019-11-05 20:29:51 +01:00
store.commit("currentUserVisibleError", "Loading messages…");
updateLoadingMessage();
2019-11-05 20:29:51 +01:00
});
socket.on("auth:failed", function () {
2019-11-05 20:29:51 +01:00
storage.remove("token");
if (store.state.appLoaded) {
return reloadPage("Authentication failed, reloading…");
}
showSignIn();
});
socket.on("auth:start", function (serverHash) {
2017-08-28 22:06:28 +02:00
// If we reconnected and serverHash differs, that means the server restarted
// And we will reload the page to grab the latest version
2019-11-05 20:29:51 +01:00
if (lastServerHash && serverHash !== lastServerHash) {
return reloadPage("Server restarted, reloading…");
}
2019-11-05 20:29:51 +01:00
lastServerHash = serverHash;
const user = storage.get("user");
2019-11-05 20:29:51 +01:00
const token = storage.get("token");
const doFastAuth = user && token;
2017-05-18 22:08:54 +02:00
2019-11-05 20:29:51 +01:00
// If we reconnect and no longer have a stored token, reload the page
if (store.state.appLoaded && !doFastAuth) {
return reloadPage("Authentication failed, reloading…");
}
2019-11-05 20:29:51 +01:00
// If we have user and token stored, perform auth without showing sign-in first
if (doFastAuth) {
store.commit("currentUserVisibleError", "Authorizing…");
updateLoadingMessage();
2018-07-15 22:23:49 +02:00
2019-11-05 20:29:51 +01:00
let lastMessage = -1;
2018-07-15 22:23:49 +02:00
2019-11-05 20:29:51 +01:00
for (const network of store.state.networks) {
for (const chan of network.channels) {
if (chan.messages.length > 0) {
const id = chan.messages[chan.messages.length - 1].id;
2019-11-05 20:29:51 +01:00
if (lastMessage < id) {
lastMessage = id;
2018-07-15 22:23:49 +02:00
}
}
}
2019-11-05 20:29:51 +01:00
}
2018-07-15 22:23:49 +02:00
2019-11-05 20:29:51 +01:00
const openChannel =
(store.state.activeChannel && store.state.activeChannel.channel.id) || null;
socket.emit("auth:perform", {
user,
token,
lastMessage,
openChannel,
hasConfig: store.state.serverConfiguration !== null,
});
2019-11-05 20:29:51 +01:00
} else {
showSignIn();
2017-05-18 22:08:54 +02:00
}
2019-11-05 20:29:51 +01:00
});
2017-05-18 22:08:54 +02:00
2019-11-05 20:29:51 +01:00
function showSignIn() {
// TODO: this flashes grey background because it takes a little time for vue to mount signin
if (window.g_TheLoungeRemoveLoading) {
window.g_TheLoungeRemoveLoading();
2017-05-18 22:08:54 +02:00
}
2021-03-29 04:55:35 +02:00
if (router.currentRoute.value.name !== "SignIn") {
2019-11-11 20:18:55 +01:00
navigate("SignIn");
}
2019-11-05 20:29:51 +01:00
}
function reloadPage(message) {
socket.disconnect();
store.commit("currentUserVisibleError", message);
location.reload(true);
}
function updateLoadingMessage() {
const loading = document.getElementById("loading-page-message");
if (loading) {
loading.textContent = store.state.currentUserVisibleError;
}
}