feat: sync app-created peers into clients table

This commit is contained in:
andrey271192
2026-06-21 19:19:49 +03:00
parent fd66b0a024
commit dfeabe02d7
7 changed files with 102 additions and 3 deletions

View File

@@ -14,6 +14,7 @@ const rowsEl = document.querySelector("#rows");
const statusEl = document.querySelector("#status");
const peerCountEl = document.querySelector("#peer-count");
const wgShowEl = document.querySelector("#wg-show");
const syncPeersBtn = document.querySelector("#sync-peers-btn");
const warpPanel = document.querySelector("#warp-panel");
const warpStatusLine = document.querySelector("#warp-status-line");
@@ -663,6 +664,10 @@ if (importForm) {
importForm.addEventListener("submit", (ev) => void importClientConfig(ev));
}
if (syncPeersBtn) {
syncPeersBtn.addEventListener("click", () => void syncPeersFromConfig());
}
const instanceForm = document.querySelector("#instance-form");
if (instanceForm) {
instanceForm.addEventListener("submit", (ev) => void createInstance(ev));
@@ -1609,6 +1614,29 @@ async function mutate(path, clientId) {
}
}
async function syncPeersFromConfig() {
if (syncPeersBtn) syncPeersBtn.disabled = true;
try {
setStatus("Подтягиваю клиентов из awg0.conf…", false);
const data = await api("/api/clients/sync-peers", {
method: "POST",
body: JSON.stringify(withCurrentProfile({})),
});
const added = Number(data.added || 0);
setStatus(
added
? `Подтянуто клиентов: ${added}.`
: "Новых клиентов в awg0.conf нет — clientsTable уже совпадает.",
false,
);
await loadClients();
} catch (e) {
setStatus(String(e.message || e), true);
} finally {
if (syncPeersBtn) syncPeersBtn.disabled = false;
}
}
async function confirmDelete(name, clientId) {
const ok = confirm(
`Удалить клиента «${name}»? Конфиг из приложения Amnezia перестанет совпадать с сервером.`
@@ -1627,7 +1655,15 @@ async function loadClients() {
if (uiHidden.users) {
peerCountEl.textContent = "";
wgShowEl.textContent = "";
if (syncPeersBtn) syncPeersBtn.hidden = true;
} else {
if (syncPeersBtn) {
syncPeersBtn.hidden = false;
syncPeersBtn.disabled = editionState.readOnlyClients;
syncPeersBtn.title = editionState.readOnlyClients
? "Доступно в PRO"
: "Создать недостающие строки clientsTable из активных [Peer] текущего инстанса";
}
peerCountEl.textContent = `${pref}${data.clients.length} в таблице · ${data.peerCount} peer`;
wgShowEl.textContent = data.wgShow || "";
}

View File

@@ -323,6 +323,10 @@
</span>
</summary>
<div class="panel-fold-body">
<div class="users-tools">
<button id="sync-peers-btn" class="btn small ghost" type="button">Подтянуть из awg0.conf</button>
<span class="muted users-tools-hint">Для клиентов, созданных в приложении Amnezia</span>
</div>
<div class="table-wrap">
<table class="clients-table">
<thead>

View File

@@ -625,6 +625,18 @@ h1 {
font-size: 0.88rem;
}
.users-tools {
display: flex;
align-items: center;
gap: 0.65rem;
flex-wrap: wrap;
margin: 0 0 0.75rem;
}
.users-tools-hint {
font-size: 0.82rem;
}
table.clients-table {
table-layout: fixed;
}