-
-
Notifications
You must be signed in to change notification settings - Fork 219
/
Copy pathCurrencyRateController.ts
240 lines (214 loc) · 7.04 KB
/
CurrencyRateController.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
import type {
RestrictedMessenger,
ControllerGetStateAction,
ControllerStateChangeEvent,
} from '@metamask/base-controller';
import {
TESTNET_TICKER_SYMBOLS,
FALL_BACK_VS_CURRENCY,
} from '@metamask/controller-utils';
import type { NetworkControllerGetNetworkClientByIdAction } from '@metamask/network-controller';
import { StaticIntervalPollingController } from '@metamask/polling-controller';
import { Mutex } from 'async-mutex';
import { fetchMultiExchangeRate as defaultFetchMultiExchangeRate } from './crypto-compare-service';
/**
* @type CurrencyRateState
* @property currencyRates - Object keyed by native currency
* @property currencyRates.conversionDate - Timestamp of conversion rate expressed in ms since UNIX epoch
* @property currencyRates.conversionRate - Conversion rate from current base asset to the current currency
* @property currentCurrency - Currently-active ISO 4217 currency code
* @property usdConversionRate - Conversion rate from usd to the current currency
*/
export type CurrencyRateState = {
currentCurrency: string;
currencyRates: Record<
string,
{
conversionDate: number | null;
conversionRate: number | null;
usdConversionRate: number | null;
}
>;
};
const name = 'CurrencyRateController';
export type CurrencyRateStateChange = ControllerStateChangeEvent<
typeof name,
CurrencyRateState
>;
export type CurrencyRateControllerEvents = CurrencyRateStateChange;
export type GetCurrencyRateState = ControllerGetStateAction<
typeof name,
CurrencyRateState
>;
export type CurrencyRateControllerActions = GetCurrencyRateState;
type AllowedActions = NetworkControllerGetNetworkClientByIdAction;
type CurrencyRateMessenger = RestrictedMessenger<
typeof name,
CurrencyRateControllerActions | AllowedActions,
CurrencyRateControllerEvents,
AllowedActions['type'],
never
>;
const metadata = {
currentCurrency: { persist: true, anonymous: true },
currencyRates: { persist: true, anonymous: true },
};
const defaultState = {
currentCurrency: 'usd',
currencyRates: {
ETH: {
conversionDate: 0,
conversionRate: 0,
usdConversionRate: null,
},
},
};
/** The input to start polling for the {@link CurrencyRateController} */
type CurrencyRatePollingInput = {
nativeCurrencies: string[];
};
/**
* Controller that passively polls on a set interval for an exchange rate from the current network
* asset to the user's preferred currency.
*/
export class CurrencyRateController extends StaticIntervalPollingController<CurrencyRatePollingInput>()<
typeof name,
CurrencyRateState,
CurrencyRateMessenger
> {
private readonly mutex = new Mutex();
private readonly fetchMultiExchangeRate;
private readonly includeUsdRate;
/**
* Creates a CurrencyRateController instance.
*
* @param options - Constructor options.
* @param options.includeUsdRate - Keep track of the USD rate in addition to the current currency rate.
* @param options.interval - The polling interval, in milliseconds.
* @param options.messenger - A reference to the messaging system.
* @param options.state - Initial state to set on this controller.
* @param options.fetchMultiExchangeRate - Fetches the exchange rate from an external API. This option is primarily meant for use in unit tests.
*/
constructor({
includeUsdRate = false,
interval = 180000,
messenger,
state,
fetchMultiExchangeRate = defaultFetchMultiExchangeRate,
}: {
includeUsdRate?: boolean;
interval?: number;
messenger: CurrencyRateMessenger;
state?: Partial<CurrencyRateState>;
fetchMultiExchangeRate?: typeof defaultFetchMultiExchangeRate;
}) {
super({
name,
metadata,
messenger,
state: { ...defaultState, ...state },
});
this.includeUsdRate = includeUsdRate;
this.setIntervalLength(interval);
this.fetchMultiExchangeRate = fetchMultiExchangeRate;
}
/**
* Sets a currency to track.
*
* @param currentCurrency - ISO 4217 currency code.
*/
async setCurrentCurrency(currentCurrency: string) {
const releaseLock = await this.mutex.acquire();
const nativeCurrencies = Object.keys(this.state.currencyRates);
try {
this.update(() => {
return {
...defaultState,
currentCurrency,
};
});
} finally {
releaseLock();
}
// TODO: Either fix this lint violation or explain why it's necessary to ignore.
// eslint-disable-next-line @typescript-eslint/no-floating-promises
this.updateExchangeRate(nativeCurrencies);
}
/**
* Updates the exchange rate for the current currency and native currency pairs.
*
* @param nativeCurrencies - The native currency symbols to fetch exchange rates for.
*/
async updateExchangeRate(
nativeCurrencies: (string | undefined)[],
): Promise<void> {
const releaseLock = await this.mutex.acquire();
try {
const { currentCurrency } = this.state;
// For preloaded testnets (Goerli, Sepolia) we want to fetch exchange rate for real ETH.
// Map each native currency to the symbol we want to fetch for it.
const testnetSymbols = Object.values(TESTNET_TICKER_SYMBOLS);
const nativeCurrenciesToFetch = nativeCurrencies.reduce(
(acc, nativeCurrency) => {
if (!nativeCurrency) {
return acc;
}
acc[nativeCurrency] = testnetSymbols.includes(nativeCurrency)
? FALL_BACK_VS_CURRENCY
: nativeCurrency;
return acc;
},
{} as Record<string, string>,
);
const fetchExchangeRateResponse = await this.fetchMultiExchangeRate(
currentCurrency,
[...new Set(Object.values(nativeCurrenciesToFetch))],
this.includeUsdRate,
);
const rates = Object.entries(nativeCurrenciesToFetch).reduce(
(acc, [nativeCurrency, fetchedCurrency]) => {
const rate = fetchExchangeRateResponse[fetchedCurrency.toLowerCase()];
acc[nativeCurrency] = {
conversionDate: rate !== undefined ? Date.now() / 1000 : null,
conversionRate: rate?.[currentCurrency.toLowerCase()] ?? null,
usdConversionRate: rate?.usd ?? null,
};
return acc;
},
{} as CurrencyRateState['currencyRates'],
);
this.update((state) => {
state.currencyRates = {
...state.currencyRates,
...rates,
};
});
} catch (error) {
console.error('Failed to fetch exchange rates.', error);
throw error;
} finally {
releaseLock();
}
}
/**
* Prepare to discard this controller.
*
* This stops any active polling.
*/
override destroy() {
super.destroy();
this.stopAllPolling();
}
/**
* Updates exchange rate for the current currency.
*
* @param input - The input for the poll.
* @param input.nativeCurrencies - The native currency symbols to poll prices for.
*/
async _executePoll({
nativeCurrencies,
}: CurrencyRatePollingInput): Promise<void> {
await this.updateExchangeRate(nativeCurrencies);
}
}
export default CurrencyRateController;