2022-12-08 15:23:17 +00:00
|
|
|
import 'dart:async';
|
|
|
|
import 'package:cake_wallet/core/fiat_conversion_service.dart';
|
|
|
|
import 'package:cake_wallet/entities/fiat_api_mode.dart';
|
|
|
|
import 'package:cake_wallet/entities/update_haven_rate.dart';
|
2023-08-04 17:01:49 +00:00
|
|
|
import 'package:cake_wallet/ethereum/ethereum.dart';
|
2022-12-08 15:23:17 +00:00
|
|
|
import 'package:cake_wallet/store/app_store.dart';
|
|
|
|
import 'package:cake_wallet/store/dashboard/fiat_conversion_store.dart';
|
|
|
|
import 'package:cake_wallet/store/settings_store.dart';
|
|
|
|
import 'package:cw_core/wallet_type.dart';
|
2023-07-27 01:08:12 +00:00
|
|
|
import 'package:mobx/mobx.dart';
|
2022-12-08 15:23:17 +00:00
|
|
|
|
|
|
|
Timer? _timer;
|
|
|
|
|
|
|
|
Future<void> startFiatRateUpdate(
|
|
|
|
AppStore appStore, SettingsStore settingsStore, FiatConversionStore fiatConversionStore) async {
|
|
|
|
if (_timer != null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-07-27 01:08:12 +00:00
|
|
|
final _updateFiat = (_) async {
|
2022-12-08 15:23:17 +00:00
|
|
|
try {
|
2022-12-09 18:04:44 +00:00
|
|
|
if (appStore.wallet == null || settingsStore.fiatApiMode == FiatApiMode.disabled) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-08 15:23:17 +00:00
|
|
|
if (appStore.wallet!.type == WalletType.haven) {
|
|
|
|
await updateHavenRate(fiatConversionStore);
|
|
|
|
} else {
|
2022-12-09 18:04:44 +00:00
|
|
|
fiatConversionStore.prices[appStore.wallet!.currency] =
|
|
|
|
await FiatConversionService.fetchPrice(
|
2023-02-28 16:23:21 +00:00
|
|
|
crypto: appStore.wallet!.currency,
|
|
|
|
fiat: settingsStore.fiatCurrency,
|
|
|
|
torOnly: settingsStore.fiatApiMode == FiatApiMode.torOnly);
|
2022-12-08 15:23:17 +00:00
|
|
|
}
|
2023-08-04 17:01:49 +00:00
|
|
|
|
|
|
|
if (appStore.wallet!.type == WalletType.ethereum) {
|
|
|
|
final currencies =
|
|
|
|
ethereum!.getERC20Currencies(appStore.wallet!).where((element) => element.enabled);
|
|
|
|
|
|
|
|
for (final currency in currencies) {
|
|
|
|
() async {
|
|
|
|
fiatConversionStore.prices[currency] = await FiatConversionService.fetchPrice(
|
|
|
|
crypto: currency,
|
|
|
|
fiat: settingsStore.fiatCurrency,
|
|
|
|
torOnly: settingsStore.fiatApiMode == FiatApiMode.torOnly);
|
|
|
|
}.call();
|
|
|
|
}
|
|
|
|
}
|
2022-12-08 15:23:17 +00:00
|
|
|
} catch (e) {
|
|
|
|
print(e);
|
|
|
|
}
|
2023-07-27 01:08:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
_timer = Timer.periodic(Duration(seconds: 30), _updateFiat);
|
|
|
|
// also run immediately:
|
|
|
|
_updateFiat(null);
|
|
|
|
|
|
|
|
// setup autorun to listen to changes in fiatApiMode
|
|
|
|
autorun((_) {
|
|
|
|
// restart the timer if fiatApiMode was re-enabled
|
|
|
|
if (settingsStore.fiatApiMode != FiatApiMode.disabled) {
|
|
|
|
_timer = Timer.periodic(Duration(seconds: 30), _updateFiat);
|
|
|
|
_updateFiat(null);
|
|
|
|
} else {
|
|
|
|
_timer?.cancel();
|
|
|
|
}
|
2022-12-08 15:23:17 +00:00
|
|
|
});
|
|
|
|
}
|