mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
71 lines
2.2 KiB
TypeScript
71 lines
2.2 KiB
TypeScript
/**
|
|
* Copyright (c) OpenLens Authors. All rights reserved.
|
|
* Licensed under MIT License. See LICENSE in root directory for more information.
|
|
*/
|
|
|
|
import { randomBytes } from "crypto";
|
|
import { SHA256 } from "crypto-js";
|
|
import fse from "fs-extra";
|
|
import { action, makeObservable, observable } from "mobx";
|
|
import path from "path";
|
|
import { BaseStore } from "../../../../common/base-store";
|
|
import type { LensExtensionId } from "../../../lens-extension";
|
|
import { toJS } from "../../../../common/utils";
|
|
|
|
interface FSProvisionModel {
|
|
extensions: Record<string, string>; // extension names to paths
|
|
}
|
|
|
|
interface Dependencies {
|
|
directoryForExtensionData: string;
|
|
}
|
|
|
|
export class FileSystemProvisionerStore extends BaseStore<FSProvisionModel> {
|
|
readonly displayName = "FilesystemProvisionerStore";
|
|
registeredExtensions = observable.map<LensExtensionId, string>();
|
|
|
|
constructor(private dependencies: Dependencies) {
|
|
super({
|
|
configName: "lens-filesystem-provisioner-store",
|
|
accessPropertiesByDotNotation: false, // To make dots safe in cluster context names
|
|
});
|
|
|
|
makeObservable(this);
|
|
this.load();
|
|
}
|
|
|
|
/**
|
|
* This function retrieves the saved path to the folder which the extension
|
|
* can saves files to. If the folder is not present then it is created.
|
|
* @param extensionName the name of the extension requesting the path
|
|
* @returns path to the folder that the extension can safely write files to.
|
|
*/
|
|
async requestDirectory(extensionName: string): Promise<string> {
|
|
if (!this.registeredExtensions.has(extensionName)) {
|
|
const salt = randomBytes(32).toString("hex");
|
|
const hashedName = SHA256(`${extensionName}/${salt}`).toString();
|
|
|
|
const dirPath = path.resolve(this.dependencies.directoryForExtensionData, hashedName);
|
|
|
|
this.registeredExtensions.set(extensionName, dirPath);
|
|
}
|
|
|
|
const dirPath = this.registeredExtensions.get(extensionName);
|
|
|
|
await fse.ensureDir(dirPath);
|
|
|
|
return dirPath;
|
|
}
|
|
|
|
@action
|
|
protected fromStore({ extensions }: FSProvisionModel = { extensions: {}}): void {
|
|
this.registeredExtensions.merge(extensions);
|
|
}
|
|
|
|
toJSON(): FSProvisionModel {
|
|
return toJS({
|
|
extensions: Object.fromEntries(this.registeredExtensions),
|
|
});
|
|
}
|
|
}
|