mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* Prevent initializing clusters multiple times Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Do not expose intializing to cluster state Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com> * Convert initializing to observable and ensure it is set to false after init Signed-off-by: Lauri Nevala <lauri.nevala@gmail.com>
93 lines
2.8 KiB
TypeScript
93 lines
2.8 KiB
TypeScript
import "../common/cluster-ipc";
|
|
import type http from "http";
|
|
import { ipcMain } from "electron";
|
|
import { autorun } from "mobx";
|
|
import { clusterStore, getClusterIdFromHost } from "../common/cluster-store";
|
|
import { Cluster } from "./cluster";
|
|
import logger from "./logger";
|
|
import { apiKubePrefix } from "../common/vars";
|
|
import { Singleton } from "../common/utils";
|
|
|
|
export class ClusterManager extends Singleton {
|
|
constructor(public readonly port: number) {
|
|
super();
|
|
// auto-init clusters
|
|
autorun(() => {
|
|
clusterStore.enabledClustersList.forEach(cluster => {
|
|
if (!cluster.initialized && !cluster.initializing) {
|
|
logger.info(`[CLUSTER-MANAGER]: init cluster`, cluster.getMeta());
|
|
cluster.init(port);
|
|
}
|
|
});
|
|
});
|
|
|
|
// auto-stop removed clusters
|
|
autorun(() => {
|
|
const removedClusters = Array.from(clusterStore.removedClusters.values());
|
|
|
|
if (removedClusters.length > 0) {
|
|
const meta = removedClusters.map(cluster => cluster.getMeta());
|
|
|
|
logger.info(`[CLUSTER-MANAGER]: removing clusters`, meta);
|
|
removedClusters.forEach(cluster => cluster.disconnect());
|
|
clusterStore.removedClusters.clear();
|
|
}
|
|
}, {
|
|
delay: 250
|
|
});
|
|
|
|
ipcMain.on("network:offline", () => { this.onNetworkOffline(); });
|
|
ipcMain.on("network:online", () => { this.onNetworkOnline(); });
|
|
}
|
|
|
|
protected onNetworkOffline() {
|
|
logger.info("[CLUSTER-MANAGER]: network is offline");
|
|
clusterStore.enabledClustersList.forEach((cluster) => {
|
|
if (!cluster.disconnected) {
|
|
cluster.online = false;
|
|
cluster.accessible = false;
|
|
cluster.refreshConnectionStatus().catch((e) => e);
|
|
}
|
|
});
|
|
}
|
|
|
|
protected onNetworkOnline() {
|
|
logger.info("[CLUSTER-MANAGER]: network is online");
|
|
clusterStore.enabledClustersList.forEach((cluster) => {
|
|
if (!cluster.disconnected) {
|
|
cluster.refreshConnectionStatus().catch((e) => e);
|
|
}
|
|
});
|
|
}
|
|
|
|
stop() {
|
|
clusterStore.clusters.forEach((cluster: Cluster) => {
|
|
cluster.disconnect();
|
|
});
|
|
}
|
|
|
|
getClusterForRequest(req: http.IncomingMessage): Cluster {
|
|
let cluster: Cluster = null;
|
|
|
|
// lens-server is connecting to 127.0.0.1:<port>/<uid>
|
|
if (req.headers.host.startsWith("127.0.0.1")) {
|
|
const clusterId = req.url.split("/")[1];
|
|
|
|
cluster = clusterStore.getById(clusterId);
|
|
|
|
if (cluster) {
|
|
// we need to swap path prefix so that request is proxied to kube api
|
|
req.url = req.url.replace(`/${clusterId}`, apiKubePrefix);
|
|
}
|
|
} else if (req.headers["x-cluster-id"]) {
|
|
cluster = clusterStore.getById(req.headers["x-cluster-id"].toString());
|
|
} else {
|
|
const clusterId = getClusterIdFromHost(req.headers.host);
|
|
|
|
cluster = clusterStore.getById(clusterId);
|
|
}
|
|
|
|
return cluster;
|
|
}
|
|
}
|