2021-01-05 18:16:23 +00:00
|
|
|
import { Modal } from "./modules/modal.js";
|
2021-05-07 13:32:51 +00:00
|
|
|
import { notificationBox, whichAnimationEvent } from "./modules/common.js";
|
2021-05-29 16:43:11 +00:00
|
|
|
import { _get, _post, toggleLoader, addLoader, removeLoader, toDateString } from "./modules/common.js";
|
2021-01-12 23:43:44 +00:00
|
|
|
import { loadLangSelector } from "./modules/lang.js";
|
2020-10-22 16:50:40 +00:00
|
|
|
|
|
|
|
interface formWindow extends Window {
|
|
|
|
validationStrings: pwValStrings;
|
2020-11-04 20:46:06 +00:00
|
|
|
invalidPassword: string;
|
2021-05-07 00:08:12 +00:00
|
|
|
successModal: Modal;
|
|
|
|
telegramModal: Modal;
|
2021-05-21 20:35:25 +00:00
|
|
|
discordModal: Modal;
|
2021-05-29 16:43:11 +00:00
|
|
|
matrixModal: Modal;
|
2021-05-07 00:08:12 +00:00
|
|
|
confirmationModal: Modal
|
2021-01-14 14:22:20 +00:00
|
|
|
code: string;
|
2021-01-25 18:01:18 +00:00
|
|
|
messages: { [key: string]: string };
|
2021-01-30 19:19:12 +00:00
|
|
|
confirmation: boolean;
|
2021-05-07 00:08:12 +00:00
|
|
|
telegramRequired: boolean;
|
|
|
|
telegramPIN: string;
|
2021-05-21 20:35:25 +00:00
|
|
|
discordRequired: boolean;
|
|
|
|
discordPIN: string;
|
|
|
|
discordStartCommand: string;
|
2021-05-23 18:50:03 +00:00
|
|
|
discordInviteLink: boolean;
|
|
|
|
discordServerName: string;
|
2021-05-29 16:43:11 +00:00
|
|
|
matrixRequired: boolean;
|
|
|
|
matrixUserID: string;
|
2021-02-28 15:41:06 +00:00
|
|
|
userExpiryEnabled: boolean;
|
2021-04-08 19:43:01 +00:00
|
|
|
userExpiryMonths: number;
|
2021-02-28 15:41:06 +00:00
|
|
|
userExpiryDays: number;
|
|
|
|
userExpiryHours: number;
|
|
|
|
userExpiryMinutes: number;
|
|
|
|
userExpiryMessage: string;
|
2020-10-22 16:50:40 +00:00
|
|
|
}
|
|
|
|
|
2020-10-20 22:00:30 +00:00
|
|
|
interface pwValString {
|
|
|
|
singular: string;
|
|
|
|
plural: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface pwValStrings {
|
2021-01-05 18:16:23 +00:00
|
|
|
length: pwValString;
|
|
|
|
uppercase: pwValString;
|
|
|
|
lowercase: pwValString;
|
|
|
|
number: pwValString;
|
|
|
|
special: pwValString;
|
|
|
|
[ type: string ]: pwValString;
|
2020-10-20 22:00:30 +00:00
|
|
|
}
|
|
|
|
|
2021-01-12 23:43:44 +00:00
|
|
|
loadLangSelector("form");
|
2021-01-11 19:17:43 +00:00
|
|
|
|
2021-05-07 00:08:12 +00:00
|
|
|
window.notifications = new notificationBox(document.getElementById("notification-box") as HTMLDivElement);
|
|
|
|
|
2021-05-07 13:32:51 +00:00
|
|
|
window.animationEvent = whichAnimationEvent();
|
|
|
|
|
2021-05-07 00:08:12 +00:00
|
|
|
window.successModal = new Modal(document.getElementById("modal-success"), true);
|
|
|
|
|
2021-05-07 13:32:51 +00:00
|
|
|
var telegramVerified = false;
|
2021-05-07 00:08:12 +00:00
|
|
|
if (window.telegramEnabled) {
|
|
|
|
window.telegramModal = new Modal(document.getElementById("modal-telegram"), window.telegramRequired);
|
2021-05-07 13:32:51 +00:00
|
|
|
const telegramButton = document.getElementById("link-telegram") as HTMLSpanElement;
|
|
|
|
telegramButton.onclick = () => {
|
2021-05-07 00:08:12 +00:00
|
|
|
const waiting = document.getElementById("telegram-waiting") as HTMLSpanElement;
|
|
|
|
toggleLoader(waiting);
|
|
|
|
window.telegramModal.show();
|
2021-05-07 13:32:51 +00:00
|
|
|
let modalClosed = false;
|
2021-05-07 17:20:35 +00:00
|
|
|
window.telegramModal.onclose = () => {
|
|
|
|
modalClosed = true;
|
|
|
|
toggleLoader(waiting);
|
|
|
|
}
|
2021-05-07 00:08:12 +00:00
|
|
|
const checkVerified = () => _get("/invite/" + window.code + "/telegram/verified/" + window.telegramPIN, null, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
if (req.status == 401) {
|
|
|
|
window.telegramModal.close();
|
2021-05-07 13:32:51 +00:00
|
|
|
window.notifications.customError("invalidCodeError", window.messages["errorInvalidCode"]);
|
2021-05-07 00:08:12 +00:00
|
|
|
return;
|
|
|
|
} else if (req.status == 200) {
|
|
|
|
if (req.response["success"] as boolean) {
|
2021-05-07 13:32:51 +00:00
|
|
|
telegramVerified = true;
|
|
|
|
waiting.classList.add("~positive");
|
|
|
|
waiting.classList.remove("~info");
|
2021-05-21 20:35:25 +00:00
|
|
|
window.notifications.customPositive("telegramVerified", "", window.messages["verified"]);
|
2021-05-07 13:32:51 +00:00
|
|
|
setTimeout(window.telegramModal.close, 2000);
|
|
|
|
telegramButton.classList.add("unfocused");
|
|
|
|
document.getElementById("contact-via").classList.remove("unfocused");
|
|
|
|
const radio = document.getElementById("contact-via-telegram") as HTMLInputElement;
|
|
|
|
radio.checked = true;
|
|
|
|
} else if (!modalClosed) {
|
2021-05-07 00:08:12 +00:00
|
|
|
setTimeout(checkVerified, 1500);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
checkVerified();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-05-23 18:50:03 +00:00
|
|
|
interface DiscordInvite {
|
|
|
|
invite: string;
|
|
|
|
icon: string;
|
|
|
|
}
|
|
|
|
|
2021-05-21 20:35:25 +00:00
|
|
|
var discordVerified = false;
|
|
|
|
if (window.discordEnabled) {
|
|
|
|
window.discordModal = new Modal(document.getElementById("modal-discord"), window.discordRequired);
|
|
|
|
const discordButton = document.getElementById("link-discord") as HTMLSpanElement;
|
2021-05-23 18:50:03 +00:00
|
|
|
if (window.discordInviteLink) {
|
|
|
|
_get("/invite/" + window.code + "/discord/invite", null, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
if (req.status != 200) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const inv = req.response as DiscordInvite;
|
|
|
|
const link = document.getElementById("discord-invite") as HTMLAnchorElement;
|
|
|
|
link.classList.add("subheading", "link-center");
|
|
|
|
link.href = inv.invite;
|
|
|
|
link.target = "_blank";
|
|
|
|
link.innerHTML = `<span class="img-circle lg mr-1"><img class="img-circle" src="${inv.icon}" width="64" height="64"></span>${window.discordServerName}`;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2021-05-21 20:35:25 +00:00
|
|
|
discordButton.onclick = () => {
|
|
|
|
const waiting = document.getElementById("discord-waiting") as HTMLSpanElement;
|
|
|
|
toggleLoader(waiting);
|
|
|
|
window.discordModal.show();
|
|
|
|
let modalClosed = false;
|
|
|
|
window.discordModal.onclose = () => {
|
|
|
|
modalClosed = true;
|
|
|
|
toggleLoader(waiting);
|
|
|
|
}
|
|
|
|
const checkVerified = () => _get("/invite/" + window.code + "/discord/verified/" + window.discordPIN, null, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
if (req.status == 401) {
|
|
|
|
window.discordModal.close();
|
|
|
|
window.notifications.customError("invalidCodeError", window.messages["errorInvalidCode"]);
|
|
|
|
return;
|
|
|
|
} else if (req.status == 200) {
|
|
|
|
if (req.response["success"] as boolean) {
|
|
|
|
discordVerified = true;
|
|
|
|
waiting.classList.add("~positive");
|
|
|
|
waiting.classList.remove("~info");
|
|
|
|
window.notifications.customPositive("discordVerified", "", window.messages["verified"]);
|
|
|
|
setTimeout(window.discordModal.close, 2000);
|
|
|
|
discordButton.classList.add("unfocused");
|
|
|
|
document.getElementById("contact-via").classList.remove("unfocused");
|
|
|
|
const radio = document.getElementById("contact-via-discord") as HTMLInputElement;
|
|
|
|
radio.checked = true;
|
|
|
|
} else if (!modalClosed) {
|
|
|
|
setTimeout(checkVerified, 1500);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
checkVerified();
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-05-29 16:43:11 +00:00
|
|
|
var matrixVerified = false;
|
|
|
|
var matrixPIN = "";
|
|
|
|
if (window.matrixEnabled) {
|
|
|
|
window.matrixModal = new Modal(document.getElementById("modal-matrix"), window.matrixRequired);
|
|
|
|
const matrixButton = document.getElementById("link-matrix") as HTMLSpanElement;
|
|
|
|
matrixButton.onclick = window.matrixModal.show;
|
|
|
|
const submitButton = document.getElementById("matrix-send") as HTMLSpanElement;
|
|
|
|
const input = document.getElementById("matrix-userid") as HTMLInputElement;
|
|
|
|
let userID = "";
|
|
|
|
submitButton.onclick = () => {
|
|
|
|
addLoader(submitButton);
|
|
|
|
if (userID == "") {
|
|
|
|
const send = {
|
|
|
|
user_id: input.value
|
|
|
|
};
|
|
|
|
_post("/invite/" + window.code + "/matrix/user", send, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
removeLoader(submitButton);
|
|
|
|
userID = input.value;
|
|
|
|
if (req.status != 200) {
|
|
|
|
window.notifications.customError("errorUnknown", window.messages["errorUnknown"]);
|
|
|
|
window.matrixModal.close();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
submitButton.classList.add("~positive");
|
|
|
|
submitButton.classList.remove("~info");
|
|
|
|
setTimeout(() => {
|
|
|
|
submitButton.classList.add("~info");
|
|
|
|
submitButton.classList.remove("~positive");
|
|
|
|
}, 2000);
|
|
|
|
input.placeholder = "PIN";
|
|
|
|
input.value = "";
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
_get("/invite/" + window.code + "/matrix/verified/" + userID + "/" + input.value, null, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
removeLoader(submitButton)
|
|
|
|
const valid = req.response["success"] as boolean;
|
|
|
|
if (valid) {
|
|
|
|
window.matrixModal.close();
|
|
|
|
window.notifications.customPositive("successVerified", "", window.messages["verified"]);
|
|
|
|
matrixVerified = true;
|
|
|
|
matrixPIN = input.value;
|
|
|
|
matrixButton.classList.add("unfocused");
|
|
|
|
document.getElementById("contact-via").classList.remove("unfocused");
|
|
|
|
const radio = document.getElementById("contact-via-discord") as HTMLInputElement;
|
|
|
|
radio.checked = true;
|
|
|
|
} else {
|
|
|
|
window.notifications.customError("errorInvalidPIN", window.messages["errorInvalidPIN"]);
|
|
|
|
submitButton.classList.add("~critical");
|
|
|
|
submitButton.classList.remove("~info");
|
|
|
|
setTimeout(() => {
|
|
|
|
submitButton.classList.add("~info");
|
|
|
|
submitButton.classList.remove("~critical");
|
|
|
|
}, 800);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-01-30 19:19:12 +00:00
|
|
|
if (window.confirmation) {
|
|
|
|
window.confirmationModal = new Modal(document.getElementById("modal-confirmation"), true);
|
|
|
|
}
|
2021-01-05 18:16:23 +00:00
|
|
|
declare var window: formWindow;
|
|
|
|
|
2021-02-28 15:41:06 +00:00
|
|
|
if (window.userExpiryEnabled) {
|
|
|
|
const messageEl = document.getElementById("user-expiry-message") as HTMLElement;
|
2021-02-28 00:44:28 +00:00
|
|
|
const calculateTime = () => {
|
|
|
|
let time = new Date()
|
2021-04-08 19:43:01 +00:00
|
|
|
time.setMonth(time.getMonth() + window.userExpiryMonths);
|
2021-02-28 15:41:06 +00:00
|
|
|
time.setDate(time.getDate() + window.userExpiryDays);
|
|
|
|
time.setHours(time.getHours() + window.userExpiryHours);
|
|
|
|
time.setMinutes(time.getMinutes() + window.userExpiryMinutes);
|
2021-04-07 14:17:15 +00:00
|
|
|
messageEl.textContent = window.userExpiryMessage.replace("{date}", toDateString(time));
|
2021-02-28 00:44:28 +00:00
|
|
|
setTimeout(calculateTime, 1000);
|
|
|
|
};
|
|
|
|
calculateTime();
|
|
|
|
}
|
|
|
|
|
2020-10-20 22:00:30 +00:00
|
|
|
var defaultPwValStrings: pwValStrings = {
|
|
|
|
length: {
|
|
|
|
singular: "Must have at least {n} character",
|
2021-01-07 20:16:16 +00:00
|
|
|
plural: "Must have at least {n} characters"
|
2020-10-20 22:00:30 +00:00
|
|
|
},
|
|
|
|
uppercase: {
|
|
|
|
singular: "Must have at least {n} uppercase character",
|
|
|
|
plural: "Must have at least {n} uppercase characters"
|
|
|
|
},
|
|
|
|
lowercase: {
|
|
|
|
singular: "Must have at least {n} lowercase character",
|
|
|
|
plural: "Must have at least {n} lowercase characters"
|
|
|
|
},
|
|
|
|
number: {
|
|
|
|
singular: "Must have at least {n} number",
|
|
|
|
plural: "Must have at least {n} numbers"
|
|
|
|
},
|
|
|
|
special: {
|
|
|
|
singular: "Must have at least {n} special character",
|
|
|
|
plural: "Must have at least {n} special characters"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-05 18:16:23 +00:00
|
|
|
const form = document.getElementById("form-create") as HTMLFormElement;
|
|
|
|
const submitButton = form.querySelector("input[type=submit]") as HTMLInputElement;
|
|
|
|
const submitSpan = form.querySelector("span.submit") as HTMLSpanElement;
|
|
|
|
let usernameField = document.getElementById("create-username") as HTMLInputElement;
|
|
|
|
const emailField = document.getElementById("create-email") as HTMLInputElement;
|
|
|
|
if (!window.usernameEnabled) { usernameField.parentElement.remove(); usernameField = emailField; }
|
|
|
|
const passwordField = document.getElementById("create-password") as HTMLInputElement;
|
|
|
|
const rePasswordField = document.getElementById("create-reenter-password") as HTMLInputElement;
|
|
|
|
|
|
|
|
const checkPasswords = () => {
|
|
|
|
if (passwordField.value != rePasswordField.value) {
|
|
|
|
rePasswordField.setCustomValidity(window.invalidPassword);
|
|
|
|
submitButton.disabled = true;
|
|
|
|
submitSpan.setAttribute("disabled", "");
|
2020-10-20 22:33:32 +00:00
|
|
|
} else {
|
2021-01-05 18:16:23 +00:00
|
|
|
rePasswordField.setCustomValidity("");
|
|
|
|
submitButton.disabled = false;
|
|
|
|
submitSpan.removeAttribute("disabled");
|
2020-10-20 22:33:32 +00:00
|
|
|
}
|
|
|
|
};
|
2021-01-05 18:16:23 +00:00
|
|
|
rePasswordField.addEventListener("keyup", checkPasswords);
|
|
|
|
passwordField.addEventListener("keyup", checkPasswords);
|
2020-10-20 22:33:32 +00:00
|
|
|
|
2021-01-05 18:16:23 +00:00
|
|
|
interface respDTO {
|
2021-01-25 18:01:18 +00:00
|
|
|
response: boolean;
|
|
|
|
error: string;
|
2021-01-05 18:16:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
interface sendDTO {
|
|
|
|
code: string;
|
|
|
|
email: string;
|
|
|
|
username: string;
|
|
|
|
password: string;
|
2021-05-07 13:32:51 +00:00
|
|
|
telegram_pin?: string;
|
|
|
|
telegram_contact?: boolean;
|
2021-05-21 20:35:25 +00:00
|
|
|
discord_pin?: string;
|
|
|
|
discord_contact?: boolean;
|
2021-05-29 16:43:11 +00:00
|
|
|
matrix_pin?: string;
|
|
|
|
matrix_contact?: boolean;
|
2021-01-05 18:16:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const create = (event: SubmitEvent) => {
|
|
|
|
event.preventDefault();
|
|
|
|
toggleLoader(submitSpan);
|
|
|
|
let send: sendDTO = {
|
2021-01-14 14:22:20 +00:00
|
|
|
code: window.code,
|
2021-01-05 18:16:23 +00:00
|
|
|
username: usernameField.value,
|
|
|
|
email: emailField.value,
|
|
|
|
password: passwordField.value
|
|
|
|
};
|
2021-05-07 13:32:51 +00:00
|
|
|
if (telegramVerified) {
|
|
|
|
send.telegram_pin = window.telegramPIN;
|
|
|
|
const radio = document.getElementById("contact-via-telegram") as HTMLInputElement;
|
|
|
|
if (radio.checked) {
|
|
|
|
send.telegram_contact = true;
|
|
|
|
}
|
|
|
|
}
|
2021-05-21 20:35:25 +00:00
|
|
|
if (discordVerified) {
|
|
|
|
send.discord_pin = window.discordPIN;
|
|
|
|
const radio = document.getElementById("contact-via-discord") as HTMLInputElement;
|
|
|
|
if (radio.checked) {
|
|
|
|
send.discord_contact = true;
|
|
|
|
}
|
|
|
|
}
|
2021-05-29 16:43:11 +00:00
|
|
|
if (matrixVerified) {
|
|
|
|
send.matrix_pin = matrixPIN;
|
|
|
|
const radio = document.getElementById("contact-via-matrix") as HTMLInputElement;
|
|
|
|
if (radio.checked) {
|
|
|
|
send.matrix_contact = true;
|
|
|
|
}
|
|
|
|
}
|
2021-01-05 18:16:23 +00:00
|
|
|
_post("/newUser", send, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
2021-01-25 18:01:18 +00:00
|
|
|
let vals = req.response as respDTO;
|
2021-01-05 18:16:23 +00:00
|
|
|
let valid = true;
|
|
|
|
for (let type in vals) {
|
|
|
|
if (requirements[type]) { requirements[type].valid = vals[type]; }
|
|
|
|
if (!vals[type]) { valid = false; }
|
|
|
|
}
|
|
|
|
if (req.status == 200 && valid) {
|
2021-05-07 00:08:12 +00:00
|
|
|
window.successModal.show();
|
2021-01-05 18:16:23 +00:00
|
|
|
} else {
|
|
|
|
submitSpan.classList.add("~critical");
|
|
|
|
submitSpan.classList.remove("~urge");
|
|
|
|
setTimeout(() => {
|
|
|
|
submitSpan.classList.add("~urge");
|
|
|
|
submitSpan.classList.remove("~critical");
|
|
|
|
}, 1000);
|
|
|
|
}
|
|
|
|
}
|
2021-01-25 18:01:18 +00:00
|
|
|
}, true, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
toggleLoader(submitSpan);
|
|
|
|
if (req.status == 401) {
|
|
|
|
if (req.response["error"] as string) {
|
2021-01-30 19:19:12 +00:00
|
|
|
if (req.response["error"] == "confirmEmail") {
|
|
|
|
window.confirmationModal.show();
|
|
|
|
return;
|
|
|
|
}
|
2021-01-25 18:01:18 +00:00
|
|
|
const old = submitSpan.textContent;
|
|
|
|
if (req.response["error"] in window.messages) {
|
|
|
|
submitSpan.textContent = window.messages[req.response["error"]];
|
|
|
|
} else {
|
|
|
|
submitSpan.textContent = req.response["error"];
|
|
|
|
}
|
|
|
|
setTimeout(() => { submitSpan.textContent = old; }, 1000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-01-05 18:16:23 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
form.onsubmit = create;
|
|
|
|
|
|
|
|
class Requirement {
|
|
|
|
private _name: string;
|
2021-01-09 01:00:27 +00:00
|
|
|
protected _minCount: number;
|
2021-01-05 18:16:23 +00:00
|
|
|
private _content: HTMLSpanElement;
|
|
|
|
private _valid: HTMLSpanElement;
|
|
|
|
private _li: HTMLLIElement;
|
|
|
|
|
|
|
|
get valid(): boolean { return this._valid.classList.contains("~positive"); }
|
|
|
|
set valid(state: boolean) {
|
|
|
|
if (state) {
|
|
|
|
this._valid.classList.add("~positive");
|
|
|
|
this._valid.classList.remove("~critical");
|
|
|
|
this._valid.innerHTML = `<i class="icon ri-check-line" title="valid"></i>`;
|
|
|
|
} else {
|
|
|
|
this._valid.classList.add("~critical");
|
|
|
|
this._valid.classList.remove("~positive");
|
|
|
|
this._valid.innerHTML = `<i class="icon ri-close-line" title="invalid"></i>`;
|
|
|
|
}
|
2020-10-20 22:00:30 +00:00
|
|
|
}
|
2021-01-05 18:16:23 +00:00
|
|
|
|
|
|
|
constructor(name: string, el: HTMLLIElement) {
|
|
|
|
this._name = name;
|
|
|
|
this._li = el;
|
|
|
|
this._content = this._li.querySelector("span.requirement-content") as HTMLSpanElement;
|
|
|
|
this._valid = this._li.querySelector("span.requirement-valid") as HTMLSpanElement;
|
|
|
|
this.valid = false;
|
|
|
|
this._minCount = +this._li.getAttribute("min");
|
|
|
|
|
2020-10-20 22:00:30 +00:00
|
|
|
let text = "";
|
2021-01-05 18:16:23 +00:00
|
|
|
if (this._minCount == 1) {
|
|
|
|
text = window.validationStrings[this._name].singular.replace("{n}", "1");
|
2020-10-20 22:00:30 +00:00
|
|
|
} else {
|
2021-01-05 18:16:23 +00:00
|
|
|
text = window.validationStrings[this._name].plural.replace("{n}", ""+this._minCount);
|
2020-10-20 22:00:30 +00:00
|
|
|
}
|
2021-01-05 18:16:23 +00:00
|
|
|
this._content.textContent = text;
|
2020-10-20 22:00:30 +00:00
|
|
|
}
|
2021-01-09 01:00:27 +00:00
|
|
|
|
|
|
|
validate = (count: number) => { this.valid = (count >= this._minCount); }
|
2020-10-20 22:00:30 +00:00
|
|
|
}
|
|
|
|
|
2021-01-09 01:00:27 +00:00
|
|
|
// Incredible code right here
|
|
|
|
const isInt = (s: string): boolean => { return (s in ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"]); }
|
|
|
|
|
2021-01-05 18:16:23 +00:00
|
|
|
const testStrings = (f: pwValString): boolean => {
|
|
|
|
const testString = (s: string): boolean => {
|
|
|
|
if (s == "" || !s.includes("{n}")) { return false; }
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return testString(f.singular) && testString(f.plural);
|
|
|
|
}
|
2020-10-20 22:00:30 +00:00
|
|
|
|
2021-01-09 01:00:27 +00:00
|
|
|
interface Validation { [name: string]: number }
|
|
|
|
|
|
|
|
const validate = (s: string): Validation => {
|
|
|
|
let v: Validation = {};
|
|
|
|
for (let criteria of ["length", "lowercase", "uppercase", "number", "special"]) { v[criteria] = 0; }
|
|
|
|
v["length"] = s.length;
|
|
|
|
for (let c of s) {
|
|
|
|
if (isInt(c)) { v["number"]++; }
|
|
|
|
else {
|
|
|
|
const upper = c.toUpperCase();
|
|
|
|
if (upper == c.toLowerCase()) { v["special"]++; }
|
|
|
|
else {
|
|
|
|
if (upper == c) { v["uppercase"]++; }
|
|
|
|
else if (upper != c) { v["lowercase"]++; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
passwordField.addEventListener("keyup", () => {
|
|
|
|
const v = validate(passwordField.value);
|
|
|
|
for (let criteria in requirements) {
|
|
|
|
requirements[criteria].validate(v[criteria]);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2021-01-05 18:16:23 +00:00
|
|
|
var requirements: { [category: string]: Requirement} = {};
|
2020-10-20 22:00:30 +00:00
|
|
|
|
2021-01-05 18:16:23 +00:00
|
|
|
if (!window.validationStrings) {
|
|
|
|
window.validationStrings = defaultPwValStrings;
|
|
|
|
} else {
|
|
|
|
for (let category in window.validationStrings) {
|
|
|
|
if (!testStrings(window.validationStrings[category])) {
|
|
|
|
window.validationStrings[category] = defaultPwValStrings[category];
|
2020-10-20 22:00:30 +00:00
|
|
|
}
|
2021-01-05 18:16:23 +00:00
|
|
|
const el = document.getElementById("requirement-" + category);
|
|
|
|
if (el) {
|
|
|
|
requirements[category] = new Requirement(category, el as HTMLLIElement);
|
2020-11-04 20:46:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|