summary refs log tree commit diff
path: root/assets/preload-plugins/loginRedirect.js
diff options
context:
space:
mode:
Diffstat (limited to 'assets/preload-plugins/loginRedirect.js')
-rw-r--r--assets/preload-plugins/loginRedirect.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/assets/preload-plugins/loginRedirect.js b/assets/preload-plugins/loginRedirect.js
new file mode 100644
index 00000000..695515b3
--- /dev/null
+++ b/assets/preload-plugins/loginRedirect.js
@@ -0,0 +1,17 @@
+if (window.location.hostname == "127.0.0.1" || window.location.hostname == "localhost")
+	throw "disabling loginRedirect because localhost";
+
+const redirectIfOnLogin = () => {
+	const path = window.location.pathname;
+	if (path == "/login" || path == "/register" || !localStorage.getItem("token")) {
+		window.location.pathname = "/login";
+		window.location.reload();
+	}
+};
+
+const observer = new MutationObserver((mutations) => {
+	redirectIfOnLogin();
+});
+observer.observe(document, { subtree: true, childList: true });
+
+redirectIfOnLogin();
\ No newline at end of file