mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
186 lines
6.3 KiB
TypeScript
186 lines
6.3 KiB
TypeScript
/**
|
|
* Copyright (c) 2021 OpenLens Authors
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
* this software and associated documentation files (the "Software"), to deal in
|
|
* the Software without restriction, including without limitation the rights to
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
* the Software, and to permit persons to whom the Software is furnished to do so,
|
|
* subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
* copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
import "../common/cluster-ipc";
|
|
import type http from "http";
|
|
import { ipcMain } from "electron";
|
|
import { action, autorun, reaction, toJS } from "mobx";
|
|
import { ClusterStore, getClusterIdFromHost } from "../common/cluster-store";
|
|
import type { Cluster } from "./cluster";
|
|
import logger from "./logger";
|
|
import { apiKubePrefix } from "../common/vars";
|
|
import { Singleton } from "../common/utils";
|
|
import { CatalogEntityRegistry } from "../common/catalog";
|
|
import { KubernetesCluster } from "../common/catalog-entities/kubernetes-cluster";
|
|
|
|
export class ClusterManager extends Singleton {
|
|
constructor() {
|
|
super();
|
|
|
|
reaction(() => toJS(ClusterStore.getInstance().clustersList, { recurseEverything: true }), () => {
|
|
this.updateCatalog(ClusterStore.getInstance().clustersList);
|
|
}, { fireImmediately: true });
|
|
|
|
reaction(() => CatalogEntityRegistry.getInstance().getItemsForApiKind<KubernetesCluster>("entity.k8slens.dev/v1alpha1", "KubernetesCluster"), (entities) => {
|
|
this.syncClustersFromCatalog(entities);
|
|
});
|
|
|
|
|
|
// auto-stop removed clusters
|
|
autorun(() => {
|
|
const removedClusters = Array.from(ClusterStore.getInstance().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.getInstance().removedClusters.clear();
|
|
}
|
|
}, {
|
|
delay: 250
|
|
});
|
|
|
|
ipcMain.on("network:offline", () => { this.onNetworkOffline(); });
|
|
ipcMain.on("network:online", () => { this.onNetworkOnline(); });
|
|
}
|
|
|
|
@action protected updateCatalog(clusters: Cluster[]) {
|
|
const registry = CatalogEntityRegistry.getInstance();
|
|
|
|
for (const cluster of clusters) {
|
|
const index = registry.items.findIndex((entity) => entity.metadata.uid === cluster.id);
|
|
|
|
if (index !== -1) {
|
|
const entity = registry.items[index];
|
|
|
|
entity.status.phase = cluster.disconnected ? "disconnected" : "connected";
|
|
entity.status.active = !cluster.disconnected;
|
|
|
|
if (cluster.preferences?.clusterName) {
|
|
entity.metadata.name = cluster.preferences.clusterName;
|
|
}
|
|
registry.items.splice(index, 1, entity);
|
|
}
|
|
}
|
|
}
|
|
|
|
@action syncClustersFromCatalog(entities: KubernetesCluster[]) {
|
|
for (const entity of entities) {
|
|
const cluster = ClusterStore.getInstance().getById(entity.metadata.uid);
|
|
|
|
if (!cluster) {
|
|
ClusterStore.getInstance().addCluster({
|
|
id: entity.metadata.uid,
|
|
preferences: {
|
|
clusterName: entity.metadata.name
|
|
},
|
|
kubeConfigPath: entity.spec.kubeconfigPath,
|
|
contextName: entity.spec.kubeconfigContext
|
|
});
|
|
} else {
|
|
cluster.kubeConfigPath = entity.spec.kubeconfigPath;
|
|
cluster.contextName = entity.spec.kubeconfigContext;
|
|
|
|
entity.status = {
|
|
phase: cluster.disconnected ? "disconnected" : "connected",
|
|
active: !cluster.disconnected
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|
|
protected onNetworkOffline() {
|
|
logger.info("[CLUSTER-MANAGER]: network is offline");
|
|
ClusterStore.getInstance().clustersList.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.getInstance().clustersList.forEach((cluster) => {
|
|
if (!cluster.disconnected) {
|
|
cluster.refreshConnectionStatus().catch((e) => e);
|
|
}
|
|
});
|
|
}
|
|
|
|
stop() {
|
|
ClusterStore.getInstance().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.getInstance().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.getInstance().getById(req.headers["x-cluster-id"].toString());
|
|
} else {
|
|
const clusterId = getClusterIdFromHost(req.headers.host);
|
|
|
|
cluster = ClusterStore.getInstance().getById(clusterId);
|
|
}
|
|
|
|
return cluster;
|
|
}
|
|
}
|
|
|
|
export function catalogEntityFromCluster(cluster: Cluster) {
|
|
return new KubernetesCluster(toJS({
|
|
apiVersion: "entity.k8slens.dev/v1alpha1",
|
|
kind: "KubernetesCluster",
|
|
metadata: {
|
|
uid: cluster.id,
|
|
name: cluster.name,
|
|
source: "local",
|
|
labels: {
|
|
distro: cluster.distribution,
|
|
}
|
|
},
|
|
spec: {
|
|
kubeconfigPath: cluster.kubeConfigPath,
|
|
kubeconfigContext: cluster.contextName
|
|
},
|
|
status: {
|
|
phase: cluster.disconnected ? "disconnected" : "connected",
|
|
reason: "",
|
|
message: "",
|
|
active: !cluster.disconnected
|
|
}
|
|
}));
|
|
}
|