mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +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>
85 lines
2.5 KiB
TypeScript
85 lines
2.5 KiB
TypeScript
import { hasProperty, isObject } from '@metamask/utils';
|
|
import { cloneDeep } from 'lodash';
|
|
|
|
export const version = 89;
|
|
|
|
/**
|
|
* Add an `id` to the `providerConfig` 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 (
|
|
hasProperty(state, 'NetworkController') &&
|
|
isObject(state.NetworkController) &&
|
|
hasProperty(state.NetworkController, 'providerConfig') &&
|
|
isObject(state.NetworkController.providerConfig)
|
|
) {
|
|
const { networkConfigurations, providerConfig } = state.NetworkController;
|
|
|
|
if (!isObject(networkConfigurations)) {
|
|
return state;
|
|
}
|
|
|
|
if (providerConfig.id) {
|
|
return state;
|
|
}
|
|
|
|
let newProviderConfigId;
|
|
|
|
for (const networkConfigurationId of Object.keys(networkConfigurations)) {
|
|
const networkConfiguration =
|
|
networkConfigurations[networkConfigurationId];
|
|
if (!isObject(networkConfiguration)) {
|
|
return state;
|
|
}
|
|
if (networkConfiguration.rpcUrl === providerConfig.rpcUrl) {
|
|
newProviderConfigId = networkConfiguration.id;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (!newProviderConfigId) {
|
|
return state;
|
|
}
|
|
|
|
state.NetworkController.providerConfig = {
|
|
...providerConfig,
|
|
id: newProviderConfigId,
|
|
};
|
|
|
|
return {
|
|
...state,
|
|
NetworkController: state.NetworkController,
|
|
};
|
|
} else if (!isObject(state.NetworkController)) {
|
|
global.sentry?.captureException?.(
|
|
new Error(
|
|
`typeof state.NetworkController is ${typeof state.NetworkController}`,
|
|
),
|
|
);
|
|
} else if (!isObject(state.NetworkController.providerConfig)) {
|
|
global.sentry?.captureException?.(
|
|
new Error(
|
|
`typeof state.NetworkController.providerConfig is ${typeof state
|
|
.NetworkController.providerConfig}`,
|
|
),
|
|
);
|
|
}
|
|
return state;
|
|
}
|