diff --git a/src/common/user-store.ts b/src/common/user-store.ts index cf271a011d..480d52303b 100644 --- a/src/common/user-store.ts +++ b/src/common/user-store.ts @@ -10,6 +10,7 @@ import { kubeConfigDefaultPath, loadConfig } from "./kube-helpers"; import { appEventBus } from "./event-bus"; import logger from "../main/logger"; import path from "path"; +import { fileNameMigration } from "../migrations/user-store"; export interface UserStoreModel { kubeConfigPath: string; @@ -36,7 +37,7 @@ export class UserStore extends BaseStore { private constructor() { super({ - // configName: "lens-user-store", // todo: migrate from default "config.json" + configName: "lens-user-store", migrations, }); @@ -80,6 +81,12 @@ export class UserStore extends BaseStore { } } + async load(): Promise { + await fileNameMigration(); + + return super.load(); + } + get isNewVersion() { return semver.gt(getAppVersion(), this.lastSeenAppVersion); } diff --git a/src/migrations/user-store/file-name-migration.ts b/src/migrations/user-store/file-name-migration.ts new file mode 100644 index 0000000000..dd2f46d0da --- /dev/null +++ b/src/migrations/user-store/file-name-migration.ts @@ -0,0 +1,17 @@ +import fse from "fs-extra"; +import { app, remote } from "electron"; +import path from "path"; + +export async function fileNameMigration() { + const userDataPath = (app || remote.app).getPath("userData"); + const configJsonPath = path.join(userDataPath, "config.json"); + const lensUserStoreJsonPath = path.join(userDataPath, "lens-user-store.json"); + const [configJsonExists, lensUserStoreJsonExists] = await Promise.all([ + fse.pathExists(configJsonPath), + fse.pathExists(lensUserStoreJsonPath), + ]); + + if (configJsonExists && !lensUserStoreJsonExists) { + await fse.move(configJsonPath, lensUserStoreJsonPath); + } +} \ No newline at end of file diff --git a/src/migrations/user-store/index.ts b/src/migrations/user-store/index.ts index e1e7b8ffc9..5f5085b475 100644 --- a/src/migrations/user-store/index.ts +++ b/src/migrations/user-store/index.ts @@ -1,6 +1,11 @@ // User store migrations import version210Beta4 from "./2.1.0-beta.4"; +import { fileNameMigration } from "./file-name-migration"; + +export { + fileNameMigration +}; export default { ...version210Beta4,