mirror of
https://github.com/bitwarden/browser
synced 2025-12-21 18:53:29 +00:00
* Migrate ever had user key * Add DI for state providers * Add state for everHadUserKey * Use ever had user key migrator Co-authored-by: SmithThe4th <gsmithwalter@gmail.com> Co-authored-by: Carlos Gonçalves <LRNcardozoWDF@users.noreply.github.com> Co-authored-by: Jason Ng <Jcory.ng@gmail.com> * Fix test from merge * Prefer stored observables to getters getters create a new observable every time they're called, whereas one set in the constructor is created only once. * Fix another merge issue * Fix cli background build --------- Co-authored-by: SmithThe4th <gsmithwalter@gmail.com> Co-authored-by: Carlos Gonçalves <LRNcardozoWDF@users.noreply.github.com> Co-authored-by: Jason Ng <Jcory.ng@gmail.com>
47 lines
1.6 KiB
TypeScript
47 lines
1.6 KiB
TypeScript
import { KeyDefinitionLike, MigrationHelper } from "../migration-helper";
|
|
import { Migrator } from "../migrator";
|
|
|
|
type ExpectedAccountType = {
|
|
profile?: {
|
|
everHadUserKey?: boolean;
|
|
};
|
|
};
|
|
|
|
const USER_EVER_HAD_USER_KEY: KeyDefinitionLike = {
|
|
key: "everHadUserKey",
|
|
stateDefinition: {
|
|
name: "crypto",
|
|
},
|
|
};
|
|
|
|
export class EverHadUserKeyMigrator extends Migrator<9, 10> {
|
|
async migrate(helper: MigrationHelper): Promise<void> {
|
|
const accounts = await helper.getAccounts<ExpectedAccountType>();
|
|
async function migrateAccount(userId: string, account: ExpectedAccountType): Promise<void> {
|
|
const value = account?.profile?.everHadUserKey;
|
|
await helper.setToUser(userId, USER_EVER_HAD_USER_KEY, value ?? false);
|
|
if (value != null) {
|
|
delete account.profile.everHadUserKey;
|
|
}
|
|
await helper.set(userId, account);
|
|
}
|
|
|
|
await Promise.all([...accounts.map(({ userId, account }) => migrateAccount(userId, account))]);
|
|
}
|
|
async rollback(helper: MigrationHelper): Promise<void> {
|
|
const accounts = await helper.getAccounts<ExpectedAccountType>();
|
|
async function rollbackAccount(userId: string, account: ExpectedAccountType): Promise<void> {
|
|
const value = await helper.getFromUser(userId, USER_EVER_HAD_USER_KEY);
|
|
if (account) {
|
|
account.profile = Object.assign(account.profile ?? {}, {
|
|
everHadUserKey: value,
|
|
});
|
|
await helper.set(userId, account);
|
|
}
|
|
await helper.setToUser(userId, USER_EVER_HAD_USER_KEY, null);
|
|
}
|
|
|
|
await Promise.all([...accounts.map(({ userId, account }) => rollbackAccount(userId, account))]);
|
|
}
|
|
}
|