mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
b874a301f5
* capture exception for sentry when invariant conditions are met in migration 82 * Code cleanup * Capture exceptions in invariant conditions for migrations 83,84,85,86,89,91,93,94 * Update app/scripts/migrations/082.test.js Co-authored-by: Mark Stacey <markjstacey@gmail.com> * Code cleanup * Fix SentryObject type declaration * Stop throwing error if preferences controller is undefined * Refactor 084 and 086 to remove double negative * Capture exceptions for invariant states in in migrations 87,88,90 and 92 * lint fix * log warning in migration 82 when preferences controller is undefined --------- Co-authored-by: Mark Stacey <markjstacey@gmail.com>
69 lines
2.1 KiB
TypeScript
69 lines
2.1 KiB
TypeScript
import { cloneDeep } from 'lodash';
|
|
import { isObject } from '@metamask/utils';
|
|
|
|
export const version = 83;
|
|
|
|
/**
|
|
* Ensure that each networkConfigurations object in state.NetworkController.networkConfigurations has an
|
|
* `id` property which matches the key pointing that object
|
|
*
|
|
* @param originalVersionedData - Versioned MetaMask extension state, exactly what we persist to dist.
|
|
* @param originalVersionedData.meta - State metadata.
|
|
* @param originalVersionedData.meta.version - The current state version.
|
|
* @param originalVersionedData.data - The persisted MetaMask state, keyed by controller.
|
|
* @returns Updated versioned MetaMask extension state.
|
|
*/
|
|
export async function migrate(originalVersionedData: {
|
|
meta: { version: number };
|
|
data: Record<string, unknown>;
|
|
}) {
|
|
const versionedData = cloneDeep(originalVersionedData);
|
|
versionedData.meta.version = version;
|
|
versionedData.data = transformState(versionedData.data);
|
|
return versionedData;
|
|
}
|
|
|
|
function transformState(state: Record<string, unknown>) {
|
|
if (!isObject(state.NetworkController)) {
|
|
global.sentry?.captureException?.(
|
|
new Error(
|
|
`typeof state.NetworkController is ${typeof state.NetworkController}`,
|
|
),
|
|
);
|
|
return state;
|
|
}
|
|
const { NetworkController } = state;
|
|
|
|
if (!isObject(NetworkController.networkConfigurations)) {
|
|
global.sentry?.captureException?.(
|
|
new Error(
|
|
`typeof NetworkController.networkConfigurations is ${typeof NetworkController.networkConfigurations}`,
|
|
),
|
|
);
|
|
return state;
|
|
}
|
|
|
|
const { networkConfigurations } = NetworkController;
|
|
|
|
const newNetworkConfigurations: Record<string, Record<string, unknown>> = {};
|
|
|
|
for (const networkConfigurationId of Object.keys(networkConfigurations)) {
|
|
const networkConfiguration = networkConfigurations[networkConfigurationId];
|
|
if (!isObject(networkConfiguration)) {
|
|
return state;
|
|
}
|
|
newNetworkConfigurations[networkConfigurationId] = {
|
|
...networkConfiguration,
|
|
id: networkConfigurationId,
|
|
};
|
|
}
|
|
|
|
return {
|
|
...state,
|
|
NetworkController: {
|
|
...NetworkController,
|
|
networkConfigurations: newNetworkConfigurations,
|
|
},
|
|
};
|
|
}
|