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

81 lines
1.9 KiB
JavaScript
Raw Normal View History

2017-05-18 16:08:54 -04:00
"use strict";
const $ = require("jquery");
const socket = require("../socket");
const storage = require("../localStorage");
const utils = require("../utils");
2019-02-18 04:18:32 -05:00
const {vueApp, getActiveWindowComponent} = require("../vue");
2017-05-18 16:08:54 -04:00
socket.on("auth", function(data) {
2017-08-28 16:06:28 -04:00
// If we reconnected and serverHash differs, that means the server restarted
// And we will reload the page to grab the latest version
if (utils.serverHash > -1 && data.serverHash > -1 && data.serverHash !== utils.serverHash) {
socket.disconnect();
vueApp.$store.commit("isConnected", false);
2018-09-09 09:09:19 -04:00
vueApp.currentUserVisibleError = "Server restarted, reloading…";
location.reload(true);
return;
}
if (data.serverHash > -1) {
utils.serverHash = data.serverHash;
2017-05-18 16:08:54 -04:00
2019-02-18 04:18:32 -05:00
vueApp.activeWindow = "SignIn";
} else {
2019-02-18 04:18:32 -05:00
getActiveWindowComponent().inFlight = false;
}
let token;
const user = storage.get("user");
2017-05-18 16:08:54 -04:00
if (!data.success) {
2019-02-18 04:18:32 -05:00
if (vueApp.activeWindow !== "SignIn") {
socket.disconnect();
vueApp.$store.commit("isConnected", false);
2018-09-09 09:09:19 -04:00
vueApp.currentUserVisibleError = "Authentication failed, reloading…";
location.reload();
return;
}
2017-05-18 16:08:54 -04:00
storage.remove("token");
2019-02-18 04:18:32 -05:00
getActiveWindowComponent().errorShown = true;
} else if (user) {
2017-05-18 16:08:54 -04:00
token = storage.get("token");
2017-05-18 16:08:54 -04:00
if (token) {
2018-09-09 09:09:19 -04:00
vueApp.currentUserVisibleError = "Authorizing…";
$("#loading-page-message").text(vueApp.currentUserVisibleError);
2018-07-15 16:23:49 -04:00
let lastMessage = -1;
for (const network of vueApp.networks) {
for (const chan of network.channels) {
if (chan.messages.length > 0) {
const id = chan.messages[chan.messages.length - 1].id;
if (lastMessage < id) {
lastMessage = id;
2018-07-15 16:23:49 -04:00
}
}
}
}
const openChannel = (vueApp.activeChannel && vueApp.activeChannel.channel.id) || null;
socket.emit("auth", {user, token, lastMessage, openChannel});
2017-05-18 16:08:54 -04:00
}
}
if (token) {
return;
}
2018-07-08 04:52:05 -04:00
$("#loading").remove();
2017-09-12 08:52:16 -04:00
$("#footer")
.find(".sign-in")
2017-05-18 16:08:54 -04:00
.trigger("click", {
pushState: false,
2017-09-12 08:52:16 -04:00
});
2017-05-18 16:08:54 -04:00
});