summary refs log tree commit diff
path: root/src-slowcord/login/public/js/handler.js
blob: 2d7b164b954aaecee25407bfdc268adb0a9f7992 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
const handleSubmit = async (path, body) => {
	const failureMessage = document.getElementById("failure");

	var response = await fetch(path, {
		method: "POST",
		headers: {
			"Content-Type": "application/json",
		},
		body: JSON.stringify(body),
	});

	const json = await response.json();
	if (json.token) {
		window.localStorage.setItem("token", `"${json.token}"`);
		window.location.href = "/app";
		return;
	}

	if (json.ticket) {
		// my terrible solution to 2fa
		const twoFactorForm = document.forms["2fa"];
		const loginForm = document.forms["login"];

		twoFactorForm.style.display = "flex";
		loginForm.style.display = "none";

		twoFactorForm.ticket.value = json.ticket;
		return;
	}

	// Very fun error message here lol
	const error = json.errors
		? Object.values(json.errors)[0]._errors[0].message
		: json.captcha_key
		? "Captcha required"
		: json.message;

	failureMessage.innerHTML = error;
	failureMessage.style.display = "block";
};