Dedup VMs across real Proxmox cluster nodes (was listing each VM once per entered host)

This commit is contained in:
2026-07-06 20:02:57 +02:00
parent 7fbac7c18a
commit 0968468978
3 changed files with 35 additions and 2 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{ {
"name": "proxmox-spice-client", "name": "proxmox-spice-client",
"version": "1.0.4", "version": "1.0.5",
"description": "VDI SPICE Client f\u00fcr Proxmox", "description": "VDI SPICE Client f\u00fcr Proxmox",
"main": "src/main.js", "main": "src/main.js",
"scripts": { "scripts": {
+24 -1
View File
@@ -153,7 +153,30 @@ ipcMain.handle('proxmox:login', async (_e, { host, username, password }) => {
return { success: false, error: attempts[0].error }; return { success: false, error: attempts[0].error };
} }
clients = succeeded; // Several hostnames can point at nodes of the SAME real Proxmox cluster
// (e.g. Stefan's setup) — in that case /cluster/resources returns the
// identical cluster-wide VM list from every one of them, so keeping all
// logged-in clients would just show each VM 3x. Detect real cluster
// membership and keep only one representative client per cluster.
const seenGroups = new Set();
const dedupedClients = [];
await Promise.all(
succeeded.map(async (entry) => {
try {
entry.clusterId = await entry.client.getClusterId();
} catch {
entry.clusterId = null;
}
})
);
for (const entry of succeeded) {
const group = entry.clusterId || `standalone:${entry.host}`;
if (seenGroups.has(group)) continue;
seenGroups.add(group);
dedupedClients.push(entry);
}
clients = dedupedClients;
createWindow('vms.html', 680, 520, true); createWindow('vms.html', 680, 520, true);
if (failed.length > 0) { if (failed.length > 0) {
+10
View File
@@ -121,6 +121,16 @@ class ProxmoxClient {
return vga.startsWith('qxl') || vga === 'virtio-vga-gl'; return vga.startsWith('qxl') || vga === 'virtio-vga-gl';
} }
// Real Proxmox clusters: every member node returns the identical
// cluster-wide resource list, so logging into several nodes of the same
// cluster would just duplicate every VM. Returns the cluster's name, or
// null if this host isn't part of a cluster (standalone).
async getClusterId() {
const status = await this.request('GET', '/cluster/status');
const cluster = (status || []).find((s) => s.type === 'cluster');
return cluster ? cluster.name || cluster.id || null : null;
}
async getSpiceTicket(node, vmid) { async getSpiceTicket(node, vmid) {
// proxy = address clients should connect to for SPICE traffic // proxy = address clients should connect to for SPICE traffic
const proxy = this.host.split(':')[0]; const proxy = this.host.split(':')[0];