2017-08-15 03:46:18 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
This migration updates "transaction state history" to diffs style
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
import { cloneDeep } from 'lodash';
|
2020-04-20 17:30:51 +02:00
|
|
|
import {
|
|
|
|
snapshotFromTxMeta,
|
|
|
|
migrateFromSnapshotsToDiffs,
|
2021-02-04 19:15:23 +01:00
|
|
|
} from '../controllers/transactions/lib/tx-state-history-helpers';
|
2017-08-15 03:46:18 +02:00
|
|
|
|
2021-02-04 19:15:23 +01:00
|
|
|
const version = 18;
|
2020-01-09 04:34:58 +01:00
|
|
|
|
|
|
|
export default {
|
2017-08-15 03:46:18 +02:00
|
|
|
version,
|
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
migrate(originalVersionedData) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const versionedData = cloneDeep(originalVersionedData);
|
|
|
|
versionedData.meta.version = version;
|
2017-08-15 03:46:18 +02:00
|
|
|
try {
|
2021-02-04 19:15:23 +01:00
|
|
|
const state = versionedData.data;
|
|
|
|
const newState = transformState(state);
|
|
|
|
versionedData.data = newState;
|
2017-08-15 03:46:18 +02:00
|
|
|
} catch (err) {
|
2021-02-04 19:15:23 +01:00
|
|
|
console.warn(`MetaMask Migration #${version}${err.stack}`);
|
2017-08-15 03:46:18 +02:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
return Promise.resolve(versionedData);
|
2017-08-15 03:46:18 +02:00
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2017-08-15 03:46:18 +02:00
|
|
|
|
2020-11-03 00:41:28 +01:00
|
|
|
function transformState(state) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const newState = state;
|
|
|
|
const { TransactionController } = newState;
|
2018-04-06 04:28:53 +02:00
|
|
|
if (TransactionController && TransactionController.transactions) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const { transactions } = newState.TransactionController;
|
2018-04-06 04:28:53 +02:00
|
|
|
newState.TransactionController.transactions = transactions.map((txMeta) => {
|
|
|
|
// no history: initialize
|
|
|
|
if (!txMeta.history || txMeta.history.length === 0) {
|
2021-02-04 19:15:23 +01:00
|
|
|
const snapshot = snapshotFromTxMeta(txMeta);
|
|
|
|
txMeta.history = [snapshot];
|
|
|
|
return txMeta;
|
2018-04-06 04:28:53 +02:00
|
|
|
}
|
|
|
|
// has history: migrate
|
2020-11-03 00:41:28 +01:00
|
|
|
const newHistory = migrateFromSnapshotsToDiffs(txMeta.history)
|
2018-04-06 04:28:53 +02:00
|
|
|
// remove empty diffs
|
2020-11-03 00:41:28 +01:00
|
|
|
.filter((entry) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
return !Array.isArray(entry) || entry.length > 0;
|
|
|
|
});
|
|
|
|
txMeta.history = newHistory;
|
|
|
|
return txMeta;
|
|
|
|
});
|
2018-04-06 04:28:53 +02:00
|
|
|
}
|
2021-02-04 19:15:23 +01:00
|
|
|
return newState;
|
2017-08-15 03:46:18 +02:00
|
|
|
}
|