mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
* fix: getAllowedResources for all namespaces using SelfSubjectRulesReview Signed-off-by: Andreas Hippler <andreas.hippler@goto.com> * fix: refresh accessibility every 15 min Signed-off-by: Andreas Hippler <andreas.hippler@goto.com> * chore: remove unused clusterRefreshHandler Signed-off-by: Andreas Hippler <andreas.hippler@goto.com> * fix: resolve SelfSubjectRulesReview globs Signed-off-by: Andreas Hippler <andreas.hippler@goto.com> Signed-off-by: Andreas Hippler <andreas.hippler@goto.com> Co-authored-by: Andreas Hippler <andreas.hippler@goto.com>
60 lines
1.9 KiB
TypeScript
60 lines
1.9 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import type { KubeConfig, V1ResourceAttributes } from "@kubernetes/client-node";
|
|
import { AuthorizationV1Api } from "@kubernetes/client-node";
|
|
import { getInjectable } from "@ogre-tools/injectable";
|
|
import type { Logger } from "../logger";
|
|
import loggerInjectable from "../logger.injectable";
|
|
|
|
/**
|
|
* Requests the permissions for actions on the kube cluster
|
|
* @param resourceAttributes The descriptor of the action that is desired to be known if it is allowed
|
|
* @returns `true` if the actions described are allowed
|
|
*/
|
|
export type CanI = (resourceAttributes: V1ResourceAttributes) => Promise<boolean>;
|
|
|
|
/**
|
|
* @param proxyConfig This config's `currentContext` field must be set, and will be used as the target cluster
|
|
*/
|
|
export type AuthorizationReview = (proxyConfig: KubeConfig) => CanI;
|
|
|
|
interface Dependencies {
|
|
logger: Logger;
|
|
}
|
|
|
|
const authorizationReview = ({ logger }: Dependencies): AuthorizationReview => {
|
|
return (proxyConfig) => {
|
|
const api = proxyConfig.makeApiClient(AuthorizationV1Api);
|
|
|
|
return async (resourceAttributes: V1ResourceAttributes): Promise<boolean> => {
|
|
try {
|
|
const { body } = await api.createSelfSubjectAccessReview({
|
|
apiVersion: "authorization.k8s.io/v1",
|
|
kind: "SelfSubjectAccessReview",
|
|
spec: { resourceAttributes },
|
|
});
|
|
|
|
return body.status?.allowed ?? false;
|
|
} catch (error) {
|
|
logger.error(`[AUTHORIZATION-REVIEW]: failed to create access review: ${error}`, { resourceAttributes });
|
|
|
|
return false;
|
|
}
|
|
};
|
|
};
|
|
};
|
|
|
|
const authorizationReviewInjectable = getInjectable({
|
|
id: "authorization-review",
|
|
instantiate: (di) => {
|
|
const logger = di.inject(loggerInjectable);
|
|
|
|
return authorizationReview({ logger });
|
|
},
|
|
});
|
|
|
|
export default authorizationReviewInjectable;
|