2021-12-24 12:37:24 +00:00
|
|
|
import 'package:cw_core/crypto_currency.dart';
|
2020-09-21 11:50:26 +00:00
|
|
|
import 'package:cake_wallet/entities/fiat_currency.dart';
|
2020-01-04 19:31:52 +00:00
|
|
|
import 'dart:convert';
|
2020-09-21 11:50:26 +00:00
|
|
|
import 'package:flutter/foundation.dart';
|
2020-01-04 19:31:52 +00:00
|
|
|
import 'package:http/http.dart';
|
2023-03-31 18:22:51 +00:00
|
|
|
import 'package:cake_wallet/.secrets.g.dart' as secrets;
|
|
|
|
|
2020-01-04 19:31:52 +00:00
|
|
|
|
2023-02-28 16:23:21 +00:00
|
|
|
const _fiatApiClearNetAuthority = 'fiat-api.cakewallet.com';
|
|
|
|
const _fiatApiOnionAuthority = 'n4z7bdcmwk2oyddxvzaap3x2peqcplh3pzdy7tpkk5ejz5n4mhfvoxqd.onion';
|
|
|
|
const _fiatApiPath = '/v2/rates';
|
2020-01-04 19:31:52 +00:00
|
|
|
|
2020-09-21 11:50:26 +00:00
|
|
|
Future<double> _fetchPrice(Map<String, dynamic> args) async {
|
|
|
|
final crypto = args['crypto'] as CryptoCurrency;
|
|
|
|
final fiat = args['fiat'] as FiatCurrency;
|
2023-02-28 16:23:21 +00:00
|
|
|
final torOnly = args['torOnly'] as bool;
|
2023-03-01 21:24:52 +00:00
|
|
|
|
|
|
|
final Map<String, String> queryParams = {
|
|
|
|
'interval_count': '1',
|
|
|
|
'base': crypto.toString(),
|
|
|
|
'quote': fiat.toString(),
|
2023-03-31 18:22:51 +00:00
|
|
|
'key' : secrets.fiatApiKey,
|
2023-03-01 21:24:52 +00:00
|
|
|
};
|
|
|
|
|
2020-01-04 19:31:52 +00:00
|
|
|
double price = 0.0;
|
|
|
|
|
|
|
|
try {
|
2023-03-01 21:24:52 +00:00
|
|
|
late final Uri uri;
|
|
|
|
if (torOnly) {
|
|
|
|
uri = Uri.http(_fiatApiOnionAuthority, _fiatApiPath, queryParams);
|
|
|
|
} else {
|
|
|
|
uri = Uri.https(_fiatApiClearNetAuthority, _fiatApiPath, queryParams);
|
|
|
|
}
|
|
|
|
|
2022-10-12 17:09:57 +00:00
|
|
|
final response = await get(uri);
|
2020-01-04 19:31:52 +00:00
|
|
|
|
|
|
|
if (response.statusCode != 200) {
|
|
|
|
return 0.0;
|
|
|
|
}
|
|
|
|
|
2020-01-08 12:26:34 +00:00
|
|
|
final responseJSON = json.decode(response.body) as Map<String, dynamic>;
|
2023-02-28 16:23:21 +00:00
|
|
|
final results = responseJSON['results'] as Map<String, dynamic>;
|
2020-01-04 19:31:52 +00:00
|
|
|
|
2023-02-28 16:23:21 +00:00
|
|
|
if (results.isNotEmpty) {
|
|
|
|
price = results.values.first as double;
|
2020-01-04 19:31:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return price;
|
|
|
|
} catch (e) {
|
|
|
|
return price;
|
|
|
|
}
|
|
|
|
}
|
2020-09-21 11:50:26 +00:00
|
|
|
|
2023-02-28 16:23:21 +00:00
|
|
|
Future<double> _fetchPriceAsync(CryptoCurrency crypto, FiatCurrency fiat, bool torOnly) async =>
|
|
|
|
compute(_fetchPrice, {'fiat': fiat, 'crypto': crypto, 'torOnly': torOnly});
|
2020-09-21 11:50:26 +00:00
|
|
|
|
|
|
|
class FiatConversionService {
|
2023-02-28 16:23:21 +00:00
|
|
|
static Future<double> fetchPrice({
|
|
|
|
required CryptoCurrency crypto,
|
|
|
|
required FiatCurrency fiat,
|
|
|
|
required bool torOnly,
|
|
|
|
}) async =>
|
|
|
|
await _fetchPriceAsync(crypto, fiat, torOnly);
|
2020-09-21 11:50:26 +00:00
|
|
|
}
|