2021-10-13 14:04:22 +00:00
|
|
|
import { _get, _post, _delete, toggleLoader, addLoader, removeLoader, toDateString, insertText, toClipboard } from "../modules/common.js";
|
2021-05-03 17:35:27 +00:00
|
|
|
import { templateEmail } from "../modules/settings.js";
|
|
|
|
import { Marked } from "@ts-stack/markdown";
|
|
|
|
import { stripMarkdown } from "../modules/stripmd.js";
|
2021-05-23 13:22:18 +00:00
|
|
|
import { DiscordUser, newDiscordSearch } from "../modules/discord.js";
|
2023-06-13 16:19:24 +00:00
|
|
|
const dateParser = require("any-date-parser");
|
2020-10-22 16:50:40 +00:00
|
|
|
|
2021-01-05 18:16:23 +00:00
|
|
|
interface User {
|
|
|
|
id: string;
|
|
|
|
name: string;
|
|
|
|
email: string | undefined;
|
2021-05-21 20:35:25 +00:00
|
|
|
notify_email: boolean;
|
2021-04-06 19:53:30 +00:00
|
|
|
last_active: number;
|
2021-01-05 18:16:23 +00:00
|
|
|
admin: boolean;
|
2021-02-28 17:52:24 +00:00
|
|
|
disabled: boolean;
|
2021-04-06 19:53:30 +00:00
|
|
|
expiry: number;
|
2021-05-07 16:01:22 +00:00
|
|
|
telegram: string;
|
2021-05-08 14:53:42 +00:00
|
|
|
notify_telegram: boolean;
|
2021-05-21 20:35:25 +00:00
|
|
|
discord: string;
|
|
|
|
notify_discord: boolean;
|
|
|
|
discord_id: string;
|
2021-05-29 23:05:46 +00:00
|
|
|
matrix: string;
|
|
|
|
notify_matrix: boolean;
|
2022-01-08 16:20:31 +00:00
|
|
|
label: string;
|
2022-01-09 19:29:17 +00:00
|
|
|
accounts_admin: boolean;
|
2020-10-22 16:50:40 +00:00
|
|
|
}
|
|
|
|
|
2021-05-07 17:20:35 +00:00
|
|
|
interface getPinResponse {
|
|
|
|
token: string;
|
|
|
|
username: string;
|
|
|
|
}
|
2021-07-10 15:43:27 +00:00
|
|
|
|
|
|
|
interface announcementTemplate {
|
|
|
|
name: string;
|
|
|
|
subject: string;
|
|
|
|
message: string;
|
|
|
|
}
|
|
|
|
|
2021-05-23 13:22:18 +00:00
|
|
|
var addDiscord: (passData: string) => void;
|
2021-05-22 20:42:15 +00:00
|
|
|
|
2021-01-05 18:16:23 +00:00
|
|
|
class user implements User {
|
2023-06-14 17:57:30 +00:00
|
|
|
private _id = "";
|
2021-01-05 18:16:23 +00:00
|
|
|
private _row: HTMLTableRowElement;
|
|
|
|
private _check: HTMLInputElement;
|
|
|
|
private _username: HTMLSpanElement;
|
|
|
|
private _admin: HTMLSpanElement;
|
2021-02-28 17:52:24 +00:00
|
|
|
private _disabled: HTMLSpanElement;
|
2021-01-05 18:16:23 +00:00
|
|
|
private _email: HTMLInputElement;
|
2021-05-21 20:35:25 +00:00
|
|
|
private _notifyEmail: boolean;
|
2021-01-05 18:16:23 +00:00
|
|
|
private _emailAddress: string;
|
|
|
|
private _emailEditButton: HTMLElement;
|
2021-05-07 16:01:22 +00:00
|
|
|
private _telegram: HTMLTableDataCellElement;
|
|
|
|
private _telegramUsername: string;
|
2021-05-08 14:53:42 +00:00
|
|
|
private _notifyTelegram: boolean;
|
2021-05-21 20:35:25 +00:00
|
|
|
private _discord: HTMLTableDataCellElement;
|
|
|
|
private _discordUsername: string;
|
|
|
|
private _discordID: string;
|
|
|
|
private _notifyDiscord: boolean;
|
2021-05-29 23:05:46 +00:00
|
|
|
private _matrix: HTMLTableDataCellElement;
|
|
|
|
private _matrixID: string;
|
|
|
|
private _notifyMatrix: boolean;
|
2021-02-28 17:52:24 +00:00
|
|
|
private _expiry: HTMLTableDataCellElement;
|
2021-04-06 19:53:30 +00:00
|
|
|
private _expiryUnix: number;
|
2021-01-05 18:16:23 +00:00
|
|
|
private _lastActive: HTMLTableDataCellElement;
|
2021-04-06 19:53:30 +00:00
|
|
|
private _lastActiveUnix: number;
|
2021-05-29 23:05:46 +00:00
|
|
|
private _notifyDropdown: HTMLDivElement;
|
2022-01-08 16:20:31 +00:00
|
|
|
private _label: HTMLInputElement;
|
|
|
|
private _userLabel: string;
|
|
|
|
private _labelEditButton: HTMLElement;
|
2022-01-09 19:29:17 +00:00
|
|
|
private _accounts_admin: HTMLInputElement
|
2021-01-05 18:16:23 +00:00
|
|
|
private _selected: boolean;
|
|
|
|
|
2021-10-13 14:04:22 +00:00
|
|
|
lastNotifyMethod = (): string => {
|
2021-05-29 23:05:46 +00:00
|
|
|
// Telegram, Matrix, Discord
|
2021-07-20 14:44:42 +00:00
|
|
|
const telegram = window.telegramEnabled && this._telegramUsername && this._telegramUsername != "";
|
|
|
|
const discord = window.discordEnabled && this._discordUsername && this._discordUsername != "";
|
|
|
|
const matrix = window.matrixEnabled && this._matrixID && this._matrixID != "";
|
2023-01-30 13:55:38 +00:00
|
|
|
const email = window.emailEnabled && this.email != "";
|
2021-05-29 23:05:46 +00:00
|
|
|
if (discord) return "discord";
|
|
|
|
if (matrix) return "matrix";
|
|
|
|
if (telegram) return "telegram";
|
2023-01-30 13:55:38 +00:00
|
|
|
if (email) return "email";
|
2021-05-29 23:05:46 +00:00
|
|
|
}
|
|
|
|
|
2023-02-05 00:23:16 +00:00
|
|
|
private _checkUnlinkArea = () => {
|
|
|
|
const unlinkHeader = this._notifyDropdown.querySelector(".accounts-unlink-header") as HTMLSpanElement;
|
|
|
|
if (this.lastNotifyMethod() == "email" || !this.lastNotifyMethod()) {
|
|
|
|
unlinkHeader.classList.add("unfocused");
|
|
|
|
} else {
|
|
|
|
unlinkHeader.classList.remove("unfocused");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-05 18:16:23 +00:00
|
|
|
get selected(): boolean { return this._selected; }
|
|
|
|
set selected(state: boolean) {
|
|
|
|
this._selected = state;
|
|
|
|
this._check.checked = state;
|
|
|
|
state ? document.dispatchEvent(this._checkEvent) : document.dispatchEvent(this._uncheckEvent);
|
|
|
|
}
|
|
|
|
|
|
|
|
get name(): string { return this._username.textContent; }
|
|
|
|
set name(value: string) { this._username.textContent = value; }
|
|
|
|
|
|
|
|
get admin(): boolean { return this._admin.classList.contains("chip"); }
|
|
|
|
set admin(state: boolean) {
|
|
|
|
if (state) {
|
2021-12-31 00:22:28 +00:00
|
|
|
this._admin.classList.add("chip", "~info", "ml-4");
|
2021-02-28 17:52:24 +00:00
|
|
|
this._admin.textContent = window.lang.strings("admin");
|
2020-10-22 16:50:40 +00:00
|
|
|
} else {
|
2021-12-31 00:22:28 +00:00
|
|
|
this._admin.classList.remove("chip", "~info", "ml-4");
|
2021-02-28 17:52:24 +00:00
|
|
|
this._admin.textContent = "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-09 19:29:17 +00:00
|
|
|
get accounts_admin(): boolean { return this._accounts_admin.checked; }
|
|
|
|
set accounts_admin(a: boolean) {
|
|
|
|
if (!window.jellyfinLogin) return;
|
|
|
|
this._accounts_admin.checked = a;
|
|
|
|
this._accounts_admin.disabled = (window.jfAllowAll || (a && this.admin && window.jfAdminOnly));
|
|
|
|
if (this._accounts_admin.disabled) {
|
|
|
|
this._accounts_admin.title = window.lang.strings("accessJFASettings");
|
|
|
|
} else {
|
|
|
|
this._accounts_admin.title = "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-28 17:52:24 +00:00
|
|
|
get disabled(): boolean { return this._disabled.classList.contains("chip"); }
|
|
|
|
set disabled(state: boolean) {
|
|
|
|
if (state) {
|
2021-12-31 00:22:28 +00:00
|
|
|
this._disabled.classList.add("chip", "~warning", "ml-4");
|
2021-02-28 17:52:24 +00:00
|
|
|
this._disabled.textContent = window.lang.strings("disabled");
|
|
|
|
} else {
|
2021-12-31 00:22:28 +00:00
|
|
|
this._disabled.classList.remove("chip", "~warning", "ml-4");
|
2021-02-28 17:52:24 +00:00
|
|
|
this._disabled.textContent = "";
|
2020-10-22 16:50:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-05 18:16:23 +00:00
|
|
|
get email(): string { return this._emailAddress; }
|
2021-02-05 18:24:27 +00:00
|
|
|
set email(value: string) {
|
|
|
|
this._emailAddress = value;
|
|
|
|
const input = this._email.querySelector("input");
|
|
|
|
if (input) {
|
|
|
|
input.value = value;
|
|
|
|
} else {
|
|
|
|
this._email.textContent = value;
|
|
|
|
}
|
2023-01-30 13:55:38 +00:00
|
|
|
const lastNotifyMethod = this.lastNotifyMethod() == "email";
|
|
|
|
if (!value) {
|
|
|
|
this._notifyDropdown.querySelector(".accounts-area-email").classList.add("unfocused");
|
|
|
|
} else {
|
|
|
|
this._notifyDropdown.querySelector(".accounts-area-email").classList.remove("unfocused");
|
|
|
|
if (lastNotifyMethod) {
|
|
|
|
(this._email.parentElement as HTMLDivElement).appendChild(this._notifyDropdown);
|
|
|
|
}
|
|
|
|
}
|
2021-02-05 18:24:27 +00:00
|
|
|
}
|
2021-05-21 20:35:25 +00:00
|
|
|
|
|
|
|
get notify_email(): boolean { return this._notifyEmail; }
|
|
|
|
set notify_email(s: boolean) {
|
2021-05-29 23:05:46 +00:00
|
|
|
if (this._notifyDropdown) {
|
|
|
|
(this._notifyDropdown.querySelector(".accounts-contact-email") as HTMLInputElement).checked = s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private _constructDropdown = (): HTMLDivElement => {
|
|
|
|
const el = document.createElement("div") as HTMLDivElement;
|
|
|
|
const telegram = this._telegramUsername != "";
|
|
|
|
const discord = this._discordUsername != "";
|
|
|
|
const matrix = this._matrixID != "";
|
2023-01-30 13:55:38 +00:00
|
|
|
const email = this._emailAddress != "";
|
|
|
|
if (!telegram && !discord && !matrix && !email) return;
|
2021-05-29 23:05:46 +00:00
|
|
|
let innerHTML = `
|
2021-12-31 00:26:11 +00:00
|
|
|
<i class="icon ri-settings-2-line ml-2 dropdown-button"></i>
|
2023-02-05 00:47:54 +00:00
|
|
|
<div class="dropdown over-top manual">
|
2021-05-29 23:05:46 +00:00
|
|
|
<div class="dropdown-display lg">
|
2021-12-30 00:49:43 +00:00
|
|
|
<div class="card ~neutral @low">
|
2023-02-05 00:23:16 +00:00
|
|
|
<div class="supra sm mb-2">${window.lang.strings("contactThrough")}</div>
|
2023-01-30 13:55:38 +00:00
|
|
|
<div class="accounts-area-email">
|
2023-02-05 00:23:16 +00:00
|
|
|
<label class="row switch pb-2">
|
2023-01-30 13:55:38 +00:00
|
|
|
<input type="checkbox" name="accounts-contact-${this.id}" class="accounts-contact-email mr-2">
|
|
|
|
</span>Email</span>
|
|
|
|
</label>
|
|
|
|
</div>
|
2021-05-29 23:05:46 +00:00
|
|
|
<div class="accounts-area-telegram">
|
2023-02-05 00:23:16 +00:00
|
|
|
<label class="row switch pb-2">
|
2021-12-31 02:22:23 +00:00
|
|
|
<input type="checkbox" name="accounts-contact-${this.id}" class="accounts-contact-telegram mr-2">
|
2021-05-29 23:05:46 +00:00
|
|
|
<span>Telegram</span>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<div class="accounts-area-discord">
|
2023-02-05 00:23:16 +00:00
|
|
|
<label class="row switch pb-2">
|
2021-12-31 02:22:23 +00:00
|
|
|
<input type="checkbox" name="accounts-contact-${this.id}" class="accounts-contact-discord mr-2">
|
2021-05-29 23:05:46 +00:00
|
|
|
<span>Discord</span>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<div class="accounts-area-matrix">
|
2023-02-05 00:23:16 +00:00
|
|
|
<label class="row switch pb-2">
|
2021-12-31 02:22:23 +00:00
|
|
|
<input type="checkbox" name="accounts-contact-${this.id}" class="accounts-contact-matrix mr-2">
|
2021-05-29 23:05:46 +00:00
|
|
|
<span>Matrix</span>
|
|
|
|
</label>
|
|
|
|
</div>
|
2023-02-05 00:23:16 +00:00
|
|
|
<div class="supra sm mb-2 accounts-unlink-header">${window.lang.strings("unlink")}:</div>
|
|
|
|
<div class="accounts-unlink-telegram">
|
|
|
|
<button class="button ~critical mb-2 w-100">Telegram</button>
|
|
|
|
</div>
|
|
|
|
<div class="accounts-unlink-discord">
|
|
|
|
<button class="button ~critical mb-2 w-100">Discord</button>
|
|
|
|
</div>
|
|
|
|
<div class="accounts-unlink-matrix">
|
|
|
|
<button class="button ~critical mb-2 w-100">Matrix</button>
|
|
|
|
</div>
|
2021-05-29 23:05:46 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
el.innerHTML = innerHTML;
|
|
|
|
const button = el.querySelector("i");
|
|
|
|
const dropdown = el.querySelector("div.dropdown") as HTMLDivElement;
|
|
|
|
const checks = el.querySelectorAll("input") as NodeListOf<HTMLInputElement>;
|
|
|
|
for (let i = 0; i < checks.length; i++) {
|
|
|
|
checks[i].onclick = () => this._setNotifyMethod();
|
|
|
|
}
|
2023-02-05 00:23:16 +00:00
|
|
|
|
|
|
|
for (let service of ["telegram", "discord", "matrix"]) {
|
|
|
|
el.querySelector(".accounts-unlink-"+service).addEventListener("click", () => _delete(`/users/${service}`, {"id": this.id}, () => document.dispatchEvent(new CustomEvent("accounts-reload"))));
|
|
|
|
}
|
2021-05-29 23:05:46 +00:00
|
|
|
|
|
|
|
button.onclick = () => {
|
|
|
|
dropdown.classList.add("selected");
|
|
|
|
document.addEventListener("click", outerClickListener);
|
|
|
|
};
|
|
|
|
const outerClickListener = (event: Event) => {
|
|
|
|
if (!(event.target instanceof HTMLElement && (el.contains(event.target) || button.contains(event.target)))) {
|
|
|
|
dropdown.classList.remove("selected");
|
|
|
|
document.removeEventListener("click", outerClickListener);
|
2021-05-22 22:02:16 +00:00
|
|
|
}
|
2021-05-29 23:05:46 +00:00
|
|
|
};
|
|
|
|
return el;
|
|
|
|
}
|
|
|
|
|
|
|
|
get matrix(): string { return this._matrixID; }
|
|
|
|
set matrix(u: string) {
|
|
|
|
if (!window.matrixEnabled) {
|
|
|
|
this._notifyDropdown.querySelector(".accounts-area-matrix").classList.add("unfocused");
|
2023-02-05 00:23:16 +00:00
|
|
|
this._notifyDropdown.querySelector(".accounts-unlink-matrix").classList.add("unfocused");
|
2021-05-29 23:05:46 +00:00
|
|
|
return;
|
2021-05-21 20:35:25 +00:00
|
|
|
}
|
2021-10-13 14:04:22 +00:00
|
|
|
const lastNotifyMethod = this.lastNotifyMethod() == "matrix";
|
2021-05-29 23:05:46 +00:00
|
|
|
this._matrixID = u;
|
|
|
|
if (!u) {
|
|
|
|
this._notifyDropdown.querySelector(".accounts-area-matrix").classList.add("unfocused");
|
2023-02-05 00:23:16 +00:00
|
|
|
this._notifyDropdown.querySelector(".accounts-unlink-matrix").classList.add("unfocused");
|
2021-05-30 10:47:41 +00:00
|
|
|
this._matrix.innerHTML = `
|
2022-01-04 19:22:49 +00:00
|
|
|
<div class="table-inline justify-center">
|
|
|
|
<span class="chip btn @low"><i class="ri-link" alt="${window.lang.strings("add")}"></i></span>
|
2021-12-31 02:03:29 +00:00
|
|
|
<input type="text" class="input ~neutral @low stealth-input unfocused" placeholder="@user:riot.im">
|
|
|
|
</div>
|
2021-05-30 10:47:41 +00:00
|
|
|
`;
|
|
|
|
(this._matrix.querySelector("span") as HTMLSpanElement).onclick = this._addMatrix;
|
2021-05-29 23:05:46 +00:00
|
|
|
} else {
|
|
|
|
this._notifyDropdown.querySelector(".accounts-area-matrix").classList.remove("unfocused");
|
2023-02-05 00:23:16 +00:00
|
|
|
this._notifyDropdown.querySelector(".accounts-unlink-matrix").classList.remove("unfocused");
|
2021-05-29 23:05:46 +00:00
|
|
|
this._matrix.innerHTML = `
|
|
|
|
<div class="table-inline">
|
|
|
|
${u}
|
|
|
|
</div>
|
|
|
|
`;
|
|
|
|
if (lastNotifyMethod) {
|
|
|
|
(this._matrix.querySelector(".table-inline") as HTMLDivElement).appendChild(this._notifyDropdown);
|
|
|
|
}
|
|
|
|
}
|
2023-02-05 00:23:16 +00:00
|
|
|
this._checkUnlinkArea();
|
2021-05-29 23:05:46 +00:00
|
|
|
}
|
2021-05-30 10:47:41 +00:00
|
|
|
|
|
|
|
private _addMatrix = () => {
|
|
|
|
const addButton = this._matrix.querySelector(".btn") as HTMLSpanElement;
|
|
|
|
const input = this._matrix.querySelector("input.stealth-input") as HTMLInputElement;
|
2022-01-01 02:17:24 +00:00
|
|
|
const addIcon = addButton.querySelector("i");
|
2021-05-30 10:47:41 +00:00
|
|
|
if (addButton.classList.contains("chip")) {
|
|
|
|
input.classList.remove("unfocused");
|
2022-01-01 02:17:24 +00:00
|
|
|
addIcon.classList.add("ri-check-line");
|
|
|
|
addIcon.classList.remove("ri-link");
|
2022-01-04 19:22:49 +00:00
|
|
|
addButton.classList.remove("chip")
|
2022-01-01 02:17:24 +00:00
|
|
|
const outerClickListener = (event: Event) => {
|
|
|
|
if (!(event.target instanceof HTMLElement && (this._matrix.contains(event.target) || addButton.contains(event.target)))) {
|
|
|
|
document.dispatchEvent(new CustomEvent("accounts-reload"));
|
|
|
|
document.removeEventListener("click", outerClickListener);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
document.addEventListener("click", outerClickListener);
|
2021-05-30 10:47:41 +00:00
|
|
|
} else {
|
|
|
|
if (input.value.charAt(0) != "@" || !input.value.includes(":")) return;
|
|
|
|
const send = {
|
|
|
|
jf_id: this.id,
|
|
|
|
user_id: input.value
|
|
|
|
}
|
|
|
|
_post("/users/matrix", send, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
document.dispatchEvent(new CustomEvent("accounts-reload"));
|
|
|
|
if (req.status != 200) {
|
|
|
|
window.notifications.customError("errorConnectMatrix", window.lang.notif("errorFailureCheckLogs"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
window.notifications.customSuccess("connectMatrix", window.lang.notif("accountConnected"));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-29 23:05:46 +00:00
|
|
|
get notify_matrix(): boolean { return this._notifyMatrix; }
|
|
|
|
set notify_matrix(s: boolean) {
|
|
|
|
if (this._notifyDropdown) {
|
|
|
|
(this._notifyDropdown.querySelector(".accounts-contact-matrix") as HTMLInputElement).checked = s;
|
2021-05-21 20:35:25 +00:00
|
|
|
}
|
|
|
|
}
|
2021-01-05 18:16:23 +00:00
|
|
|
|
2021-05-07 16:01:22 +00:00
|
|
|
get telegram(): string { return this._telegramUsername; }
|
|
|
|
set telegram(u: string) {
|
2021-05-29 23:05:46 +00:00
|
|
|
if (!window.telegramEnabled) {
|
|
|
|
this._notifyDropdown.querySelector(".accounts-area-telegram").classList.add("unfocused");
|
2023-02-05 00:23:16 +00:00
|
|
|
this._notifyDropdown.querySelector(".accounts-unlink-telegram").classList.add("unfocused");
|
2021-05-29 23:05:46 +00:00
|
|
|
return;
|
|
|
|
}
|
2021-10-13 14:04:22 +00:00
|
|
|
const lastNotifyMethod = this.lastNotifyMethod() == "telegram";
|
2021-05-07 16:01:22 +00:00
|
|
|
this._telegramUsername = u;
|
2021-05-29 23:05:46 +00:00
|
|
|
if (!u) {
|
|
|
|
this._notifyDropdown.querySelector(".accounts-area-telegram").classList.add("unfocused");
|
2023-02-05 00:23:16 +00:00
|
|
|
this._notifyDropdown.querySelector(".accounts-unlink-telegram").classList.add("unfocused");
|
2022-01-04 19:22:49 +00:00
|
|
|
this._telegram.innerHTML = `<div class="table-inline justify-center"><span class="chip btn @low"><i class="ri-link" alt="${window.lang.strings("add")}"></i></span></div>`;
|
2021-05-07 17:20:35 +00:00
|
|
|
(this._telegram.querySelector("span") as HTMLSpanElement).onclick = this._addTelegram;
|
2021-05-07 16:01:22 +00:00
|
|
|
} else {
|
2021-05-29 23:05:46 +00:00
|
|
|
this._notifyDropdown.querySelector(".accounts-area-telegram").classList.remove("unfocused");
|
2023-02-05 00:23:16 +00:00
|
|
|
this._notifyDropdown.querySelector(".accounts-unlink-telegram").classList.remove("unfocused");
|
2021-05-29 23:05:46 +00:00
|
|
|
this._telegram.innerHTML = `
|
2021-05-23 13:48:36 +00:00
|
|
|
<div class="table-inline">
|
|
|
|
<a href="https://t.me/${u}" target="_blank">@${u}</a>
|
2021-05-29 23:05:46 +00:00
|
|
|
</div>
|
2021-05-21 20:35:25 +00:00
|
|
|
`;
|
2021-05-29 23:05:46 +00:00
|
|
|
if (lastNotifyMethod) {
|
|
|
|
(this._telegram.querySelector(".table-inline") as HTMLDivElement).appendChild(this._notifyDropdown);
|
2021-05-22 22:02:16 +00:00
|
|
|
}
|
2021-05-07 16:01:22 +00:00
|
|
|
}
|
2023-02-05 00:23:16 +00:00
|
|
|
this._checkUnlinkArea();
|
2021-05-07 16:01:22 +00:00
|
|
|
}
|
2021-05-08 14:53:42 +00:00
|
|
|
|
|
|
|
get notify_telegram(): boolean { return this._notifyTelegram; }
|
|
|
|
set notify_telegram(s: boolean) {
|
2021-05-29 23:05:46 +00:00
|
|
|
if (this._notifyDropdown) {
|
|
|
|
(this._notifyDropdown.querySelector(".accounts-contact-telegram") as HTMLInputElement).checked = s;
|
2021-05-21 20:35:25 +00:00
|
|
|
}
|
2021-05-08 14:53:42 +00:00
|
|
|
}
|
2021-05-07 16:01:22 +00:00
|
|
|
|
2021-05-29 23:05:46 +00:00
|
|
|
private _setNotifyMethod = () => {
|
|
|
|
const email = this._notifyDropdown.getElementsByClassName("accounts-contact-email")[0] as HTMLInputElement;
|
2021-05-08 14:53:42 +00:00
|
|
|
let send = {
|
|
|
|
id: this.id,
|
2021-05-21 20:35:25 +00:00
|
|
|
email: email.checked
|
|
|
|
}
|
2021-05-23 13:48:36 +00:00
|
|
|
if (window.telegramEnabled && this._telegramUsername) {
|
2021-05-29 23:05:46 +00:00
|
|
|
const telegram = this._notifyDropdown.getElementsByClassName("accounts-contact-telegram")[0] as HTMLInputElement;
|
2021-05-21 20:35:25 +00:00
|
|
|
send["telegram"] = telegram.checked;
|
|
|
|
}
|
2021-05-23 13:48:36 +00:00
|
|
|
if (window.discordEnabled && this._discordUsername) {
|
2021-05-29 23:05:46 +00:00
|
|
|
const discord = this._notifyDropdown.getElementsByClassName("accounts-contact-discord")[0] as HTMLInputElement;
|
2021-05-21 20:35:25 +00:00
|
|
|
send["discord"] = discord.checked;
|
|
|
|
}
|
|
|
|
_post("/users/contact", send, (req: XMLHttpRequest) => {
|
2021-05-08 14:53:42 +00:00
|
|
|
if (req.readyState == 4) {
|
|
|
|
if (req.status != 200) {
|
2021-05-21 20:35:25 +00:00
|
|
|
window.notifications.customError("errorSetNotify", window.lang.notif("errorSaveSettings"));
|
|
|
|
document.dispatchEvent(new CustomEvent("accounts-reload"));
|
2021-05-08 14:53:42 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, false, (req: XMLHttpRequest) => {
|
|
|
|
if (req.status == 0) {
|
|
|
|
window.notifications.connectionError();
|
2021-05-21 20:35:25 +00:00
|
|
|
document.dispatchEvent(new CustomEvent("accounts-reload"));
|
2021-05-08 14:53:42 +00:00
|
|
|
return;
|
|
|
|
} else if (req.status == 401) {
|
|
|
|
window.notifications.customError("401Error", window.lang.notif("error401Unauthorized"));
|
2021-05-21 20:35:25 +00:00
|
|
|
document.dispatchEvent(new CustomEvent("accounts-reload"));
|
2021-05-08 14:53:42 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2021-05-21 20:35:25 +00:00
|
|
|
|
|
|
|
get discord(): string { return this._discordUsername; }
|
|
|
|
set discord(u: string) {
|
2021-05-29 23:05:46 +00:00
|
|
|
if (!window.discordEnabled) {
|
|
|
|
this._notifyDropdown.querySelector(".accounts-area-discord").classList.add("unfocused");
|
2023-02-05 00:23:16 +00:00
|
|
|
this._notifyDropdown.querySelector(".accounts-unlink-discord").classList.add("unfocused");
|
2021-05-29 23:05:46 +00:00
|
|
|
return;
|
|
|
|
}
|
2021-10-13 14:04:22 +00:00
|
|
|
const lastNotifyMethod = this.lastNotifyMethod() == "discord";
|
2021-05-21 20:35:25 +00:00
|
|
|
this._discordUsername = u;
|
2021-05-29 23:05:46 +00:00
|
|
|
if (!u) {
|
2022-01-04 19:22:49 +00:00
|
|
|
this._discord.innerHTML = `<div class="table-inline justify-center"><span class="chip btn @low"><i class="ri-link" alt="${window.lang.strings("add")}"></i></span></div>`;
|
2021-05-23 13:22:18 +00:00
|
|
|
(this._discord.querySelector("span") as HTMLSpanElement).onclick = () => addDiscord(this.id);
|
2021-05-29 23:05:46 +00:00
|
|
|
this._notifyDropdown.querySelector(".accounts-area-discord").classList.add("unfocused");
|
2023-02-05 00:23:16 +00:00
|
|
|
this._notifyDropdown.querySelector(".accounts-unlink-discord").classList.add("unfocused");
|
2021-05-21 20:35:25 +00:00
|
|
|
} else {
|
2021-05-29 23:05:46 +00:00
|
|
|
this._notifyDropdown.querySelector(".accounts-area-discord").classList.remove("unfocused");
|
2023-02-05 00:23:16 +00:00
|
|
|
this._notifyDropdown.querySelector(".accounts-unlink-discord").classList.remove("unfocused");
|
2021-05-29 23:05:46 +00:00
|
|
|
this._discord.innerHTML = `
|
2021-05-22 22:02:16 +00:00
|
|
|
<div class="table-inline">
|
|
|
|
<a href="https://discord.com/users/${this._discordID}" class="discord-link" target="_blank">${u}</a>
|
2021-05-21 20:35:25 +00:00
|
|
|
</div>
|
|
|
|
`;
|
2021-05-29 23:05:46 +00:00
|
|
|
if (lastNotifyMethod) {
|
|
|
|
(this._discord.querySelector(".table-inline") as HTMLDivElement).appendChild(this._notifyDropdown);
|
2021-05-21 20:35:25 +00:00
|
|
|
}
|
|
|
|
}
|
2023-02-05 00:23:16 +00:00
|
|
|
this._checkUnlinkArea();
|
2021-05-21 20:35:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
get discord_id(): string { return this._discordID; }
|
|
|
|
set discord_id(id: string) {
|
2021-05-23 13:32:35 +00:00
|
|
|
if (!window.discordEnabled || this._discordUsername == "") return;
|
2021-05-21 20:35:25 +00:00
|
|
|
this._discordID = id;
|
|
|
|
const link = this._discord.getElementsByClassName("discord-link")[0] as HTMLAnchorElement;
|
|
|
|
link.href = `https://discord.com/users/${id}`;
|
|
|
|
}
|
|
|
|
|
|
|
|
get notify_discord(): boolean { return this._notifyDiscord; }
|
|
|
|
set notify_discord(s: boolean) {
|
2021-05-29 23:05:46 +00:00
|
|
|
if (this._notifyDropdown) {
|
|
|
|
(this._notifyDropdown.querySelector(".accounts-contact-discord") as HTMLInputElement).checked = s;
|
2021-05-21 20:35:25 +00:00
|
|
|
}
|
|
|
|
}
|
2021-05-07 16:01:22 +00:00
|
|
|
|
2021-04-06 19:53:30 +00:00
|
|
|
get expiry(): number { return this._expiryUnix; }
|
|
|
|
set expiry(unix: number) {
|
|
|
|
this._expiryUnix = unix;
|
|
|
|
if (unix == 0) {
|
|
|
|
this._expiry.textContent = "";
|
|
|
|
} else {
|
|
|
|
this._expiry.textContent = toDateString(new Date(unix*1000));
|
|
|
|
}
|
|
|
|
}
|
2021-02-28 17:52:24 +00:00
|
|
|
|
2021-04-06 19:53:30 +00:00
|
|
|
get last_active(): number { return this._lastActiveUnix; }
|
|
|
|
set last_active(unix: number) {
|
|
|
|
this._lastActiveUnix = unix;
|
|
|
|
if (unix == 0) {
|
2021-04-07 13:05:17 +00:00
|
|
|
this._lastActive.textContent == "n/a";
|
2021-04-06 19:53:30 +00:00
|
|
|
} else {
|
|
|
|
this._lastActive.textContent = toDateString(new Date(unix*1000));
|
|
|
|
}
|
|
|
|
}
|
2021-01-05 18:16:23 +00:00
|
|
|
|
2022-01-08 16:20:31 +00:00
|
|
|
get label(): string { return this._userLabel; }
|
|
|
|
set label(l: string) {
|
|
|
|
this._userLabel = l ? l : "";
|
|
|
|
this._label.innerHTML = l ? l : "";
|
|
|
|
this._labelEditButton.classList.add("ri-edit-line");
|
|
|
|
this._labelEditButton.classList.remove("ri-check-line");
|
|
|
|
if (!l) {
|
|
|
|
this._label.classList.remove("chip", "~gray");
|
|
|
|
} else {
|
|
|
|
this._label.classList.add("chip", "~gray", "mr-2");
|
|
|
|
}
|
|
|
|
}
|
2023-06-13 12:55:40 +00:00
|
|
|
|
|
|
|
matchesSearch = (query: string): boolean => {
|
|
|
|
return (
|
|
|
|
this.name.includes(query) ||
|
|
|
|
this.label.includes(query) ||
|
|
|
|
this.discord.includes(query) ||
|
|
|
|
this.email.includes(query) ||
|
|
|
|
this.id.includes(query) ||
|
|
|
|
this.label.includes(query) ||
|
|
|
|
this.matrix.includes(query) ||
|
|
|
|
this.telegram.includes(query)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-01-05 18:16:23 +00:00
|
|
|
private _checkEvent = new CustomEvent("accountCheckEvent");
|
|
|
|
private _uncheckEvent = new CustomEvent("accountUncheckEvent");
|
|
|
|
|
|
|
|
constructor(user: User) {
|
|
|
|
this._row = document.createElement("tr") as HTMLTableRowElement;
|
2021-05-07 16:01:22 +00:00
|
|
|
let innerHTML = `
|
2022-01-09 19:29:17 +00:00
|
|
|
<td><input type="checkbox" class="accounts-select-user" value=""></td>
|
2022-01-08 16:20:31 +00:00
|
|
|
<td><div class="table-inline"><span class="accounts-username py-2 mr-2"></span><span class="accounts-label-container ml-2"></span> <i class="icon ri-edit-line accounts-label-edit"></i> <span class="accounts-admin"></span> <span class="accounts-disabled"></span></span></div></td>
|
2022-01-09 19:29:17 +00:00
|
|
|
`;
|
|
|
|
if (window.jellyfinLogin) {
|
|
|
|
innerHTML += `
|
|
|
|
<td><div class="table-inline justify-center"><input type="checkbox" class="accounts-access-jfa" value=""></div></td>
|
|
|
|
`;
|
|
|
|
}
|
|
|
|
innerHTML += `
|
2021-12-31 00:26:11 +00:00
|
|
|
<td><div class="table-inline"><i class="icon ri-edit-line accounts-email-edit"></i><span class="accounts-email-container ml-2"></span></div></td>
|
2021-01-05 18:16:23 +00:00
|
|
|
`;
|
2021-05-07 16:01:22 +00:00
|
|
|
if (window.telegramEnabled) {
|
|
|
|
innerHTML += `
|
|
|
|
<td class="accounts-telegram"></td>
|
|
|
|
`;
|
|
|
|
}
|
2021-05-29 23:05:46 +00:00
|
|
|
if (window.matrixEnabled) {
|
|
|
|
innerHTML += `
|
|
|
|
<td class="accounts-matrix"></td>
|
|
|
|
`;
|
|
|
|
}
|
2021-05-21 20:35:25 +00:00
|
|
|
if (window.discordEnabled) {
|
|
|
|
innerHTML += `
|
|
|
|
<td class="accounts-discord"></td>
|
|
|
|
`;
|
|
|
|
}
|
2021-05-07 16:01:22 +00:00
|
|
|
innerHTML += `
|
|
|
|
<td class="accounts-expiry"></td>
|
2022-01-01 03:29:09 +00:00
|
|
|
<td class="accounts-last-active whitespace-nowrap"></td>
|
2021-05-07 16:01:22 +00:00
|
|
|
`;
|
|
|
|
this._row.innerHTML = innerHTML;
|
2021-12-30 00:49:43 +00:00
|
|
|
const emailEditor = `<input type="email" class="input ~neutral @low stealth-input">`;
|
2022-01-08 16:20:31 +00:00
|
|
|
const labelEditor = `<input type="text" class="field ~neutral @low stealth-input">`;
|
2022-01-09 19:29:17 +00:00
|
|
|
this._check = this._row.querySelector("input[type=checkbox].accounts-select-user") as HTMLInputElement;
|
|
|
|
this._accounts_admin = this._row.querySelector("input[type=checkbox].accounts-access-jfa") as HTMLInputElement;
|
2021-01-05 18:16:23 +00:00
|
|
|
this._username = this._row.querySelector(".accounts-username") as HTMLSpanElement;
|
|
|
|
this._admin = this._row.querySelector(".accounts-admin") as HTMLSpanElement;
|
2021-02-28 17:52:24 +00:00
|
|
|
this._disabled = this._row.querySelector(".accounts-disabled") as HTMLSpanElement;
|
2021-02-05 18:24:27 +00:00
|
|
|
this._email = this._row.querySelector(".accounts-email-container") as HTMLInputElement;
|
2021-01-05 18:16:23 +00:00
|
|
|
this._emailEditButton = this._row.querySelector(".accounts-email-edit") as HTMLElement;
|
2021-05-07 16:01:22 +00:00
|
|
|
this._telegram = this._row.querySelector(".accounts-telegram") as HTMLTableDataCellElement;
|
2021-05-21 20:35:25 +00:00
|
|
|
this._discord = this._row.querySelector(".accounts-discord") as HTMLTableDataCellElement;
|
2021-05-29 23:05:46 +00:00
|
|
|
this._matrix = this._row.querySelector(".accounts-matrix") as HTMLTableDataCellElement;
|
2021-02-28 17:52:24 +00:00
|
|
|
this._expiry = this._row.querySelector(".accounts-expiry") as HTMLTableDataCellElement;
|
2021-01-05 18:16:23 +00:00
|
|
|
this._lastActive = this._row.querySelector(".accounts-last-active") as HTMLTableDataCellElement;
|
2022-01-08 16:20:31 +00:00
|
|
|
this._label = this._row.querySelector(".accounts-label-container") as HTMLInputElement;
|
|
|
|
this._labelEditButton = this._row.querySelector(".accounts-label-edit") as HTMLElement;
|
2021-01-05 18:16:23 +00:00
|
|
|
this._check.onchange = () => { this.selected = this._check.checked; }
|
2022-01-09 19:29:17 +00:00
|
|
|
|
|
|
|
if (window.jellyfinLogin) {
|
|
|
|
this._accounts_admin.onchange = () => {
|
|
|
|
this.accounts_admin = this._accounts_admin.checked;
|
|
|
|
let send = {};
|
|
|
|
send[this.id] = this.accounts_admin;
|
|
|
|
_post("/users/accounts-admin", send, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
if (req.status != 204) {
|
|
|
|
this.accounts_admin = !this.accounts_admin;
|
|
|
|
window.notifications.customError("accountsAdminChanged", window.lang.notif("errorUnknown"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
}
|
2021-01-05 18:16:23 +00:00
|
|
|
|
2021-05-29 23:05:46 +00:00
|
|
|
this._notifyDropdown = this._constructDropdown();
|
|
|
|
|
2022-01-08 16:20:31 +00:00
|
|
|
const toggleEmailInput = () => {
|
2021-02-05 18:24:27 +00:00
|
|
|
if (this._emailEditButton.classList.contains("ri-edit-line")) {
|
|
|
|
this._email.innerHTML = emailEditor;
|
|
|
|
this._email.querySelector("input").value = this._emailAddress;
|
2021-12-31 00:26:11 +00:00
|
|
|
this._email.classList.remove("ml-2");
|
2021-02-05 18:24:27 +00:00
|
|
|
} else {
|
|
|
|
this._email.textContent = this._emailAddress;
|
2021-12-31 00:26:11 +00:00
|
|
|
this._email.classList.add("ml-2");
|
2021-02-05 18:24:27 +00:00
|
|
|
}
|
2021-01-05 18:16:23 +00:00
|
|
|
this._emailEditButton.classList.toggle("ri-check-line");
|
|
|
|
this._emailEditButton.classList.toggle("ri-edit-line");
|
|
|
|
};
|
2022-01-08 16:20:31 +00:00
|
|
|
const emailClickListener = (event: Event) => {
|
2021-01-05 18:16:23 +00:00
|
|
|
if (!(event.target instanceof HTMLElement && (this._email.contains(event.target) || this._emailEditButton.contains(event.target)))) {
|
2022-01-08 16:20:31 +00:00
|
|
|
toggleEmailInput();
|
2021-01-05 18:16:23 +00:00
|
|
|
this.email = this.email;
|
2022-01-08 16:20:31 +00:00
|
|
|
document.removeEventListener("click", emailClickListener);
|
2021-01-05 18:16:23 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
this._emailEditButton.onclick = () => {
|
2021-02-05 18:24:27 +00:00
|
|
|
if (this._emailEditButton.classList.contains("ri-edit-line")) {
|
2022-01-08 16:20:31 +00:00
|
|
|
document.addEventListener('click', emailClickListener);
|
2021-01-05 18:16:23 +00:00
|
|
|
} else {
|
|
|
|
this._updateEmail();
|
2022-01-08 16:20:31 +00:00
|
|
|
document.removeEventListener('click', emailClickListener);
|
|
|
|
}
|
|
|
|
toggleEmailInput();
|
|
|
|
};
|
|
|
|
|
|
|
|
const toggleLabelInput = () => {
|
|
|
|
if (this._labelEditButton.classList.contains("ri-edit-line")) {
|
|
|
|
this._label.innerHTML = labelEditor;
|
|
|
|
const input = this._label.querySelector("input");
|
|
|
|
input.value = this._userLabel;
|
|
|
|
input.placeholder = window.lang.strings("label");
|
|
|
|
this._label.classList.remove("ml-2");
|
|
|
|
this._labelEditButton.classList.add("ri-check-line");
|
|
|
|
this._labelEditButton.classList.remove("ri-edit-line");
|
|
|
|
} else {
|
|
|
|
this._updateLabel();
|
|
|
|
this._email.classList.add("ml-2");
|
2021-01-05 18:16:23 +00:00
|
|
|
}
|
2022-01-08 16:20:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const labelClickListener = (event: Event) => {
|
|
|
|
if (!(event.target instanceof HTMLElement && (this._label.contains(event.target) || this._labelEditButton.contains(event.target)))) {
|
|
|
|
toggleLabelInput();
|
|
|
|
document.removeEventListener("click", labelClickListener);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
this._labelEditButton.onclick = () => {
|
|
|
|
if (this._labelEditButton.classList.contains("ri-edit-line")) {
|
|
|
|
document.addEventListener('click', labelClickListener);
|
|
|
|
} else {
|
|
|
|
document.removeEventListener('click', labelClickListener);
|
|
|
|
}
|
|
|
|
toggleLabelInput();
|
2021-01-05 18:16:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
this.update(user);
|
2021-04-07 14:09:44 +00:00
|
|
|
|
|
|
|
document.addEventListener("timefmt-change", () => {
|
|
|
|
this.expiry = this.expiry;
|
|
|
|
this.last_active = this.last_active;
|
|
|
|
});
|
2020-12-03 20:49:50 +00:00
|
|
|
}
|
2022-01-08 16:20:31 +00:00
|
|
|
|
|
|
|
private _updateLabel = () => {
|
|
|
|
let oldLabel = this.label;
|
|
|
|
this.label = this._label.querySelector("input").value;
|
|
|
|
let send = {};
|
|
|
|
send[this.id] = this.label;
|
|
|
|
_post("/users/labels", send, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
if (req.status != 204) {
|
|
|
|
this.label = oldLabel;
|
|
|
|
window.notifications.customError("labelChanged", window.lang.notif("errorUnknown"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
2021-01-05 18:16:23 +00:00
|
|
|
|
|
|
|
private _updateEmail = () => {
|
|
|
|
let oldEmail = this.email;
|
2021-02-05 18:24:27 +00:00
|
|
|
this.email = this._email.querySelector("input").value;
|
2020-12-03 20:49:50 +00:00
|
|
|
let send = {};
|
2021-01-05 18:16:23 +00:00
|
|
|
send[this.id] = this.email;
|
|
|
|
_post("/users/emails", send, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
if (req.status == 200) {
|
2021-01-12 23:15:12 +00:00
|
|
|
window.notifications.customSuccess("emailChanged", window.lang.var("notifications", "changedEmailAddress", `"${this.name}"`));
|
2020-12-03 20:49:50 +00:00
|
|
|
} else {
|
2021-01-05 18:16:23 +00:00
|
|
|
this.email = oldEmail;
|
2021-01-12 23:15:12 +00:00
|
|
|
window.notifications.customError("emailChanged", window.lang.var("notifications", "errorChangedEmailAddress", `"${this.name}"`));
|
2020-12-03 20:49:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2021-01-05 18:16:23 +00:00
|
|
|
}
|
2021-05-22 20:42:15 +00:00
|
|
|
|
2021-05-07 17:20:35 +00:00
|
|
|
private _addTelegram = () => _get("/telegram/pin", null, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4 && req.status == 200) {
|
|
|
|
const pin = document.getElementById("telegram-pin");
|
|
|
|
const link = document.getElementById("telegram-link") as HTMLAnchorElement;
|
|
|
|
const username = document.getElementById("telegram-username") as HTMLSpanElement;
|
|
|
|
const waiting = document.getElementById("telegram-waiting") as HTMLSpanElement;
|
|
|
|
let resp = req.response as getPinResponse;
|
|
|
|
pin.textContent = resp.token;
|
|
|
|
link.href = "https://t.me/" + resp.username;
|
|
|
|
username.textContent = resp.username;
|
|
|
|
addLoader(waiting);
|
|
|
|
let modalClosed = false;
|
|
|
|
window.modals.telegram.onclose = () => {
|
|
|
|
modalClosed = true;
|
|
|
|
removeLoader(waiting);
|
|
|
|
}
|
|
|
|
let send = {
|
|
|
|
token: resp.token,
|
|
|
|
id: this.id
|
|
|
|
};
|
|
|
|
const checkVerified = () => _post("/users/telegram", send, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
if (req.status == 200 && req.response["success"] as boolean) {
|
|
|
|
removeLoader(waiting);
|
|
|
|
waiting.classList.add("~positive");
|
|
|
|
waiting.classList.remove("~info");
|
|
|
|
window.notifications.customSuccess("telegramVerified", window.lang.notif("telegramVerified"));
|
|
|
|
setTimeout(() => {
|
|
|
|
window.modals.telegram.close();
|
|
|
|
waiting.classList.add("~info");
|
|
|
|
waiting.classList.remove("~positive");
|
|
|
|
}, 2000);
|
|
|
|
document.dispatchEvent(new CustomEvent("accounts-reload"));
|
|
|
|
} else if (!modalClosed) {
|
|
|
|
setTimeout(checkVerified, 1500);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, true);
|
|
|
|
window.modals.telegram.show();
|
|
|
|
checkVerified();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2023-06-14 17:57:30 +00:00
|
|
|
get id() { return this._id; }
|
|
|
|
set id(v: string) { this._id = v; }
|
|
|
|
|
2021-05-07 17:20:35 +00:00
|
|
|
|
2021-01-05 18:16:23 +00:00
|
|
|
update = (user: User) => {
|
|
|
|
this.id = user.id;
|
|
|
|
this.name = user.name;
|
|
|
|
this.email = user.email || "";
|
2021-05-29 23:05:46 +00:00
|
|
|
// Little hack to get settings cogs to appear on first load
|
|
|
|
this._discordUsername = user.discord;
|
|
|
|
this._telegramUsername = user.telegram;
|
|
|
|
this._matrixID = user.matrix;
|
2021-05-21 20:35:25 +00:00
|
|
|
this.discord = user.discord;
|
2021-05-23 13:48:36 +00:00
|
|
|
this.telegram = user.telegram;
|
2021-05-29 23:05:46 +00:00
|
|
|
this.matrix = user.matrix;
|
2021-01-05 18:16:23 +00:00
|
|
|
this.last_active = user.last_active;
|
|
|
|
this.admin = user.admin;
|
2021-02-28 17:52:24 +00:00
|
|
|
this.disabled = user.disabled;
|
|
|
|
this.expiry = user.expiry;
|
2021-05-21 20:35:25 +00:00
|
|
|
this.notify_discord = user.notify_discord;
|
2021-05-23 13:48:36 +00:00
|
|
|
this.notify_telegram = user.notify_telegram;
|
2021-05-29 23:05:46 +00:00
|
|
|
this.notify_matrix = user.notify_matrix;
|
2021-05-21 20:35:25 +00:00
|
|
|
this.notify_email = user.notify_email;
|
2021-05-23 13:32:35 +00:00
|
|
|
this.discord_id = user.discord_id;
|
2022-01-08 16:20:31 +00:00
|
|
|
this.label = user.label;
|
2022-01-09 19:29:17 +00:00
|
|
|
this.accounts_admin = user.accounts_admin;
|
2021-01-05 18:16:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
asElement = (): HTMLTableRowElement => { return this._row; }
|
|
|
|
remove = () => {
|
|
|
|
if (this.selected) {
|
|
|
|
document.dispatchEvent(this._uncheckEvent);
|
2020-10-22 16:50:40 +00:00
|
|
|
}
|
2021-01-05 18:16:23 +00:00
|
|
|
this._row.remove();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class accountsList {
|
|
|
|
private _table = document.getElementById("accounts-list") as HTMLTableSectionElement;
|
|
|
|
|
|
|
|
private _addUserButton = document.getElementById("accounts-add-user") as HTMLSpanElement;
|
2021-02-18 14:58:53 +00:00
|
|
|
private _announceButton = document.getElementById("accounts-announce") as HTMLSpanElement;
|
2021-07-10 15:43:27 +00:00
|
|
|
private _announceSaveButton = document.getElementById("save-announce") as HTMLSpanElement;
|
|
|
|
private _announceNameLabel = document.getElementById("announce-name") as HTMLLabelElement;
|
2021-05-03 17:35:27 +00:00
|
|
|
private _announcePreview: HTMLElement;
|
|
|
|
private _previewLoaded = false;
|
|
|
|
private _announceTextarea = document.getElementById("textarea-announce") as HTMLTextAreaElement;
|
2021-01-05 18:16:23 +00:00
|
|
|
private _deleteUser = document.getElementById("accounts-delete-user") as HTMLSpanElement;
|
2021-04-12 20:28:36 +00:00
|
|
|
private _disableEnable = document.getElementById("accounts-disable-enable") as HTMLSpanElement;
|
2021-10-18 19:39:23 +00:00
|
|
|
private _enableExpiry = document.getElementById("accounts-enable-expiry") as HTMLSpanElement;
|
2021-01-05 18:16:23 +00:00
|
|
|
private _deleteNotify = document.getElementById("delete-user-notify") as HTMLInputElement;
|
|
|
|
private _deleteReason = document.getElementById("textarea-delete-user") as HTMLTextAreaElement;
|
2021-02-28 17:52:24 +00:00
|
|
|
private _extendExpiry = document.getElementById("accounts-extend-expiry") as HTMLSpanElement;
|
2021-10-18 19:39:23 +00:00
|
|
|
private _enableExpiryNotify = document.getElementById("expiry-extend-enable") as HTMLInputElement;
|
|
|
|
private _enableExpiryReason = document.getElementById("textarea-extend-enable") as HTMLTextAreaElement;
|
2021-01-05 18:16:23 +00:00
|
|
|
private _modifySettings = document.getElementById("accounts-modify-user") as HTMLSpanElement;
|
|
|
|
private _modifySettingsProfile = document.getElementById("radio-use-profile") as HTMLInputElement;
|
|
|
|
private _modifySettingsUser = document.getElementById("radio-use-user") as HTMLInputElement;
|
2021-10-13 14:04:22 +00:00
|
|
|
private _sendPWR = document.getElementById("accounts-send-pwr") as HTMLSpanElement;
|
2021-01-05 18:16:23 +00:00
|
|
|
private _profileSelect = document.getElementById("modify-user-profiles") as HTMLSelectElement;
|
|
|
|
private _userSelect = document.getElementById("modify-user-users") as HTMLSelectElement;
|
2021-03-13 14:26:29 +00:00
|
|
|
private _search = document.getElementById("accounts-search") as HTMLInputElement;
|
2021-01-05 18:16:23 +00:00
|
|
|
|
|
|
|
private _selectAll = document.getElementById("accounts-select-all") as HTMLInputElement;
|
|
|
|
private _users: { [id: string]: user };
|
2023-06-13 10:07:56 +00:00
|
|
|
private _ordering: string[] = [];
|
2021-01-05 18:16:23 +00:00
|
|
|
private _checkCount: number = 0;
|
2021-03-13 14:26:29 +00:00
|
|
|
private _inSearch = false;
|
2021-04-12 20:28:36 +00:00
|
|
|
// Whether the enable/disable button should enable or not.
|
|
|
|
private _shouldEnable = false;
|
2021-01-05 18:16:23 +00:00
|
|
|
|
|
|
|
private _addUserForm = document.getElementById("form-add-user") as HTMLFormElement;
|
|
|
|
private _addUserName = this._addUserForm.querySelector("input[type=text]") as HTMLInputElement;
|
|
|
|
private _addUserEmail = this._addUserForm.querySelector("input[type=email]") as HTMLInputElement;
|
|
|
|
private _addUserPassword = this._addUserForm.querySelector("input[type=password]") as HTMLInputElement;
|
|
|
|
|
2023-06-13 10:07:56 +00:00
|
|
|
// Columns for sorting.
|
|
|
|
private _columns: { [className: string]: Column } = {};
|
|
|
|
private _activeSortColumn: string;
|
|
|
|
|
2023-06-13 11:02:43 +00:00
|
|
|
private _sortingByButton = document.getElementById("accounts-sort-by-field") as HTMLButtonElement;
|
2023-06-14 17:38:12 +00:00
|
|
|
private _filterArea = document.getElementById("accounts-filter-area");
|
|
|
|
private _searchOptionsHeader = document.getElementById("accounts-search-options-header");
|
2023-06-13 10:07:56 +00:00
|
|
|
|
2022-01-25 15:27:16 +00:00
|
|
|
// Whether the "Extend expiry" is extending or setting an expiry.
|
|
|
|
private _settingExpiry = false;
|
|
|
|
|
2021-02-28 17:52:24 +00:00
|
|
|
private _count = 30;
|
|
|
|
private _populateNumbers = () => {
|
2021-04-08 19:43:01 +00:00
|
|
|
const fieldIDs = ["months", "days", "hours", "minutes"];
|
2021-02-28 17:52:24 +00:00
|
|
|
const prefixes = ["extend-expiry-"];
|
|
|
|
for (let i = 0; i < fieldIDs.length; i++) {
|
|
|
|
for (let j = 0; j < prefixes.length; j++) {
|
|
|
|
const field = document.getElementById(prefixes[j] + fieldIDs[i]);
|
|
|
|
field.textContent = '';
|
|
|
|
for (let n = 0; n <= this._count; n++) {
|
|
|
|
const opt = document.createElement("option") as HTMLOptionElement;
|
|
|
|
opt.textContent = ""+n;
|
|
|
|
opt.value = ""+n;
|
|
|
|
field.appendChild(opt);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-06-14 12:58:36 +00:00
|
|
|
|
2023-06-14 17:38:12 +00:00
|
|
|
showHideSearchOptionsHeader = () => {
|
|
|
|
const sortingBy = !(this._sortingByButton.parentElement.classList.contains("hidden"));
|
|
|
|
const hasFilters = this._filterArea.textContent != "";
|
|
|
|
console.log("sortingBy", sortingBy, "hasFilters", hasFilters);
|
|
|
|
if (sortingBy || hasFilters) {
|
|
|
|
this._searchOptionsHeader.classList.remove("hidden");
|
|
|
|
} else {
|
|
|
|
this._searchOptionsHeader.classList.add("hidden");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-14 12:58:36 +00:00
|
|
|
private _queries: { [field: string]: { name: string, getter: string, bool: boolean, string: boolean, date: boolean, dependsOnTableHeader?: string, show?: boolean }} = {
|
|
|
|
"id": {
|
2023-06-14 18:59:38 +00:00
|
|
|
// We don't use a translation here to circumvent the name substitution feature.
|
|
|
|
name: "Jellyfin/Emby ID",
|
2023-06-14 12:58:36 +00:00
|
|
|
getter: "id",
|
|
|
|
bool: false,
|
|
|
|
string: true,
|
|
|
|
date: false
|
|
|
|
},
|
|
|
|
"label": {
|
2023-06-14 18:59:38 +00:00
|
|
|
name: window.lang.strings("label"),
|
2023-06-14 12:58:36 +00:00
|
|
|
getter: "label",
|
|
|
|
bool: true,
|
|
|
|
string: true,
|
|
|
|
date: false
|
|
|
|
},
|
|
|
|
"username": {
|
2023-06-14 18:59:38 +00:00
|
|
|
name: window.lang.strings("username"),
|
2023-06-14 12:58:36 +00:00
|
|
|
getter: "name",
|
|
|
|
bool: false,
|
|
|
|
string: true,
|
|
|
|
date: false
|
|
|
|
},
|
|
|
|
"name": {
|
2023-06-14 18:59:38 +00:00
|
|
|
name: window.lang.strings("username"),
|
2023-06-14 12:58:36 +00:00
|
|
|
getter: "name",
|
|
|
|
bool: false,
|
|
|
|
string: true,
|
|
|
|
date: false,
|
|
|
|
show: false
|
|
|
|
},
|
|
|
|
"admin": {
|
2023-06-14 18:59:38 +00:00
|
|
|
name: window.lang.strings("admin"),
|
2023-06-14 12:58:36 +00:00
|
|
|
getter: "admin",
|
|
|
|
bool: true,
|
|
|
|
string: false,
|
|
|
|
date: false
|
|
|
|
},
|
|
|
|
"disabled": {
|
2023-06-14 18:59:38 +00:00
|
|
|
name: window.lang.strings("disabled"),
|
2023-06-14 12:58:36 +00:00
|
|
|
getter: "disabled",
|
|
|
|
bool: true,
|
|
|
|
string: false,
|
|
|
|
date: false
|
|
|
|
},
|
|
|
|
"access-jfa": {
|
2023-06-14 18:59:38 +00:00
|
|
|
name: window.lang.strings("accessJFA"),
|
2023-06-14 12:58:36 +00:00
|
|
|
getter: "accounts_admin",
|
|
|
|
bool: true,
|
|
|
|
string: false,
|
|
|
|
date: false,
|
|
|
|
dependsOnTableHeader: "accounts-header-access-jfa"
|
|
|
|
},
|
|
|
|
"email": {
|
2023-06-14 18:59:38 +00:00
|
|
|
name: window.lang.strings("emailAddress"),
|
2023-06-14 12:58:36 +00:00
|
|
|
getter: "email",
|
|
|
|
bool: true,
|
|
|
|
string: true,
|
|
|
|
date: false,
|
|
|
|
dependsOnTableHeader: "accounts-header-email"
|
|
|
|
},
|
|
|
|
"telegram": {
|
|
|
|
name: "Telegram",
|
|
|
|
getter: "telegram",
|
|
|
|
bool: true,
|
|
|
|
string: true,
|
|
|
|
date: false,
|
|
|
|
dependsOnTableHeader: "accounts-header-telegram"
|
|
|
|
},
|
|
|
|
"matrix": {
|
|
|
|
name: "Matrix",
|
|
|
|
getter: "matrix",
|
|
|
|
bool: true,
|
|
|
|
string: true,
|
|
|
|
date: false,
|
|
|
|
dependsOnTableHeader: "accounts-header-matrix"
|
|
|
|
},
|
|
|
|
"discord": {
|
|
|
|
name: "Discord",
|
|
|
|
getter: "discord",
|
|
|
|
bool: true,
|
|
|
|
string: true,
|
|
|
|
date: false,
|
|
|
|
dependsOnTableHeader: "accounts-header-discord"
|
|
|
|
},
|
|
|
|
"expiry": {
|
2023-06-14 18:59:38 +00:00
|
|
|
name: window.lang.strings("expiry"),
|
2023-06-14 12:58:36 +00:00
|
|
|
getter: "expiry",
|
|
|
|
bool: true,
|
|
|
|
string: false,
|
|
|
|
date: true,
|
|
|
|
dependsOnTableHeader: "accounts-header-expiry"
|
|
|
|
},
|
|
|
|
"last-active": {
|
2023-06-14 18:59:38 +00:00
|
|
|
name: window.lang.strings("lastActiveTime"),
|
2023-06-14 12:58:36 +00:00
|
|
|
getter: "last_active",
|
|
|
|
bool: true,
|
|
|
|
string: false,
|
|
|
|
date: true
|
2021-03-13 14:26:29 +00:00
|
|
|
}
|
2023-06-14 12:58:36 +00:00
|
|
|
}
|
2023-06-13 12:39:13 +00:00
|
|
|
|
2023-06-14 12:58:36 +00:00
|
|
|
search = (query: String): string[] => {
|
2023-06-14 18:59:38 +00:00
|
|
|
console.log(this._queries);
|
2023-06-14 17:38:12 +00:00
|
|
|
this._filterArea.textContent = "";
|
2023-06-13 21:27:08 +00:00
|
|
|
|
2023-06-13 12:39:13 +00:00
|
|
|
query = query.toLowerCase();
|
|
|
|
let result: string[] = [...this._ordering];
|
2023-06-13 16:19:24 +00:00
|
|
|
// console.log("initial:", result);
|
2023-06-13 12:39:13 +00:00
|
|
|
|
|
|
|
// const words = query.split(" ");
|
|
|
|
let words: string[] = [];
|
|
|
|
// FIXME: SPLIT BY SPACE, UNLESS IN QUOTES
|
|
|
|
|
|
|
|
let quoteSymbol = ``;
|
|
|
|
let queryStart = -1;
|
|
|
|
let lastQuote = -1;
|
|
|
|
for (let i = 0; i < query.length; i++) {
|
|
|
|
if (queryStart == -1 && query[i] != " " && query[i] != `"` && query[i] != `'`) {
|
|
|
|
queryStart = i;
|
|
|
|
}
|
|
|
|
if ((query[i] == `"` || query[i] == `'`) && (quoteSymbol == `` || query[i] == quoteSymbol)) {
|
|
|
|
if (lastQuote != -1) {
|
|
|
|
lastQuote = -1;
|
|
|
|
quoteSymbol = ``;
|
|
|
|
} else {
|
|
|
|
lastQuote = i;
|
|
|
|
quoteSymbol = query[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (query[i] == " " || i == query.length-1) {
|
|
|
|
if (lastQuote != -1) {
|
|
|
|
continue;
|
|
|
|
} else {
|
2023-06-13 21:27:08 +00:00
|
|
|
let end = i+1;
|
|
|
|
if (query[i] == " ") {
|
|
|
|
end = i;
|
|
|
|
while (i+1 < query.length && query[i+1] == " ") {
|
|
|
|
i += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
words.push(query.substring(queryStart, end).replace(/['"]/g, ""));
|
|
|
|
console.log("pushed", words);
|
2023-06-13 12:39:13 +00:00
|
|
|
queryStart = -1;
|
|
|
|
}
|
2021-03-13 14:26:29 +00:00
|
|
|
}
|
|
|
|
}
|
2023-06-13 12:39:13 +00:00
|
|
|
|
|
|
|
query = "";
|
|
|
|
for (let word of words) {
|
2023-06-13 21:27:08 +00:00
|
|
|
if (!word.includes(":")) {
|
|
|
|
let cachedResult = [...result];
|
|
|
|
for (let id of cachedResult) {
|
|
|
|
const u = this._users[id];
|
|
|
|
if (!u.matchesSearch(word)) {
|
|
|
|
result.splice(result.indexOf(id), 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
2023-06-13 16:19:24 +00:00
|
|
|
const split = [word.substring(0, word.indexOf(":")), word.substring(word.indexOf(":")+1)];
|
2023-06-13 12:39:13 +00:00
|
|
|
|
2023-06-14 12:58:36 +00:00
|
|
|
if (!(split[0] in this._queries)) continue;
|
2023-06-13 12:39:13 +00:00
|
|
|
|
2023-06-14 12:58:36 +00:00
|
|
|
const queryFormat = this._queries[split[0]];
|
2023-06-13 12:39:13 +00:00
|
|
|
|
|
|
|
if (queryFormat.bool) {
|
|
|
|
let isBool = false;
|
|
|
|
let boolState = false;
|
|
|
|
if (split[1] == "true" || split[1] == "yes" || split[1] == "t" || split[1] == "y") {
|
|
|
|
isBool = true;
|
|
|
|
boolState = true;
|
|
|
|
} else if (split[1] == "false" || split[1] == "no" || split[1] == "f" || split[1] == "n") {
|
|
|
|
isBool = true;
|
|
|
|
boolState = false;
|
|
|
|
}
|
|
|
|
if (isBool) {
|
2023-06-13 21:27:08 +00:00
|
|
|
// FIXME: Generate filter card for each filter class
|
|
|
|
const filterCard = document.createElement("span");
|
|
|
|
filterCard.ariaLabel = window.lang.strings("clickToRemoveFilter");
|
2023-06-14 17:38:12 +00:00
|
|
|
filterCard.classList.add("button", "~" + (boolState ? "positive" : "critical"), "@high", "center", "m-2");
|
2023-06-13 21:27:08 +00:00
|
|
|
filterCard.innerHTML = `
|
|
|
|
<span class="font-bold mr-2">${queryFormat.name}</span>
|
|
|
|
<i class="text-2xl ri-${boolState? "checkbox" : "close"}-circle-fill"></i>
|
|
|
|
`;
|
|
|
|
|
|
|
|
filterCard.addEventListener("click", () => {
|
|
|
|
for (let quote of [`"`, `'`, ``]) {
|
|
|
|
this._search.value = this._search.value.replace(split[0] + ":" + quote + split[1] + quote, "");
|
|
|
|
}
|
|
|
|
this._search.oninput((null as Event));
|
|
|
|
})
|
|
|
|
|
2023-06-14 17:38:12 +00:00
|
|
|
this._filterArea.appendChild(filterCard);
|
2023-06-13 21:27:08 +00:00
|
|
|
|
2023-06-13 12:39:13 +00:00
|
|
|
// console.log("is bool, state", boolState);
|
|
|
|
// So removing elements doesn't affect us
|
|
|
|
let cachedResult = [...result];
|
|
|
|
for (let id of cachedResult) {
|
|
|
|
const u = this._users[id];
|
|
|
|
const value = Object.getOwnPropertyDescriptor(user.prototype, queryFormat.getter).get.call(u);
|
|
|
|
// console.log("got", queryFormat.getter + ":", value);
|
|
|
|
// Remove from result if not matching query
|
|
|
|
if (!((value && boolState) || (!value && !boolState))) {
|
|
|
|
// console.log("not matching, result is", result);
|
|
|
|
result.splice(result.indexOf(id), 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (queryFormat.string) {
|
2023-06-13 21:27:08 +00:00
|
|
|
const filterCard = document.createElement("span");
|
|
|
|
filterCard.ariaLabel = window.lang.strings("clickToRemoveFilter");
|
2023-06-14 17:38:12 +00:00
|
|
|
filterCard.classList.add("button", "~neutral", "@low", "center", "m-2", "h-full");
|
2023-06-13 21:27:08 +00:00
|
|
|
filterCard.innerHTML = `
|
|
|
|
<span class="font-bold mr-2">${queryFormat.name}:</span> "${split[1]}"
|
|
|
|
`;
|
|
|
|
|
|
|
|
filterCard.addEventListener("click", () => {
|
|
|
|
for (let quote of [`"`, `'`, ``]) {
|
2023-06-14 12:58:36 +00:00
|
|
|
let regex = new RegExp(split[0] + ":" + quote + split[1] + quote, "ig");
|
|
|
|
this._search.value = this._search.value.replace(regex, "");
|
2023-06-13 21:27:08 +00:00
|
|
|
}
|
|
|
|
this._search.oninput((null as Event));
|
|
|
|
})
|
|
|
|
|
2023-06-14 17:38:12 +00:00
|
|
|
this._filterArea.appendChild(filterCard);
|
2023-06-13 21:27:08 +00:00
|
|
|
|
2023-06-13 12:55:40 +00:00
|
|
|
let cachedResult = [...result];
|
|
|
|
for (let id of cachedResult) {
|
|
|
|
const u = this._users[id];
|
|
|
|
const value = Object.getOwnPropertyDescriptor(user.prototype, queryFormat.getter).get.call(u);
|
|
|
|
if (!(value.includes(split[1]))) {
|
|
|
|
result.splice(result.indexOf(id), 1);
|
|
|
|
}
|
|
|
|
}
|
2023-06-13 12:39:13 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (queryFormat.date) {
|
2023-06-13 16:19:24 +00:00
|
|
|
// -1 = Before, 0 = On, 1 = After, 2 = No symbol, assume 0
|
|
|
|
let compareType = (split[1][0] == ">") ? 1 : ((split[1][0] == "<") ? -1 : ((split[1][0] == "=") ? 0 : 2));
|
2023-06-14 12:58:36 +00:00
|
|
|
let unmodifiedValue = split[1];
|
2023-06-13 16:19:24 +00:00
|
|
|
if (compareType != 2) {
|
|
|
|
split[1] = split[1].substring(1);
|
|
|
|
}
|
|
|
|
if (compareType == 2) compareType = 0;
|
|
|
|
|
|
|
|
let attempt: { year?: number, month?: number, day?: number, hour?: number, minute?: number } = dateParser.attempt(split[1]);
|
|
|
|
// Month in Date objects is 0-based, so make our parsed date that way too
|
|
|
|
if ("month" in attempt) attempt["month"] -= 1;
|
|
|
|
|
|
|
|
let date: Date = (Date as any).fromString(split[1]) as Date;
|
|
|
|
console.log("Read", attempt, "and", date);
|
|
|
|
if ("invalid" in (date as any)) continue;
|
2023-06-13 21:27:08 +00:00
|
|
|
|
|
|
|
const filterCard = document.createElement("span");
|
|
|
|
filterCard.ariaLabel = window.lang.strings("clickToRemoveFilter");
|
2023-06-14 17:38:12 +00:00
|
|
|
filterCard.classList.add("button", "~neutral", "@low", "center", "m-2", "h-full");
|
2023-06-13 21:27:08 +00:00
|
|
|
filterCard.innerHTML = `
|
|
|
|
<span class="font-bold mr-2">${queryFormat.name}:</span> ${(compareType == 1) ? window.lang.strings("after")+" " : ((compareType == -1) ? window.lang.strings("before")+" " : "")}${split[1]}
|
|
|
|
`;
|
|
|
|
|
|
|
|
filterCard.addEventListener("click", () => {
|
|
|
|
for (let quote of [`"`, `'`, ``]) {
|
2023-06-14 12:58:36 +00:00
|
|
|
let regex = new RegExp(split[0] + ":" + quote + unmodifiedValue + quote, "ig");
|
|
|
|
this._search.value = this._search.value.replace(regex, "");
|
2023-06-13 21:27:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
this._search.oninput((null as Event));
|
|
|
|
})
|
|
|
|
|
2023-06-14 17:38:12 +00:00
|
|
|
this._filterArea.appendChild(filterCard);
|
2023-06-13 21:27:08 +00:00
|
|
|
|
2023-06-13 16:19:24 +00:00
|
|
|
let cachedResult = [...result];
|
|
|
|
for (let id of cachedResult) {
|
|
|
|
const u = this._users[id];
|
|
|
|
const unixValue = Object.getOwnPropertyDescriptor(user.prototype, queryFormat.getter).get.call(u);
|
|
|
|
if (unixValue == 0) {
|
|
|
|
result.splice(result.indexOf(id), 1);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
let value = new Date(unixValue*1000);
|
|
|
|
|
|
|
|
const getterPairs: [string, () => number][] = [["year", Date.prototype.getFullYear], ["month", Date.prototype.getMonth], ["day", Date.prototype.getDate], ["hour", Date.prototype.getHours], ["minute", Date.prototype.getMinutes]];
|
|
|
|
|
|
|
|
// When doing > or < <time> with no date, we need to ignore the rest of the Date object
|
|
|
|
if (compareType != 0 && Object.keys(attempt).length == 2 && "hour" in attempt && "minute" in attempt) {
|
|
|
|
const temp = new Date(date.valueOf());
|
|
|
|
temp.setHours(value.getHours(), value.getMinutes());
|
|
|
|
value = temp;
|
|
|
|
console.log("just hours/minutes workaround, value set to", value);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
let match = true;
|
|
|
|
if (compareType == 0) {
|
|
|
|
for (let pair of getterPairs) {
|
|
|
|
if (pair[0] in attempt) {
|
|
|
|
if (compareType == 0 && attempt[pair[0]] != pair[1].call(value)) {
|
|
|
|
match = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if (compareType == -1) {
|
|
|
|
match = (value < date);
|
|
|
|
} else if (compareType == 1) {
|
|
|
|
match = (value > date);
|
|
|
|
}
|
|
|
|
if (!match) {
|
|
|
|
result.splice(result.indexOf(id), 1);
|
|
|
|
}
|
|
|
|
}
|
2023-06-13 12:39:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
};
|
|
|
|
|
2021-02-28 17:52:24 +00:00
|
|
|
|
2021-01-05 18:16:23 +00:00
|
|
|
get selectAll(): boolean { return this._selectAll.checked; }
|
2021-03-13 14:26:29 +00:00
|
|
|
set selectAll(state: boolean) {
|
|
|
|
let count = 0;
|
2021-01-05 18:16:23 +00:00
|
|
|
for (let id in this._users) {
|
2021-03-13 14:26:29 +00:00
|
|
|
if (this._table.contains(this._users[id].asElement())) { // Only select visible elements
|
|
|
|
this._users[id].selected = state;
|
|
|
|
count++;
|
|
|
|
}
|
2020-10-22 16:50:40 +00:00
|
|
|
}
|
2021-01-05 18:16:23 +00:00
|
|
|
this._selectAll.checked = state;
|
|
|
|
this._selectAll.indeterminate = false;
|
2021-03-13 14:26:29 +00:00
|
|
|
state ? this._checkCount = count : 0;
|
2021-01-05 18:16:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
add = (u: User) => {
|
|
|
|
let domAccount = new user(u);
|
|
|
|
this._users[u.id] = domAccount;
|
|
|
|
}
|
|
|
|
|
|
|
|
private _checkCheckCount = () => {
|
2021-03-13 14:26:29 +00:00
|
|
|
const list = this._collectUsers();
|
|
|
|
this._checkCount = list.length;
|
2021-01-05 18:16:23 +00:00
|
|
|
if (this._checkCount == 0) {
|
|
|
|
this._selectAll.indeterminate = false;
|
|
|
|
this._selectAll.checked = false;
|
|
|
|
this._modifySettings.classList.add("unfocused");
|
|
|
|
this._deleteUser.classList.add("unfocused");
|
2021-05-07 15:06:47 +00:00
|
|
|
if (window.emailEnabled || window.telegramEnabled) {
|
2023-06-14 16:15:24 +00:00
|
|
|
this._announceButton.parentElement.classList.add("unfocused");
|
2021-02-18 14:58:53 +00:00
|
|
|
}
|
2021-02-28 17:52:24 +00:00
|
|
|
this._extendExpiry.classList.add("unfocused");
|
2023-06-14 16:15:24 +00:00
|
|
|
this._disableEnable.parentElement.classList.add("unfocused");
|
2021-10-13 14:04:22 +00:00
|
|
|
this._sendPWR.classList.add("unfocused");
|
2021-01-05 18:16:23 +00:00
|
|
|
} else {
|
2021-03-13 14:26:29 +00:00
|
|
|
let visibleCount = 0;
|
|
|
|
for (let id in this._users) {
|
|
|
|
if (this._table.contains(this._users[id].asElement())) {
|
|
|
|
visibleCount++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (this._checkCount == visibleCount) {
|
2021-01-05 18:16:23 +00:00
|
|
|
this._selectAll.checked = true;
|
|
|
|
this._selectAll.indeterminate = false;
|
|
|
|
} else {
|
|
|
|
this._selectAll.checked = false;
|
|
|
|
this._selectAll.indeterminate = true;
|
2020-10-22 16:50:40 +00:00
|
|
|
}
|
2021-01-05 18:16:23 +00:00
|
|
|
this._modifySettings.classList.remove("unfocused");
|
|
|
|
this._deleteUser.classList.remove("unfocused");
|
2021-03-13 14:26:29 +00:00
|
|
|
this._deleteUser.textContent = window.lang.quantity("deleteUser", list.length);
|
2021-05-07 15:06:47 +00:00
|
|
|
if (window.emailEnabled || window.telegramEnabled) {
|
2023-06-14 16:15:24 +00:00
|
|
|
this._announceButton.parentElement.classList.remove("unfocused");
|
2021-02-18 14:58:53 +00:00
|
|
|
}
|
2021-03-13 14:26:29 +00:00
|
|
|
let anyNonExpiries = list.length == 0 ? true : false;
|
2022-01-25 15:27:16 +00:00
|
|
|
let allNonExpiries = true;
|
2021-10-13 14:04:22 +00:00
|
|
|
let noContactCount = 0;
|
2021-04-12 20:28:36 +00:00
|
|
|
// Only show enable/disable button if all selected have the same state.
|
|
|
|
this._shouldEnable = this._users[list[0]].disabled
|
|
|
|
let showDisableEnable = true;
|
2021-02-28 17:52:24 +00:00
|
|
|
for (let id of list) {
|
2021-04-12 20:28:36 +00:00
|
|
|
if (!anyNonExpiries && !this._users[id].expiry) {
|
2021-02-28 17:52:24 +00:00
|
|
|
anyNonExpiries = true;
|
|
|
|
this._extendExpiry.classList.add("unfocused");
|
|
|
|
}
|
2022-01-25 15:27:16 +00:00
|
|
|
if (this._users[id].expiry) {
|
|
|
|
allNonExpiries = false;
|
|
|
|
}
|
2021-04-12 20:28:36 +00:00
|
|
|
if (showDisableEnable && this._users[id].disabled != this._shouldEnable) {
|
|
|
|
showDisableEnable = false;
|
2023-06-14 16:15:24 +00:00
|
|
|
this._disableEnable.parentElement.classList.add("unfocused");
|
2021-04-12 20:28:36 +00:00
|
|
|
}
|
|
|
|
if (!showDisableEnable && anyNonExpiries) { break; }
|
2023-01-30 13:55:38 +00:00
|
|
|
if (!this._users[id].lastNotifyMethod()) {
|
2021-10-13 14:04:22 +00:00
|
|
|
noContactCount++;
|
|
|
|
}
|
2021-02-28 17:52:24 +00:00
|
|
|
}
|
2022-01-25 15:27:16 +00:00
|
|
|
this._settingExpiry = false;
|
|
|
|
if (!anyNonExpiries && !allNonExpiries) {
|
2021-02-28 17:52:24 +00:00
|
|
|
this._extendExpiry.classList.remove("unfocused");
|
2022-01-25 15:27:16 +00:00
|
|
|
this._extendExpiry.textContent = window.lang.strings("extendExpiry");
|
|
|
|
}
|
|
|
|
if (allNonExpiries) {
|
|
|
|
this._extendExpiry.classList.remove("unfocused");
|
|
|
|
this._extendExpiry.textContent = window.lang.strings("setExpiry");
|
|
|
|
this._settingExpiry = true;
|
2021-02-28 17:52:24 +00:00
|
|
|
}
|
2021-10-13 14:04:22 +00:00
|
|
|
// Only show "Send PWR" if a maximum of 1 user selected doesn't have a contact method
|
|
|
|
if (noContactCount > 1) {
|
|
|
|
this._sendPWR.classList.add("unfocused");
|
2021-12-24 19:05:48 +00:00
|
|
|
} else if (window.linkResetEnabled) {
|
2021-10-13 14:04:22 +00:00
|
|
|
this._sendPWR.classList.remove("unfocused");
|
|
|
|
}
|
2021-04-12 20:28:36 +00:00
|
|
|
if (showDisableEnable) {
|
|
|
|
let message: string;
|
|
|
|
if (this._shouldEnable) {
|
2021-10-18 19:39:23 +00:00
|
|
|
this._disableEnable.parentElement.classList.remove("manual");
|
2021-04-12 20:28:36 +00:00
|
|
|
message = window.lang.strings("reEnable");
|
|
|
|
this._disableEnable.classList.add("~positive");
|
|
|
|
this._disableEnable.classList.remove("~warning");
|
|
|
|
} else {
|
2021-10-18 19:39:23 +00:00
|
|
|
this._disableEnable.parentElement.classList.add("manual");
|
2021-04-12 20:28:36 +00:00
|
|
|
message = window.lang.strings("disable");
|
|
|
|
this._disableEnable.classList.add("~warning");
|
|
|
|
this._disableEnable.classList.remove("~positive");
|
|
|
|
}
|
2023-06-14 16:15:24 +00:00
|
|
|
this._disableEnable.parentElement.classList.remove("unfocused");
|
2021-04-12 20:28:36 +00:00
|
|
|
this._disableEnable.textContent = message;
|
|
|
|
}
|
2020-10-22 16:50:40 +00:00
|
|
|
}
|
2021-01-05 18:16:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private _collectUsers = (): string[] => {
|
|
|
|
let list: string[] = [];
|
|
|
|
for (let id in this._users) {
|
2021-03-13 14:26:29 +00:00
|
|
|
if (this._table.contains(this._users[id].asElement()) && this._users[id].selected) { list.push(id); }
|
2020-10-22 16:50:40 +00:00
|
|
|
}
|
2021-01-05 18:16:23 +00:00
|
|
|
return list;
|
2020-10-22 16:50:40 +00:00
|
|
|
}
|
|
|
|
|
2021-01-05 18:16:23 +00:00
|
|
|
private _addUser = (event: Event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
const button = this._addUserForm.querySelector("span.submit") as HTMLSpanElement;
|
|
|
|
const send = {
|
|
|
|
"username": this._addUserName.value,
|
|
|
|
"email": this._addUserEmail.value,
|
|
|
|
"password": this._addUserPassword.value
|
|
|
|
};
|
|
|
|
for (let field in send) {
|
|
|
|
if (!send[field]) {
|
2021-01-12 23:15:12 +00:00
|
|
|
window.notifications.customError("addUserBlankField", window.lang.notif("errorBlankFields"));
|
2021-01-05 18:16:23 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
toggleLoader(button);
|
|
|
|
_post("/users", send, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
toggleLoader(button);
|
2021-01-24 15:19:58 +00:00
|
|
|
if (req.status == 200 || (req.response["user"] as boolean)) {
|
2021-01-12 23:15:12 +00:00
|
|
|
window.notifications.customSuccess("addUser", window.lang.var("notifications", "userCreated", `"${send['username']}"`));
|
2021-01-24 15:19:58 +00:00
|
|
|
if (!req.response["email"]) {
|
|
|
|
window.notifications.customError("sendWelcome", window.lang.notif("errorSendWelcomeEmail"));
|
|
|
|
console.log("User created, but welcome email failed");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
window.notifications.customError("addUser", window.lang.var("notifications", "errorUserCreated", `"${send['username']}"`));
|
|
|
|
}
|
|
|
|
if (req.response["error"] as String) {
|
|
|
|
console.log(req.response["error"]);
|
2021-01-05 18:16:23 +00:00
|
|
|
}
|
2021-01-24 15:19:58 +00:00
|
|
|
|
2021-01-05 18:16:23 +00:00
|
|
|
this.reload();
|
|
|
|
window.modals.addUser.close();
|
|
|
|
}
|
2021-01-24 15:19:58 +00:00
|
|
|
}, true);
|
2021-01-05 18:16:23 +00:00
|
|
|
}
|
2021-05-03 17:35:27 +00:00
|
|
|
loadPreview = () => {
|
|
|
|
let content = this._announceTextarea.value;
|
|
|
|
if (!this._previewLoaded) {
|
|
|
|
content = stripMarkdown(content);
|
|
|
|
this._announcePreview.textContent = content;
|
|
|
|
} else {
|
|
|
|
content = Marked.parse(content);
|
|
|
|
this._announcePreview.innerHTML = content;
|
|
|
|
}
|
|
|
|
}
|
2021-07-10 15:43:27 +00:00
|
|
|
saveAnnouncement = (event: Event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
const form = document.getElementById("form-announce") as HTMLFormElement;
|
|
|
|
const button = form.querySelector("span.submit") as HTMLSpanElement;
|
|
|
|
if (this._announceNameLabel.classList.contains("unfocused")) {
|
|
|
|
this._announceNameLabel.classList.remove("unfocused");
|
|
|
|
form.onsubmit = this.saveAnnouncement;
|
|
|
|
button.textContent = window.lang.get("strings", "saveAsTemplate");
|
|
|
|
this._announceSaveButton.classList.add("unfocused");
|
|
|
|
const details = document.getElementById("announce-details");
|
|
|
|
details.classList.add("unfocused");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const name = (this._announceNameLabel.querySelector("input") as HTMLInputElement).value;
|
|
|
|
if (!name) { return; }
|
|
|
|
const subject = document.getElementById("announce-subject") as HTMLInputElement;
|
|
|
|
let send: announcementTemplate = {
|
|
|
|
name: name,
|
|
|
|
subject: subject.value,
|
|
|
|
message: this._announceTextarea.value
|
|
|
|
}
|
|
|
|
_post("/users/announce/template", send, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
this.reload();
|
|
|
|
toggleLoader(button);
|
|
|
|
window.modals.announce.close();
|
|
|
|
if (req.status != 200 && req.status != 204) {
|
|
|
|
window.notifications.customError("announcementError", window.lang.notif("errorFailureCheckLogs"));
|
|
|
|
} else {
|
|
|
|
window.notifications.customSuccess("announcementSuccess", window.lang.notif("savedAnnouncement"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
announce = (event?: Event, template?: announcementTemplate) => {
|
2021-02-18 14:58:53 +00:00
|
|
|
const modalHeader = document.getElementById("header-announce");
|
2021-03-13 14:26:29 +00:00
|
|
|
modalHeader.textContent = window.lang.quantity("announceTo", this._collectUsers().length);
|
2021-02-18 14:58:53 +00:00
|
|
|
const form = document.getElementById("form-announce") as HTMLFormElement;
|
|
|
|
let list = this._collectUsers();
|
|
|
|
const button = form.querySelector("span.submit") as HTMLSpanElement;
|
2021-07-10 15:43:27 +00:00
|
|
|
removeLoader(button);
|
|
|
|
button.textContent = window.lang.get("strings", "send");
|
|
|
|
const details = document.getElementById("announce-details");
|
|
|
|
details.classList.remove("unfocused");
|
|
|
|
this._announceSaveButton.classList.remove("unfocused");
|
2021-02-18 14:58:53 +00:00
|
|
|
const subject = document.getElementById("announce-subject") as HTMLInputElement;
|
2021-07-10 15:43:27 +00:00
|
|
|
this._announceNameLabel.classList.add("unfocused");
|
|
|
|
if (template) {
|
|
|
|
subject.value = template.subject;
|
|
|
|
this._announceTextarea.value = template.message;
|
|
|
|
} else {
|
|
|
|
subject.value = "";
|
|
|
|
this._announceTextarea.value = "";
|
|
|
|
}
|
2021-02-18 14:58:53 +00:00
|
|
|
form.onsubmit = (event: Event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
toggleLoader(button);
|
|
|
|
let send = {
|
|
|
|
"users": list,
|
|
|
|
"subject": subject.value,
|
2021-05-03 17:35:27 +00:00
|
|
|
"message": this._announceTextarea.value
|
2021-02-18 14:58:53 +00:00
|
|
|
}
|
|
|
|
_post("/users/announce", send, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
toggleLoader(button);
|
|
|
|
window.modals.announce.close();
|
|
|
|
if (req.status != 200 && req.status != 204) {
|
|
|
|
window.notifications.customError("announcementError", window.lang.notif("errorFailureCheckLogs"));
|
|
|
|
} else {
|
|
|
|
window.notifications.customSuccess("announcementSuccess", window.lang.notif("sentAnnouncement"));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
2021-05-03 17:35:27 +00:00
|
|
|
_get("/config/emails/Announcement", null, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
const preview = document.getElementById("announce-preview") as HTMLDivElement;
|
|
|
|
if (req.status != 200) {
|
2021-12-31 18:52:03 +00:00
|
|
|
preview.innerHTML = `<pre class="preview-content" class="font-mono bg-inherit"></pre>`;
|
2021-05-03 17:35:27 +00:00
|
|
|
window.modals.announce.show();
|
|
|
|
this._previewLoaded = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
let templ = req.response as templateEmail;
|
|
|
|
if (!templ.html) {
|
2021-12-31 18:52:03 +00:00
|
|
|
preview.innerHTML = `<pre class="preview-content" class="font-mono bg-inherit"></pre>`;
|
2021-05-03 17:35:27 +00:00
|
|
|
this._previewLoaded = false;
|
|
|
|
} else {
|
|
|
|
preview.innerHTML = templ.html;
|
|
|
|
this._previewLoaded = true;
|
|
|
|
}
|
|
|
|
this._announcePreview = preview.getElementsByClassName("preview-content")[0] as HTMLElement;
|
|
|
|
this.loadPreview();
|
|
|
|
window.modals.announce.show();
|
|
|
|
}
|
|
|
|
});
|
2021-02-18 14:58:53 +00:00
|
|
|
}
|
2021-07-10 15:43:27 +00:00
|
|
|
loadTemplates = () => _get("/users/announce", null, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
if (req.status != 200) {
|
|
|
|
this._announceButton.nextElementSibling.children[0].classList.add("unfocused");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this._announceButton.nextElementSibling.children[0].classList.remove("unfocused");
|
|
|
|
const list = req.response["announcements"] as string[];
|
|
|
|
if (list.length == 0) {
|
|
|
|
this._announceButton.nextElementSibling.children[0].classList.add("unfocused");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const dList = document.getElementById("accounts-announce-templates") as HTMLDivElement;
|
|
|
|
dList.textContent = '';
|
|
|
|
for (let name of list) {
|
|
|
|
const el = document.createElement("div") as HTMLDivElement;
|
2021-12-31 00:26:11 +00:00
|
|
|
el.classList.add("flex-expand", "ellipsis", "mt-2");
|
2021-07-10 15:43:27 +00:00
|
|
|
el.innerHTML = `
|
2021-12-31 00:22:28 +00:00
|
|
|
<span class="button ~neutral sm full-width accounts-announce-template-button">${name}</span><span class="button ~critical fr ml-4 accounts-announce-template-delete">×</span>
|
2021-07-10 15:43:27 +00:00
|
|
|
`;
|
|
|
|
(el.querySelector("span.accounts-announce-template-button") as HTMLSpanElement).onclick = () => {
|
|
|
|
_get("/users/announce/" + name, null, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
let template: announcementTemplate;
|
|
|
|
if (req.status != 200) {
|
|
|
|
window.notifications.customError("getTemplateError", window.lang.notif("errorFailureCheckLogs"));
|
|
|
|
} else {
|
|
|
|
template = req.response;
|
|
|
|
}
|
|
|
|
this.announce(null, template);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
(el.querySelector("span.accounts-announce-template-delete") as HTMLSpanElement).onclick = () => {
|
|
|
|
_delete("/users/announce/" + name, null, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
if (req.status != 200) {
|
|
|
|
window.notifications.customError("deleteTemplateError", window.lang.notif("errorFailureCheckLogs"));
|
|
|
|
}
|
|
|
|
this.reload();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
dList.appendChild(el);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2021-10-18 19:39:23 +00:00
|
|
|
|
|
|
|
private _enableDisableUsers = (users: string[], enable: boolean, notify: boolean, reason: string|null, post: (req: XMLHttpRequest) => void) => {
|
|
|
|
let send = {
|
|
|
|
"users": users,
|
|
|
|
"enabled": enable,
|
|
|
|
"notify": notify
|
|
|
|
};
|
|
|
|
if (reason) send["reason"] = reason;
|
|
|
|
_post("/users/enable", send, post, true);
|
|
|
|
};
|
|
|
|
|
2021-04-12 20:28:36 +00:00
|
|
|
enableDisableUsers = () => {
|
|
|
|
// We can share the delete modal for this
|
|
|
|
const modalHeader = document.getElementById("header-delete-user");
|
|
|
|
const form = document.getElementById("form-delete-user") as HTMLFormElement;
|
|
|
|
const button = form.querySelector("span.submit") as HTMLSpanElement;
|
|
|
|
let list = this._collectUsers();
|
|
|
|
if (this._shouldEnable) {
|
|
|
|
modalHeader.textContent = window.lang.quantity("reEnableUsers", list.length);
|
|
|
|
button.textContent = window.lang.strings("reEnable");
|
|
|
|
button.classList.add("~urge");
|
|
|
|
button.classList.remove("~critical");
|
|
|
|
} else {
|
|
|
|
modalHeader.textContent = window.lang.quantity("disableUsers", list.length);
|
|
|
|
button.textContent = window.lang.strings("disable");
|
|
|
|
button.classList.add("~critical");
|
|
|
|
button.classList.remove("~urge");
|
|
|
|
}
|
|
|
|
this._deleteNotify.checked = false;
|
|
|
|
this._deleteReason.value = "";
|
|
|
|
this._deleteReason.classList.add("unfocused");
|
|
|
|
form.onsubmit = (event: Event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
toggleLoader(button);
|
2021-10-18 19:39:23 +00:00
|
|
|
this._enableDisableUsers(list, this._shouldEnable, this._deleteNotify.checked, this._deleteNotify ? this._deleteReason.value : null, (req: XMLHttpRequest) => {
|
2021-04-12 20:28:36 +00:00
|
|
|
if (req.readyState == 4) {
|
|
|
|
toggleLoader(button);
|
|
|
|
window.modals.deleteUser.close();
|
|
|
|
if (req.status != 200 && req.status != 204) {
|
|
|
|
let errorMsg = window.lang.notif("errorFailureCheckLogs");
|
|
|
|
if (!("error" in req.response)) {
|
|
|
|
errorMsg = window.lang.notif("errorPartialFailureCheckLogs");
|
|
|
|
}
|
|
|
|
window.notifications.customError("deleteUserError", errorMsg);
|
|
|
|
} else if (this._shouldEnable) {
|
|
|
|
window.notifications.customSuccess("enableUserSuccess", window.lang.quantity("enabledUser", list.length));
|
|
|
|
} else {
|
|
|
|
window.notifications.customSuccess("disableUserSuccess", window.lang.quantity("disabledUser", list.length));
|
|
|
|
}
|
|
|
|
this.reload();
|
|
|
|
}
|
2021-10-18 19:39:23 +00:00
|
|
|
});
|
2021-04-12 20:28:36 +00:00
|
|
|
}
|
|
|
|
window.modals.deleteUser.show();
|
|
|
|
}
|
2021-01-05 18:16:23 +00:00
|
|
|
|
|
|
|
deleteUsers = () => {
|
|
|
|
const modalHeader = document.getElementById("header-delete-user");
|
|
|
|
let list = this._collectUsers();
|
2021-04-12 20:28:36 +00:00
|
|
|
modalHeader.textContent = window.lang.quantity("deleteNUsers", list.length);
|
2021-01-05 18:16:23 +00:00
|
|
|
const form = document.getElementById("form-delete-user") as HTMLFormElement;
|
|
|
|
const button = form.querySelector("span.submit") as HTMLSpanElement;
|
2021-04-12 20:28:36 +00:00
|
|
|
button.textContent = window.lang.strings("delete");
|
|
|
|
button.classList.add("~critical");
|
|
|
|
button.classList.remove("~urge");
|
2021-01-05 18:16:23 +00:00
|
|
|
this._deleteNotify.checked = false;
|
|
|
|
this._deleteReason.value = "";
|
|
|
|
this._deleteReason.classList.add("unfocused");
|
|
|
|
form.onsubmit = (event: Event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
toggleLoader(button);
|
|
|
|
let send = {
|
|
|
|
"users": list,
|
|
|
|
"notify": this._deleteNotify.checked,
|
|
|
|
"reason": this._deleteNotify ? this._deleteReason.value : ""
|
|
|
|
};
|
|
|
|
_delete("/users", send, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
toggleLoader(button);
|
|
|
|
window.modals.deleteUser.close();
|
|
|
|
if (req.status != 200 && req.status != 204) {
|
2021-01-12 23:15:12 +00:00
|
|
|
let errorMsg = window.lang.notif("errorFailureCheckLogs");
|
2021-01-05 18:16:23 +00:00
|
|
|
if (!("error" in req.response)) {
|
2021-01-12 23:15:12 +00:00
|
|
|
errorMsg = window.lang.notif("errorPartialFailureCheckLogs");
|
2021-01-05 18:16:23 +00:00
|
|
|
}
|
|
|
|
window.notifications.customError("deleteUserError", errorMsg);
|
|
|
|
} else {
|
2021-04-12 20:28:36 +00:00
|
|
|
window.notifications.customSuccess("deleteUserSuccess", window.lang.quantity("deletedUser", list.length));
|
2021-01-05 18:16:23 +00:00
|
|
|
}
|
|
|
|
this.reload();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
window.modals.deleteUser.show();
|
|
|
|
}
|
2021-10-13 14:04:22 +00:00
|
|
|
|
|
|
|
sendPWR = () => {
|
|
|
|
addLoader(this._sendPWR);
|
|
|
|
let list = this._collectUsers();
|
|
|
|
let manualUser: user;
|
|
|
|
for (let id of list) {
|
|
|
|
let user = this._users[id];
|
|
|
|
if (!user.lastNotifyMethod() && !user.email) {
|
|
|
|
manualUser = user;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const messageBox = document.getElementById("send-pwr-note") as HTMLParagraphElement;
|
|
|
|
let message: string;
|
|
|
|
let send = {
|
|
|
|
users: list
|
|
|
|
};
|
|
|
|
_post("/users/password-reset", send, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState != 4) return;
|
|
|
|
removeLoader(this._sendPWR);
|
|
|
|
let link: string;
|
|
|
|
if (req.status == 200) {
|
|
|
|
link = req.response["link"];
|
|
|
|
if (req.response["manual"] as boolean) {
|
|
|
|
message = window.lang.var("strings", "sendPWRManual", manualUser.name);
|
|
|
|
} else {
|
|
|
|
message = window.lang.strings("sendPWRSuccess") + " " + window.lang.strings("sendPWRSuccessManual");
|
|
|
|
}
|
|
|
|
} else if (req.status == 204) {
|
|
|
|
message = window.lang.strings("sendPWRSuccess");
|
|
|
|
} else {
|
|
|
|
window.notifications.customError("errorSendPWR", window.lang.strings("errorFailureCheckLogs"));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
message += " " + window.lang.strings("sendPWRValidFor");
|
|
|
|
messageBox.textContent = message;
|
|
|
|
let linkButton = document.getElementById("send-pwr-link") as HTMLSpanElement;
|
2021-12-24 19:05:48 +00:00
|
|
|
if (link) {
|
|
|
|
linkButton.classList.remove("unfocused");
|
|
|
|
linkButton.onclick = () => {
|
|
|
|
toClipboard(link);
|
|
|
|
linkButton.textContent = window.lang.strings("copied");
|
|
|
|
linkButton.classList.add("~positive");
|
|
|
|
linkButton.classList.remove("~urge");
|
|
|
|
setTimeout(() => {
|
|
|
|
linkButton.textContent = window.lang.strings("copy");
|
|
|
|
linkButton.classList.add("~urge");
|
|
|
|
linkButton.classList.remove("~positive");
|
|
|
|
}, 800);
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
linkButton.classList.add("unfocused");
|
|
|
|
}
|
2021-10-13 14:04:22 +00:00
|
|
|
window.modals.sendPWR.show();
|
|
|
|
}, true);
|
|
|
|
}
|
2021-01-05 18:16:23 +00:00
|
|
|
|
|
|
|
modifyUsers = () => {
|
|
|
|
const modalHeader = document.getElementById("header-modify-user");
|
2021-03-13 14:26:29 +00:00
|
|
|
modalHeader.textContent = window.lang.quantity("modifySettingsFor", this._collectUsers().length)
|
2021-01-05 18:16:23 +00:00
|
|
|
let list = this._collectUsers();
|
|
|
|
(() => {
|
|
|
|
let innerHTML = "";
|
|
|
|
for (const profile of window.availableProfiles) {
|
|
|
|
innerHTML += `<option value="${profile}">${profile}</option>`;
|
|
|
|
}
|
|
|
|
this._profileSelect.innerHTML = innerHTML;
|
|
|
|
})();
|
|
|
|
|
|
|
|
(() => {
|
|
|
|
let innerHTML = "";
|
|
|
|
for (let id in this._users) {
|
|
|
|
innerHTML += `<option value="${id}">${this._users[id].name}</option>`;
|
|
|
|
}
|
|
|
|
this._userSelect.innerHTML = innerHTML;
|
|
|
|
})();
|
|
|
|
|
|
|
|
const form = document.getElementById("form-modify-user") as HTMLFormElement;
|
|
|
|
const button = form.querySelector("span.submit") as HTMLSpanElement;
|
|
|
|
this._modifySettingsProfile.checked = true;
|
|
|
|
this._modifySettingsUser.checked = false;
|
|
|
|
form.onsubmit = (event: Event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
toggleLoader(button);
|
|
|
|
let send = {
|
|
|
|
"apply_to": list,
|
|
|
|
"homescreen": (document.getElementById("modify-user-homescreen") as HTMLInputElement).checked
|
|
|
|
};
|
|
|
|
if (this._modifySettingsProfile.checked && !this._modifySettingsUser.checked) {
|
|
|
|
send["from"] = "profile";
|
|
|
|
send["profile"] = this._profileSelect.value;
|
|
|
|
} else if (this._modifySettingsUser.checked && !this._modifySettingsProfile.checked) {
|
|
|
|
send["from"] = "user";
|
|
|
|
send["id"] = this._userSelect.value;
|
|
|
|
}
|
|
|
|
_post("/users/settings", send, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
toggleLoader(button);
|
|
|
|
if (req.status == 500) {
|
|
|
|
let response = JSON.parse(req.response);
|
|
|
|
let errorMsg = "";
|
|
|
|
if ("homescreen" in response && "policy" in response) {
|
|
|
|
const homescreen = Object.keys(response["homescreen"]).length;
|
|
|
|
const policy = Object.keys(response["policy"]).length;
|
|
|
|
if (homescreen != 0 && policy == 0) {
|
2021-01-12 23:15:12 +00:00
|
|
|
errorMsg = window.lang.notif("errorSettingsAppliedNoHomescreenLayout");
|
2021-01-05 18:16:23 +00:00
|
|
|
} else if (policy != 0 && homescreen == 0) {
|
2021-01-12 23:15:12 +00:00
|
|
|
errorMsg = window.lang.notif("errorHomescreenAppliedNoSettings");
|
2021-01-05 18:16:23 +00:00
|
|
|
} else if (policy != 0 && homescreen != 0) {
|
2021-01-12 23:15:12 +00:00
|
|
|
errorMsg = window.lang.notif("errorSettingsFailed");
|
2021-01-05 18:16:23 +00:00
|
|
|
}
|
|
|
|
} else if ("error" in response) {
|
|
|
|
errorMsg = response["error"];
|
|
|
|
}
|
|
|
|
window.notifications.customError("modifySettingsError", errorMsg);
|
|
|
|
} else if (req.status == 200 || req.status == 204) {
|
2021-03-13 14:26:29 +00:00
|
|
|
window.notifications.customSuccess("modifySettingsSuccess", window.lang.quantity("appliedSettings", this._collectUsers().length));
|
2021-01-05 18:16:23 +00:00
|
|
|
}
|
|
|
|
this.reload();
|
|
|
|
window.modals.modifyUser.close();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
window.modals.modifyUser.show();
|
|
|
|
}
|
|
|
|
|
2021-10-18 19:39:23 +00:00
|
|
|
extendExpiry = (enableUser?: boolean) => {
|
2021-02-28 17:52:24 +00:00
|
|
|
const list = this._collectUsers();
|
|
|
|
let applyList: string[] = [];
|
|
|
|
for (let id of list) {
|
2023-02-01 22:11:21 +00:00
|
|
|
applyList.push(id);
|
2021-02-28 17:52:24 +00:00
|
|
|
}
|
2021-10-18 19:39:23 +00:00
|
|
|
this._enableExpiryReason.classList.add("unfocused");
|
|
|
|
let header: string;
|
|
|
|
if (enableUser) {
|
|
|
|
header = window.lang.quantity("reEnableUsers", list.length);
|
|
|
|
this._enableExpiryNotify.parentElement.classList.remove("unfocused");
|
|
|
|
this._enableExpiryNotify.checked = false;
|
|
|
|
this._enableExpiryReason.value = "";
|
2022-01-25 15:27:16 +00:00
|
|
|
} else if (this._settingExpiry) {
|
|
|
|
header = window.lang.quantity("setExpiry", list.length);
|
|
|
|
this._enableExpiryNotify.parentElement.classList.add("unfocused");
|
2021-10-18 19:39:23 +00:00
|
|
|
} else {
|
|
|
|
header = window.lang.quantity("extendExpiry", applyList.length);
|
|
|
|
this._enableExpiryNotify.parentElement.classList.add("unfocused");
|
|
|
|
}
|
|
|
|
document.getElementById("header-extend-expiry").textContent = header;
|
|
|
|
const extend = () => {
|
2021-02-28 17:52:24 +00:00
|
|
|
let send = { "users": applyList }
|
2021-04-08 19:43:01 +00:00
|
|
|
for (let field of ["months", "days", "hours", "minutes"]) {
|
2021-02-28 17:52:24 +00:00
|
|
|
send[field] = +(document.getElementById("extend-expiry-"+field) as HTMLSelectElement).value;
|
|
|
|
}
|
|
|
|
_post("/users/extend", send, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
if (req.status != 200 && req.status != 204) {
|
|
|
|
window.notifications.customError("extendExpiryError", window.lang.notif("errorFailureCheckLogs"));
|
|
|
|
} else {
|
|
|
|
window.notifications.customSuccess("extendExpiry", window.lang.quantity("extendedExpiry", applyList.length));
|
|
|
|
}
|
|
|
|
window.modals.extendExpiry.close()
|
|
|
|
this.reload();
|
|
|
|
}
|
|
|
|
});
|
2021-10-18 19:39:23 +00:00
|
|
|
};
|
|
|
|
const form = document.getElementById("form-extend-expiry") as HTMLFormElement;
|
|
|
|
form.onsubmit = (event: Event) => {
|
|
|
|
event.preventDefault();
|
|
|
|
if (enableUser) {
|
|
|
|
this._enableDisableUsers(applyList, true, this._enableExpiryNotify.checked, this._enableExpiryNotify ? this._enableExpiryReason.value : null, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
if (req.status != 200 && req.status != 204) {
|
|
|
|
window.modals.extendExpiry.close();
|
|
|
|
let errorMsg = window.lang.notif("errorFailureCheckLogs");
|
|
|
|
if (!("error" in req.response)) {
|
|
|
|
errorMsg = window.lang.notif("errorPartialFailureCheckLogs");
|
|
|
|
}
|
|
|
|
window.notifications.customError("deleteUserError", errorMsg);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
extend();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
extend();
|
|
|
|
}
|
2021-02-28 17:52:24 +00:00
|
|
|
}
|
|
|
|
window.modals.extendExpiry.show();
|
|
|
|
}
|
2023-06-13 10:07:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
setVisibility = (users: string[], visible: boolean) => {
|
|
|
|
this._table.textContent = "";
|
|
|
|
for (let id of this._ordering) {
|
|
|
|
if (visible && users.indexOf(id) != -1) {
|
|
|
|
this._table.appendChild(this._users[id].asElement());
|
|
|
|
} else if (!visible && users.indexOf(id) == -1) {
|
|
|
|
this._table.appendChild(this._users[id].asElement());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-02-28 17:52:24 +00:00
|
|
|
|
2021-01-05 18:16:23 +00:00
|
|
|
constructor() {
|
2021-02-28 17:52:24 +00:00
|
|
|
this._populateNumbers();
|
2021-01-05 18:16:23 +00:00
|
|
|
this._users = {};
|
|
|
|
this._selectAll.checked = false;
|
2021-03-13 14:26:29 +00:00
|
|
|
this._selectAll.onchange = () => {
|
|
|
|
this.selectAll = this._selectAll.checked;
|
|
|
|
};
|
2021-05-07 17:20:35 +00:00
|
|
|
document.addEventListener("accounts-reload", this.reload);
|
2021-01-05 18:16:23 +00:00
|
|
|
document.addEventListener("accountCheckEvent", () => { this._checkCount++; this._checkCheckCount(); });
|
|
|
|
document.addEventListener("accountUncheckEvent", () => { this._checkCount--; this._checkCheckCount(); });
|
|
|
|
this._addUserButton.onclick = window.modals.addUser.toggle;
|
|
|
|
this._addUserForm.addEventListener("submit", this._addUser);
|
|
|
|
|
|
|
|
this._deleteNotify.onchange = () => {
|
|
|
|
if (this._deleteNotify.checked) {
|
|
|
|
this._deleteReason.classList.remove("unfocused");
|
|
|
|
} else {
|
|
|
|
this._deleteReason.classList.add("unfocused");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
this._modifySettings.onclick = this.modifyUsers;
|
|
|
|
this._modifySettings.classList.add("unfocused");
|
|
|
|
const checkSource = () => {
|
|
|
|
const profileSpan = this._modifySettingsProfile.nextElementSibling as HTMLSpanElement;
|
|
|
|
const userSpan = this._modifySettingsUser.nextElementSibling as HTMLSpanElement;
|
|
|
|
if (this._modifySettingsProfile.checked) {
|
|
|
|
this._userSelect.parentElement.classList.add("unfocused");
|
|
|
|
this._profileSelect.parentElement.classList.remove("unfocused")
|
2021-12-30 00:49:43 +00:00
|
|
|
profileSpan.classList.add("@high");
|
|
|
|
profileSpan.classList.remove("@low");
|
|
|
|
userSpan.classList.remove("@high");
|
|
|
|
userSpan.classList.add("@low");
|
2021-01-05 18:16:23 +00:00
|
|
|
} else {
|
|
|
|
this._userSelect.parentElement.classList.remove("unfocused");
|
|
|
|
this._profileSelect.parentElement.classList.add("unfocused");
|
2021-12-30 00:49:43 +00:00
|
|
|
userSpan.classList.add("@high");
|
|
|
|
userSpan.classList.remove("@low");
|
|
|
|
profileSpan.classList.remove("@high");
|
|
|
|
profileSpan.classList.add("@low");
|
2021-01-05 18:16:23 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
this._modifySettingsProfile.onchange = checkSource;
|
|
|
|
this._modifySettingsUser.onchange = checkSource;
|
|
|
|
|
|
|
|
this._deleteUser.onclick = this.deleteUsers;
|
|
|
|
this._deleteUser.classList.add("unfocused");
|
|
|
|
|
2021-02-18 14:58:53 +00:00
|
|
|
this._announceButton.onclick = this.announce;
|
2023-06-14 16:15:24 +00:00
|
|
|
this._announceButton.parentElement.classList.add("unfocused");
|
2021-02-18 14:58:53 +00:00
|
|
|
|
2021-10-18 19:39:23 +00:00
|
|
|
this._extendExpiry.onclick = () => { this.extendExpiry(); };
|
2021-02-28 17:52:24 +00:00
|
|
|
this._extendExpiry.classList.add("unfocused");
|
|
|
|
|
2021-04-12 20:28:36 +00:00
|
|
|
this._disableEnable.onclick = this.enableDisableUsers;
|
2023-06-14 16:15:24 +00:00
|
|
|
this._disableEnable.parentElement.classList.add("unfocused");
|
2021-04-12 20:28:36 +00:00
|
|
|
|
2021-10-18 19:39:23 +00:00
|
|
|
this._enableExpiry.onclick = () => { this.extendExpiry(true); };
|
|
|
|
this._enableExpiryNotify.onchange = () => {
|
|
|
|
if (this._enableExpiryNotify.checked) {
|
|
|
|
this._enableExpiryReason.classList.remove("unfocused");
|
|
|
|
} else {
|
|
|
|
this._enableExpiryReason.classList.add("unfocused");
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-01-05 18:16:23 +00:00
|
|
|
if (!window.usernameEnabled) {
|
|
|
|
this._addUserName.classList.add("unfocused");
|
|
|
|
this._addUserName = this._addUserEmail;
|
|
|
|
}
|
2021-10-13 14:04:22 +00:00
|
|
|
|
|
|
|
if (!window.linkResetEnabled) {
|
|
|
|
this._sendPWR.classList.add("unfocused");
|
|
|
|
} else {
|
|
|
|
this._sendPWR.onclick = this.sendPWR;
|
|
|
|
}
|
2021-01-05 18:16:23 +00:00
|
|
|
/*if (!window.emailEnabled) {
|
|
|
|
this._deleteNotify.parentElement.classList.add("unfocused");
|
|
|
|
this._deleteNotify.checked = false;
|
|
|
|
}*/
|
2021-03-13 14:26:29 +00:00
|
|
|
|
2023-06-14 16:15:24 +00:00
|
|
|
const onchange = () => {
|
2021-03-13 14:26:29 +00:00
|
|
|
const query = this._search.value;
|
|
|
|
if (!query) {
|
2023-06-14 16:15:24 +00:00
|
|
|
// this.setVisibility(this._ordering, true);
|
2021-03-13 14:26:29 +00:00
|
|
|
this._inSearch = false;
|
|
|
|
} else {
|
|
|
|
this._inSearch = true;
|
2023-06-14 16:15:24 +00:00
|
|
|
// this.setVisibility(this.search(query), true);
|
2021-03-13 14:26:29 +00:00
|
|
|
}
|
2023-06-14 16:15:24 +00:00
|
|
|
this.setVisibility(this.search(query), true);
|
2021-03-13 14:26:29 +00:00
|
|
|
this._checkCheckCount();
|
2023-06-14 17:38:12 +00:00
|
|
|
this.showHideSearchOptionsHeader();
|
2021-03-13 14:26:29 +00:00
|
|
|
};
|
2023-06-14 16:15:24 +00:00
|
|
|
this._search.oninput = onchange;
|
2021-05-03 17:35:27 +00:00
|
|
|
|
2023-06-14 16:36:41 +00:00
|
|
|
const clearSearchButton = document.getElementById("accounts-search-clear") as HTMLSpanElement;
|
|
|
|
clearSearchButton.addEventListener("click", () => {
|
|
|
|
this._search.value = "";
|
|
|
|
onchange();
|
|
|
|
});
|
|
|
|
|
2021-05-03 17:35:27 +00:00
|
|
|
this._announceTextarea.onkeyup = this.loadPreview;
|
2021-05-23 13:22:18 +00:00
|
|
|
addDiscord = newDiscordSearch(window.lang.strings("linkDiscord"), window.lang.strings("searchDiscordUser"), window.lang.strings("add"), (user: DiscordUser, id: string) => {
|
|
|
|
_post("/users/discord", {jf_id: id, discord_id: user.id}, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4) {
|
|
|
|
document.dispatchEvent(new CustomEvent("accounts-reload"));
|
|
|
|
if (req.status != 200) {
|
|
|
|
window.notifications.customError("errorConnectDiscord", window.lang.notif("errorFailureCheckLogs"));
|
|
|
|
return
|
|
|
|
}
|
|
|
|
window.notifications.customSuccess("discordConnected", window.lang.notif("accountConnected"));
|
|
|
|
window.modals.discord.close()
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2021-07-10 15:43:27 +00:00
|
|
|
|
|
|
|
this._announceSaveButton.onclick = this.saveAnnouncement;
|
2021-07-16 18:38:28 +00:00
|
|
|
const announceVarUsername = document.getElementById("announce-variables-username") as HTMLSpanElement;
|
|
|
|
announceVarUsername.onclick = () => {
|
|
|
|
insertText(this._announceTextarea, announceVarUsername.children[0].textContent);
|
|
|
|
this.loadPreview();
|
|
|
|
};
|
2023-06-13 10:07:56 +00:00
|
|
|
|
|
|
|
const headerNames: string[] = ["username", "access-jfa", "email", "telegram", "matrix", "discord", "expiry", "last-active"];
|
|
|
|
const headerGetters: string[] = ["name", "accounts_admin", "email", "telegram", "matrix", "discord", "expiry", "last_active"];
|
|
|
|
for (let i = 0; i < headerNames.length; i++) {
|
2023-06-14 12:58:36 +00:00
|
|
|
const header: HTMLTableHeaderCellElement = document.querySelector(".accounts-header-" + headerNames[i]) as HTMLTableHeaderCellElement;
|
2023-06-13 10:07:56 +00:00
|
|
|
if (header !== null) {
|
|
|
|
this._columns[header.className] = new Column(header, Object.getOwnPropertyDescriptor(user.prototype, headerGetters[i]).get);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-06-13 11:02:43 +00:00
|
|
|
// Start off sorting by Name
|
|
|
|
const defaultSort = () => {
|
|
|
|
this._activeSortColumn = document.getElementsByClassName("accounts-header-" + headerNames[0])[0].className;
|
|
|
|
document.dispatchEvent(new CustomEvent("header-click", { detail: this._activeSortColumn }));
|
|
|
|
this._columns[this._activeSortColumn].ascending = true;
|
|
|
|
this._columns[this._activeSortColumn].hideIcon();
|
|
|
|
this._sortingByButton.parentElement.classList.add("hidden");
|
2023-06-14 17:43:46 +00:00
|
|
|
this.showHideSearchOptionsHeader();
|
2023-06-13 11:02:43 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
this._sortingByButton.parentElement.addEventListener("click", defaultSort);
|
|
|
|
|
2023-06-13 10:07:56 +00:00
|
|
|
document.addEventListener("header-click", (event: CustomEvent) => {
|
|
|
|
this._ordering = this._columns[event.detail].sort(this._users);
|
|
|
|
this._activeSortColumn = event.detail;
|
2023-06-13 11:02:43 +00:00
|
|
|
this._sortingByButton.innerHTML = this._columns[event.detail].buttonContent;
|
|
|
|
this._sortingByButton.parentElement.classList.remove("hidden");
|
2023-06-13 10:07:56 +00:00
|
|
|
// console.log("ordering by", event.detail, ": ", this._ordering);
|
|
|
|
if (!(this._inSearch)) {
|
|
|
|
this.setVisibility(this._ordering, true);
|
|
|
|
} else {
|
|
|
|
this.setVisibility(this.search(this._search.value), true);
|
|
|
|
}
|
2023-06-14 17:38:12 +00:00
|
|
|
this.showHideSearchOptionsHeader();
|
2023-06-13 10:07:56 +00:00
|
|
|
});
|
|
|
|
|
2023-06-13 11:02:43 +00:00
|
|
|
defaultSort();
|
2023-06-14 17:38:12 +00:00
|
|
|
this.showHideSearchOptionsHeader();
|
2023-06-14 12:58:36 +00:00
|
|
|
|
|
|
|
const filterList = document.getElementById("accounts-filter-list");
|
|
|
|
|
|
|
|
const fillInFilter = (name: string, value: string, offset?: number) => {
|
|
|
|
this._search.value = name + ":" + value + " " + this._search.value;
|
|
|
|
this._search.focus();
|
|
|
|
let newPos = name.length + 1 + value.length;
|
|
|
|
if (typeof offset !== 'undefined')
|
|
|
|
newPos += offset;
|
|
|
|
this._search.setSelectionRange(newPos, newPos);
|
|
|
|
this._search.oninput(null as any);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Generate filter buttons
|
|
|
|
for (let queryName of Object.keys(this._queries)) {
|
|
|
|
const query = this._queries[queryName];
|
|
|
|
if ("show" in query && !query.show) continue;
|
|
|
|
if ("dependsOnTableHeader" in query && query.dependsOnTableHeader) {
|
|
|
|
const el = document.querySelector("."+query.dependsOnTableHeader);
|
|
|
|
if (el === null) continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
const container = document.createElement("span") as HTMLSpanElement;
|
|
|
|
container.classList.add("button", "button-xl", "~neutral", "@low", "mb-1", "mr-2");
|
|
|
|
container.innerHTML = `<span class="mr-2">${query.name}</span>`;
|
|
|
|
if (query.bool) {
|
|
|
|
const pos = document.createElement("button") as HTMLButtonElement;
|
|
|
|
pos.type = "button";
|
|
|
|
pos.ariaLabel = `Filter by "${query.name}": True`;
|
|
|
|
pos.classList.add("button", "~positive", "ml-2");
|
|
|
|
pos.innerHTML = `<i class="ri-checkbox-circle-fill"></i>`;
|
|
|
|
pos.addEventListener("click", () => fillInFilter(queryName, "true"));
|
|
|
|
const neg = document.createElement("button") as HTMLButtonElement;
|
|
|
|
neg.type = "button";
|
|
|
|
neg.ariaLabel = `Filter by "${query.name}": False`;
|
|
|
|
neg.classList.add("button", "~critical", "ml-2");
|
|
|
|
neg.innerHTML = `<i class="ri-close-circle-fill"></i>`;
|
|
|
|
neg.addEventListener("click", () => fillInFilter(queryName, "false"));
|
|
|
|
|
|
|
|
container.appendChild(pos);
|
|
|
|
container.appendChild(neg);
|
|
|
|
}
|
|
|
|
if (query.string) {
|
|
|
|
const button = document.createElement("button") as HTMLButtonElement;
|
|
|
|
button.type = "button";
|
|
|
|
button.classList.add("button", "~urge", "ml-2");
|
2023-06-14 17:57:30 +00:00
|
|
|
button.innerHTML = `<i class="ri-equal-line mr-2"></i>${window.lang.strings("matchText")}`;
|
2023-06-14 12:58:36 +00:00
|
|
|
|
|
|
|
// Position cursor between quotes
|
|
|
|
button.addEventListener("click", () => fillInFilter(queryName, `""`, -1));
|
|
|
|
|
|
|
|
container.appendChild(button);
|
|
|
|
}
|
|
|
|
if (query.date) {
|
|
|
|
const onDate = document.createElement("button") as HTMLButtonElement;
|
|
|
|
onDate.type = "button";
|
|
|
|
onDate.classList.add("button", "~urge", "ml-2");
|
|
|
|
onDate.innerHTML = `<i class="ri-calendar-check-line mr-2"></i>On Date`;
|
|
|
|
onDate.addEventListener("click", () => fillInFilter(queryName, `"="`, -1));
|
|
|
|
|
|
|
|
const beforeDate = document.createElement("button") as HTMLButtonElement;
|
|
|
|
beforeDate.type = "button";
|
|
|
|
beforeDate.classList.add("button", "~urge", "ml-2");
|
|
|
|
beforeDate.innerHTML = `<i class="ri-calendar-check-line mr-2"></i>Before Date`;
|
|
|
|
beforeDate.addEventListener("click", () => fillInFilter(queryName, `"<"`, -1));
|
|
|
|
|
|
|
|
const afterDate = document.createElement("button") as HTMLButtonElement;
|
|
|
|
afterDate.type = "button";
|
|
|
|
afterDate.classList.add("button", "~urge", "ml-2");
|
|
|
|
afterDate.innerHTML = `<i class="ri-calendar-check-line mr-2"></i>After Date`;
|
|
|
|
afterDate.addEventListener("click", () => fillInFilter(queryName, `">"`, -1));
|
|
|
|
|
|
|
|
container.appendChild(onDate);
|
|
|
|
container.appendChild(beforeDate);
|
|
|
|
container.appendChild(afterDate);
|
|
|
|
}
|
|
|
|
|
|
|
|
filterList.appendChild(container);
|
|
|
|
}
|
2021-01-05 18:16:23 +00:00
|
|
|
}
|
|
|
|
|
2021-07-10 15:43:27 +00:00
|
|
|
reload = () => {
|
|
|
|
_get("/users", null, (req: XMLHttpRequest) => {
|
|
|
|
if (req.readyState == 4 && req.status == 200) {
|
|
|
|
// same method as inviteList.reload()
|
|
|
|
let accountsOnDOM: { [id: string]: boolean } = {};
|
|
|
|
for (let id in this._users) { accountsOnDOM[id] = true; }
|
|
|
|
for (let u of (req.response["users"] as User[])) {
|
|
|
|
if (u.id in this._users) {
|
|
|
|
this._users[u.id].update(u);
|
|
|
|
delete accountsOnDOM[u.id];
|
|
|
|
} else {
|
|
|
|
this.add(u);
|
|
|
|
}
|
2021-01-05 18:16:23 +00:00
|
|
|
}
|
2021-07-10 15:43:27 +00:00
|
|
|
for (let id in accountsOnDOM) {
|
|
|
|
this._users[id].remove();
|
|
|
|
delete this._users[id];
|
|
|
|
}
|
2023-06-13 10:07:56 +00:00
|
|
|
// console.log("reload, so sorting by", this._activeSortColumn);
|
|
|
|
this._ordering = this._columns[this._activeSortColumn].sort(this._users);
|
|
|
|
if (!(this._inSearch)) {
|
|
|
|
this.setVisibility(this._ordering, true);
|
|
|
|
} else {
|
|
|
|
this.setVisibility(this.search(this._search.value), true);
|
|
|
|
}
|
2021-07-10 15:43:27 +00:00
|
|
|
this._checkCheckCount();
|
2021-01-05 18:16:23 +00:00
|
|
|
}
|
2021-07-10 15:43:27 +00:00
|
|
|
});
|
|
|
|
this.loadTemplates();
|
|
|
|
}
|
2021-01-05 18:16:23 +00:00
|
|
|
}
|
2023-06-13 10:07:56 +00:00
|
|
|
|
|
|
|
type GetterReturnType = Boolean | boolean | String | Number | number;
|
|
|
|
type Getter = () => GetterReturnType;
|
|
|
|
|
|
|
|
// When a column is clicked, it broadcasts it's name and ordering to be picked up and stored by accountsList
|
|
|
|
// When list is refreshed, accountList calls method of the specific Column and re-orders accordingly.
|
|
|
|
// Listen for broadcast event from others, check its not us by comparing the header className in the message, then hide the arrow icon
|
|
|
|
class Column {
|
|
|
|
private _header: HTMLTableHeaderCellElement;
|
|
|
|
private _headerContent: string;
|
|
|
|
private _getter: Getter;
|
|
|
|
private _ascending: boolean;
|
|
|
|
private _active: boolean;
|
|
|
|
|
|
|
|
constructor(header: HTMLTableHeaderCellElement, getter: Getter) {
|
|
|
|
this._header = header;
|
|
|
|
this._headerContent = this._header.textContent;
|
|
|
|
this._getter = getter;
|
|
|
|
this._ascending = true;
|
|
|
|
this._active = false;
|
|
|
|
|
|
|
|
this._header.addEventListener("click", () => {
|
|
|
|
// If we are the active sort column, a click means to switch between ascending/descending.
|
|
|
|
if (this._active) {
|
|
|
|
this._ascending = !this._ascending;
|
|
|
|
console.log("was already active, switching direction to", this._ascending ? "ascending" : "descending");
|
|
|
|
} else {
|
|
|
|
console.log("wasn't active keeping direction as", this._ascending ? "ascending" : "descending");
|
|
|
|
}
|
|
|
|
this._active = true;
|
2023-06-13 11:02:43 +00:00
|
|
|
this._header.setAttribute("aria-sort", this._headerContent);
|
2023-06-13 10:07:56 +00:00
|
|
|
this.updateHeader();
|
|
|
|
document.dispatchEvent(new CustomEvent("header-click", { detail: this._header.className }));
|
|
|
|
});
|
|
|
|
document.addEventListener("header-click", (event: CustomEvent) => {
|
|
|
|
if (event.detail != this._header.className) {
|
|
|
|
this._active = false;
|
2023-06-13 11:02:43 +00:00
|
|
|
this._header.removeAttribute("aria-sort");
|
2023-06-13 10:07:56 +00:00
|
|
|
this.hideIcon();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
hideIcon = () => {
|
|
|
|
this._header.textContent = this._headerContent;
|
|
|
|
}
|
|
|
|
|
|
|
|
updateHeader = () => {
|
|
|
|
this._header.innerHTML = `
|
2023-06-13 11:02:43 +00:00
|
|
|
<span class="">${this._headerContent}</span>
|
|
|
|
<i class="ri-arrow-${this._ascending? "up" : "down"}-s-line" aria-hidden="true"></i>
|
2023-06-13 10:07:56 +00:00
|
|
|
`;
|
|
|
|
}
|
|
|
|
|
2023-06-13 11:02:43 +00:00
|
|
|
// Returns the inner HTML to show in the "Sorting By" button.
|
|
|
|
get buttonContent() {
|
|
|
|
return `<span class="font-bold">` + window.lang.strings("sortingBy") + ": " + `</span>` + this._headerContent;
|
|
|
|
}
|
|
|
|
|
|
|
|
get ascending() { return this._ascending; }
|
|
|
|
set ascending(v: boolean) {
|
|
|
|
this._ascending = v;
|
|
|
|
if (!this._active) return;
|
|
|
|
this.updateHeader();
|
|
|
|
this._header.setAttribute("aria-sort", this._headerContent);
|
|
|
|
document.dispatchEvent(new CustomEvent("header-click", { detail: this._header.className }));
|
|
|
|
}
|
2023-06-13 10:07:56 +00:00
|
|
|
|
|
|
|
// Sorts the user list. previouslyActive is whether this column was previously sorted by, indicating that the direction should change.
|
|
|
|
sort = (users: { [id: string]: user }): string[] => {
|
|
|
|
let userIDs = Object.keys(users);
|
|
|
|
userIDs.sort((a: string, b: string): number => {
|
|
|
|
const av: GetterReturnType = this._getter.call(users[a]);
|
|
|
|
const bv: GetterReturnType = this._getter.call(users[b]);
|
|
|
|
if (av < bv) return this._ascending ? -1 : 1;
|
|
|
|
if (av > bv) return this._ascending ? 1 : -1;
|
|
|
|
return 0;
|
|
|
|
});
|
|
|
|
|
|
|
|
return userIDs;
|
|
|
|
}
|
|
|
|
}
|