cake_wallet/lib/core/fiat_conversion_service.dart

129 lines
3.7 KiB
Dart
Raw Normal View History

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;
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;
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(),
'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>;
final results = responseJSON['results'] as Map<String, dynamic>;
2020-01-04 19:31:52 +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
Future<double> _fetchHistoricalPrice(Map<String, dynamic> args) async {
final crypto = args['crypto'] as CryptoCurrency;
final fiat = args['fiat'] as FiatCurrency;
final torOnly = args['torOnly'] as bool;
final date = args['date'] as DateTime;
final intervalFromNow = DateTime.now().difference(date).inMinutes;
final Map<String, String> queryParams = {
2023-05-09 09:55:34 +00:00
'interval_count': '2',
'base': crypto.toString(),
'quote': fiat.toString(),
'key': secrets.fiatApiKey,
'interval_minutes': intervalFromNow.toString()
};
double price = 0.0;
try {
late final Uri uri;
if (torOnly) {
uri = Uri.http(_fiatApiOnionAuthority, _fiatApiPath, queryParams);
} else {
uri = Uri.https(_fiatApiClearNetAuthority, _fiatApiPath, queryParams);
}
final response = await get(uri);
if (response.statusCode != 200) {
return 0.0;
}
final data = json.decode(response.body) as Map<String, dynamic>;
final errors = data['errors'] as Map<String, dynamic>;
if (errors.isNotEmpty) {
return 0.0;
}
final results = data['results'] as Map<String, dynamic>;
if (results.isNotEmpty) {
price = results.values.first as double;
}
2023-05-09 09:55:34 +00:00
print('results.key: ${results.keys.first} results.value: ${results.values.first}');
return price;
} catch (e) {
print(e.toString());
return 0.0;
}
}
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
Future<double> _fetchHistoricalAsync(
CryptoCurrency crypto, FiatCurrency fiat, bool torOnly, DateTime date) async =>
compute(
_fetchHistoricalPrice, {'fiat': fiat, 'crypto': crypto, 'torOnly': torOnly, 'date': date});
2020-09-21 11:50:26 +00:00
class FiatConversionService {
static Future<double> fetchPrice({
required CryptoCurrency crypto,
required FiatCurrency fiat,
required bool torOnly,
}) async =>
await _fetchPriceAsync(crypto, fiat, torOnly);
static Future<double> fetchHistoricalPrice({
required CryptoCurrency crypto,
required FiatCurrency fiat,
required bool torOnly,
required DateTime date,
}) async =>
await _fetchHistoricalAsync(crypto, fiat, torOnly, date);
2020-09-21 11:50:26 +00:00
}