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

97 lines
2.4 KiB
JavaScript
Raw Normal View History

2017-05-18 22:08:54 +02:00
"use strict";
const socket = require("../socket");
const storage = require("../localStorage");
const {vueApp} = require("../vue");
2019-11-11 20:18:55 +01:00
const {navigate} = require("../router");
const store = require("../store").default;
2019-11-05 20:29:51 +01:00
let lastServerHash = null;
2017-05-18 22:08:54 +02:00
2019-11-05 20:29:51 +01:00
socket.on("auth:success", function() {
store.commit("currentUserVisibleError", "Loading messages…");
updateLoadingMessage();
2019-11-05 20:29:51 +01:00
});
socket.on("auth:failed", function() {
storage.remove("token");
if (store.state.appLoaded) {
return reloadPage("Authentication failed, reloading…");
}
showSignIn();
vueApp.$emit("auth:failed");
2019-11-05 20:29:51 +01:00
});
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;
2019-11-05 20:29:51 +01:00
socket.emit("auth:perform", {user, token, lastMessage, openChannel});
} 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
}
if (vueApp.$route.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;
}
}