2023-08-30 19:57:20 +02:00
|
|
|
// eslint-disable-next-line import/no-restricted-paths -- Needed to print log messages
|
|
|
|
import { LogService } from "../platform/abstractions/log.service";
|
|
|
|
// eslint-disable-next-line import/no-restricted-paths -- Needed to interface with storage locations
|
|
|
|
import { AbstractStorageService } from "../platform/abstractions/storage.service";
|
|
|
|
|
|
|
|
import { MigrationBuilder } from "./migration-builder";
|
|
|
|
import { MigrationHelper } from "./migration-helper";
|
|
|
|
import { FixPremiumMigrator } from "./migrations/3-fix-premium";
|
|
|
|
import { RemoveEverBeenUnlockedMigrator } from "./migrations/4-remove-ever-been-unlocked";
|
|
|
|
import { AddKeyTypeToOrgKeysMigrator } from "./migrations/5-add-key-type-to-org-keys";
|
|
|
|
import { RemoveLegacyEtmKeyMigrator } from "./migrations/6-remove-legacy-etm-key";
|
|
|
|
import { MoveBiometricAutoPromptToAccount } from "./migrations/7-move-biometric-auto-prompt-to-account";
|
|
|
|
import { MoveStateVersionMigrator } from "./migrations/8-move-state-version";
|
2023-11-17 15:20:42 +01:00
|
|
|
import { MoveBrowserSettingsToGlobal } from "./migrations/9-move-browser-settings-to-global";
|
2023-08-30 19:57:20 +02:00
|
|
|
import { MinVersionMigrator } from "./migrations/min-version";
|
|
|
|
|
|
|
|
export const MIN_VERSION = 2;
|
2023-11-17 15:20:42 +01:00
|
|
|
export const CURRENT_VERSION = 9;
|
2023-08-30 19:57:20 +02:00
|
|
|
export type MinVersion = typeof MIN_VERSION;
|
|
|
|
|
|
|
|
export async function migrate(
|
|
|
|
storageService: AbstractStorageService,
|
|
|
|
logService: LogService
|
|
|
|
): Promise<void> {
|
|
|
|
const migrationHelper = new MigrationHelper(
|
|
|
|
await currentVersion(storageService, logService),
|
|
|
|
storageService,
|
|
|
|
logService
|
|
|
|
);
|
|
|
|
if (migrationHelper.currentVersion < 0) {
|
|
|
|
// Cannot determine state, assuming empty so we don't repeatedly apply a migration.
|
|
|
|
await storageService.save("stateVersion", CURRENT_VERSION);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
MigrationBuilder.create()
|
|
|
|
.with(MinVersionMigrator)
|
|
|
|
.with(FixPremiumMigrator, 2, 3)
|
|
|
|
.with(RemoveEverBeenUnlockedMigrator, 3, 4)
|
|
|
|
.with(AddKeyTypeToOrgKeysMigrator, 4, 5)
|
|
|
|
.with(RemoveLegacyEtmKeyMigrator, 5, 6)
|
|
|
|
.with(MoveBiometricAutoPromptToAccount, 6, 7)
|
2023-11-17 15:20:42 +01:00
|
|
|
.with(MoveStateVersionMigrator, 7, 8)
|
|
|
|
.with(MoveBrowserSettingsToGlobal, 8, CURRENT_VERSION)
|
2023-08-30 19:57:20 +02:00
|
|
|
.migrate(migrationHelper);
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function currentVersion(
|
|
|
|
storageService: AbstractStorageService,
|
|
|
|
logService: LogService
|
|
|
|
) {
|
|
|
|
let state = await storageService.get<number>("stateVersion");
|
|
|
|
if (state == null) {
|
|
|
|
// Pre v8
|
|
|
|
state = (await storageService.get<{ stateVersion: number }>("global"))?.stateVersion;
|
|
|
|
}
|
|
|
|
if (state == null) {
|
|
|
|
logService.info("No state version found, assuming empty state.");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
logService.info(`State version: ${state}`);
|
|
|
|
return state;
|
|
|
|
}
|