mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 22:03:36 +00:00
* Use account service to track accounts and active account * Remove state service active account Observables. * Add email verified to account service * Do not store account info on logged out accounts * Add account activity tracking to account service * Use last account activity from account service * migrate or replicate account service data * Add `AccountActivityService` that handles storing account last active data * Move active and next active user to account service * Remove authenticated accounts from state object * Fold account activity into account service * Fix builds * Fix desktop app switch * Fix logging out non active user * Expand helper to handle new authenticated accounts location * Prefer view observable to tons of async pipes * Fix `npm run test:types` * Correct user activity sorting test * Be more precise about log out messaging * Fix dev compare errors All stored values are serializable, the next step wasn't necessary and was erroring on some types that lack `toString`. * If the account in unlocked on load of lock component, navigate away from lock screen * Handle no users case for auth service statuses * Specify account to switch to * Filter active account out of inactive accounts * Prefer constructor init * Improve comparator * Use helper methods internally * Fixup component tests * Clarify name * Ensure accounts object has only valid userIds * Capitalize const values * Prefer descriptive, single-responsibility guards * Update libs/common/src/state-migrations/migrate.ts Co-authored-by: Justin Baur <19896123+justindbaur@users.noreply.github.com> * Fix merge * Add user Id validation activity for undefined was being set, which was resulting in requests for the auth status of `"undefined"` (string) userId, due to key enumeration. These changes stop that at both locations, as well as account add for good measure. --------- Co-authored-by: Justin Baur <19896123+justindbaur@users.noreply.github.com>
154 lines
6.2 KiB
TypeScript
154 lines
6.2 KiB
TypeScript
import { StateDefinition } from "./state-definition";
|
|
|
|
/**
|
|
* `StateDefinition`s comes with some rules, to facilitate a quick review from
|
|
* platform of this file, ensure you follow these rules, the ones marked with (tested)
|
|
* have unit tests that you can run locally.
|
|
*
|
|
* 1. (tested) Names should not be null or undefined
|
|
* 2. (tested) Name and storage location should be unique
|
|
* 3. (tested) Name and storage location can't differ from another export by only casing
|
|
* 4. (tested) Name should be longer than 3 characters. It should be descriptive, but brief.
|
|
* 5. (tested) Name should not contain spaces or underscores
|
|
* 6. Name should be human readable
|
|
* 7. Name should be in camelCase format (unit tests ensure the first character is lowercase)
|
|
* 8. Teams should only use state definitions they have created
|
|
* 9. StateDefinitions should only be used for keys relating to the state name they chose
|
|
*
|
|
*/
|
|
|
|
// Admin Console
|
|
|
|
export const ORGANIZATIONS_DISK = new StateDefinition("organizations", "disk");
|
|
export const POLICIES_DISK = new StateDefinition("policies", "disk");
|
|
export const PROVIDERS_DISK = new StateDefinition("providers", "disk");
|
|
export const ORGANIZATION_MANAGEMENT_PREFERENCES_DISK = new StateDefinition(
|
|
"organizationManagementPreferences",
|
|
"disk",
|
|
{
|
|
web: "disk-local",
|
|
},
|
|
);
|
|
|
|
// Billing
|
|
export const BILLING_DISK = new StateDefinition("billing", "disk");
|
|
|
|
// Auth
|
|
|
|
export const KDF_CONFIG_DISK = new StateDefinition("kdfConfig", "disk");
|
|
export const KEY_CONNECTOR_DISK = new StateDefinition("keyConnector", "disk");
|
|
export const ACCOUNT_MEMORY = new StateDefinition("account", "memory");
|
|
export const ACCOUNT_DISK = new StateDefinition("account", "disk");
|
|
export const MASTER_PASSWORD_MEMORY = new StateDefinition("masterPassword", "memory");
|
|
export const MASTER_PASSWORD_DISK = new StateDefinition("masterPassword", "disk");
|
|
export const TWO_FACTOR_MEMORY = new StateDefinition("twoFactor", "memory");
|
|
export const AVATAR_DISK = new StateDefinition("avatar", "disk", { web: "disk-local" });
|
|
export const ROUTER_DISK = new StateDefinition("router", "disk");
|
|
export const LOGIN_EMAIL_DISK = new StateDefinition("loginEmail", "disk", {
|
|
web: "disk-local",
|
|
});
|
|
export const LOGIN_STRATEGY_MEMORY = new StateDefinition("loginStrategy", "memory");
|
|
export const AUTH_REQUEST_DISK_LOCAL = new StateDefinition("authRequestLocal", "disk", {
|
|
web: "disk-local",
|
|
});
|
|
export const SSO_DISK = new StateDefinition("ssoLogin", "disk");
|
|
export const TOKEN_DISK = new StateDefinition("token", "disk");
|
|
export const TOKEN_DISK_LOCAL = new StateDefinition("tokenDiskLocal", "disk", {
|
|
web: "disk-local",
|
|
});
|
|
export const TOKEN_MEMORY = new StateDefinition("token", "memory");
|
|
export const DEVICE_TRUST_DISK_LOCAL = new StateDefinition("deviceTrust", "disk", {
|
|
web: "disk-local",
|
|
});
|
|
export const USER_DECRYPTION_OPTIONS_DISK = new StateDefinition("userDecryptionOptions", "disk");
|
|
|
|
// Autofill
|
|
|
|
export const BADGE_SETTINGS_DISK = new StateDefinition("badgeSettings", "disk");
|
|
export const USER_NOTIFICATION_SETTINGS_DISK = new StateDefinition(
|
|
"userNotificationSettings",
|
|
"disk",
|
|
);
|
|
|
|
export const DOMAIN_SETTINGS_DISK = new StateDefinition("domainSettings", "disk");
|
|
export const AUTOFILL_SETTINGS_DISK = new StateDefinition("autofillSettings", "disk");
|
|
export const AUTOFILL_SETTINGS_DISK_LOCAL = new StateDefinition("autofillSettingsLocal", "disk", {
|
|
web: "disk-local",
|
|
});
|
|
|
|
// Components
|
|
|
|
export const NEW_WEB_LAYOUT_BANNER_DISK = new StateDefinition("newWebLayoutBanner", "disk", {
|
|
web: "disk-local",
|
|
});
|
|
|
|
export const UNASSIGNED_ITEMS_BANNER_DISK = new StateDefinition("unassignedItemsBanner", "disk", {
|
|
web: "disk-local",
|
|
});
|
|
|
|
// Platform
|
|
|
|
export const APPLICATION_ID_DISK = new StateDefinition("applicationId", "disk", {
|
|
web: "disk-local",
|
|
});
|
|
export const BIOMETRIC_SETTINGS_DISK = new StateDefinition("biometricSettings", "disk");
|
|
export const CLEAR_EVENT_DISK = new StateDefinition("clearEvent", "disk");
|
|
export const CONFIG_DISK = new StateDefinition("config", "disk", {
|
|
web: "disk-local",
|
|
});
|
|
export const CRYPTO_DISK = new StateDefinition("crypto", "disk");
|
|
export const CRYPTO_MEMORY = new StateDefinition("crypto", "memory");
|
|
export const DESKTOP_SETTINGS_DISK = new StateDefinition("desktopSettings", "disk");
|
|
export const ENVIRONMENT_DISK = new StateDefinition("environment", "disk");
|
|
export const ENVIRONMENT_MEMORY = new StateDefinition("environment", "memory");
|
|
export const THEMING_DISK = new StateDefinition("theming", "disk", { web: "disk-local" });
|
|
export const TRANSLATION_DISK = new StateDefinition("translation", "disk");
|
|
|
|
// Secrets Manager
|
|
|
|
export const SM_ONBOARDING_DISK = new StateDefinition("smOnboarding", "disk", {
|
|
web: "disk-local",
|
|
});
|
|
|
|
// Tools
|
|
|
|
export const GENERATOR_DISK = new StateDefinition("generator", "disk");
|
|
export const GENERATOR_MEMORY = new StateDefinition("generator", "memory");
|
|
export const BROWSER_SEND_MEMORY = new StateDefinition("sendBrowser", "memory");
|
|
export const EVENT_COLLECTION_DISK = new StateDefinition("eventCollection", "disk");
|
|
export const SEND_DISK = new StateDefinition("encryptedSend", "disk", {
|
|
web: "memory",
|
|
});
|
|
export const SEND_MEMORY = new StateDefinition("decryptedSend", "memory", {
|
|
browser: "memory-large-object",
|
|
});
|
|
|
|
// Vault
|
|
|
|
export const COLLECTION_DATA = new StateDefinition("collection", "disk", {
|
|
web: "memory",
|
|
});
|
|
export const FOLDER_DISK = new StateDefinition("folder", "disk", { web: "memory" });
|
|
export const VAULT_FILTER_DISK = new StateDefinition("vaultFilter", "disk", {
|
|
web: "disk-local",
|
|
});
|
|
export const VAULT_ONBOARDING = new StateDefinition("vaultOnboarding", "disk", {
|
|
web: "disk-local",
|
|
});
|
|
export const VAULT_SETTINGS_DISK = new StateDefinition("vaultSettings", "disk", {
|
|
web: "disk-local",
|
|
});
|
|
export const VAULT_BROWSER_MEMORY = new StateDefinition("vaultBrowser", "memory", {
|
|
browser: "memory-large-object",
|
|
});
|
|
export const VAULT_SEARCH_MEMORY = new StateDefinition("vaultSearch", "memory", {
|
|
browser: "memory-large-object",
|
|
});
|
|
export const CIPHERS_DISK = new StateDefinition("ciphers", "disk", { web: "memory" });
|
|
export const CIPHERS_DISK_LOCAL = new StateDefinition("ciphersLocal", "disk", {
|
|
web: "disk-local",
|
|
});
|
|
export const CIPHERS_MEMORY = new StateDefinition("ciphersMemory", "memory", {
|
|
browser: "memory-large-object",
|
|
});
|