2023-04-14 04:39:08 +00:00
|
|
|
import 'package:cake_wallet/.secrets.g.dart' as secrets;
|
2023-12-28 19:20:59 +00:00
|
|
|
import 'package:cake_wallet/buy/buy_provider.dart';
|
2023-08-22 18:49:37 +00:00
|
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
2023-09-14 19:14:49 +00:00
|
|
|
import 'package:cake_wallet/routes.dart';
|
2023-04-14 04:39:08 +00:00
|
|
|
import 'package:cake_wallet/store/settings_store.dart';
|
2023-08-22 18:49:37 +00:00
|
|
|
import 'package:cake_wallet/themes/extensions/cake_text_theme.dart';
|
2023-09-14 19:14:49 +00:00
|
|
|
import 'package:cake_wallet/utils/device_info.dart';
|
2023-05-10 13:58:31 +00:00
|
|
|
import 'package:cw_core/crypto_currency.dart';
|
2023-04-14 04:39:08 +00:00
|
|
|
import 'package:cw_core/wallet_base.dart';
|
2023-08-22 18:49:37 +00:00
|
|
|
import 'package:flutter/material.dart';
|
2023-09-14 19:14:49 +00:00
|
|
|
import 'package:url_launcher/url_launcher.dart';
|
2023-04-14 04:39:08 +00:00
|
|
|
|
2023-12-28 19:20:59 +00:00
|
|
|
class OnRamperBuyProvider extends BuyProvider {
|
|
|
|
OnRamperBuyProvider(this._settingsStore,
|
|
|
|
{required WalletBase wallet, bool isTestEnvironment = false})
|
2024-05-05 01:44:50 +00:00
|
|
|
: super(wallet: wallet, isTestEnvironment: isTestEnvironment, ledgerVM: null);
|
2023-12-28 19:20:59 +00:00
|
|
|
|
|
|
|
static const _baseUrl = 'buy.onramper.com';
|
2023-04-14 04:39:08 +00:00
|
|
|
|
|
|
|
final SettingsStore _settingsStore;
|
|
|
|
|
2023-12-28 19:20:59 +00:00
|
|
|
@override
|
|
|
|
String get title => 'Onramper';
|
|
|
|
|
|
|
|
@override
|
2024-01-01 13:05:37 +00:00
|
|
|
String get providerDescription => S.current.onramper_option_description;
|
2023-12-28 19:20:59 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
String get lightIcon => 'assets/images/onramper_light.png';
|
|
|
|
|
|
|
|
@override
|
|
|
|
String get darkIcon => 'assets/images/onramper_dark.png';
|
2023-04-14 04:39:08 +00:00
|
|
|
|
2023-05-10 13:58:31 +00:00
|
|
|
String get _apiKey => secrets.onramperApiKey;
|
|
|
|
|
|
|
|
String get _normalizeCryptoCurrency {
|
2023-12-28 19:20:59 +00:00
|
|
|
switch (wallet.currency) {
|
2023-05-10 13:58:31 +00:00
|
|
|
case CryptoCurrency.ltc:
|
|
|
|
return "LTC_LITECOIN";
|
2023-07-26 16:48:53 +00:00
|
|
|
case CryptoCurrency.xmr:
|
|
|
|
return "XMR_MONERO";
|
2023-10-12 22:50:16 +00:00
|
|
|
case CryptoCurrency.bch:
|
|
|
|
return "BCH_BITCOINCASH";
|
2023-10-05 01:09:07 +00:00
|
|
|
case CryptoCurrency.nano:
|
|
|
|
return "XNO_NANO";
|
2023-05-10 13:58:31 +00:00
|
|
|
default:
|
2023-12-28 19:20:59 +00:00
|
|
|
return wallet.currency.title;
|
2023-05-10 13:58:31 +00:00
|
|
|
}
|
|
|
|
}
|
2023-04-14 04:39:08 +00:00
|
|
|
|
2023-08-22 18:49:37 +00:00
|
|
|
String getColorStr(Color color) {
|
|
|
|
return color.value.toRadixString(16).replaceAll(RegExp(r'^ff'), "");
|
|
|
|
}
|
|
|
|
|
2024-01-08 14:02:12 +00:00
|
|
|
Uri requestOnramperUrl(BuildContext context, bool? isBuyAction) {
|
2023-04-14 04:39:08 +00:00
|
|
|
String primaryColor,
|
|
|
|
secondaryColor,
|
|
|
|
primaryTextColor,
|
|
|
|
secondaryTextColor,
|
|
|
|
containerColor,
|
|
|
|
cardColor;
|
|
|
|
|
2023-08-22 18:49:37 +00:00
|
|
|
primaryColor = getColorStr(Theme.of(context).primaryColor);
|
|
|
|
secondaryColor = getColorStr(Theme.of(context).colorScheme.background);
|
2023-12-28 19:20:59 +00:00
|
|
|
primaryTextColor =
|
|
|
|
getColorStr(Theme.of(context).extension<CakeTextTheme>()!.titleColor);
|
|
|
|
secondaryTextColor = getColorStr(
|
|
|
|
Theme.of(context).extension<CakeTextTheme>()!.secondaryTextColor);
|
2023-08-22 18:49:37 +00:00
|
|
|
containerColor = getColorStr(Theme.of(context).colorScheme.background);
|
|
|
|
cardColor = getColorStr(Theme.of(context).cardColor);
|
|
|
|
|
|
|
|
if (_settingsStore.currentTheme.title == S.current.high_contrast_theme) {
|
|
|
|
cardColor = getColorStr(Colors.white);
|
2023-04-14 04:39:08 +00:00
|
|
|
}
|
|
|
|
|
2023-12-28 19:20:59 +00:00
|
|
|
final networkName =
|
|
|
|
wallet.currency.fullName?.toUpperCase().replaceAll(" ", "");
|
2023-04-14 04:39:08 +00:00
|
|
|
|
|
|
|
return Uri.https(_baseUrl, '', <String, dynamic>{
|
|
|
|
'apiKey': _apiKey,
|
2023-05-10 13:58:31 +00:00
|
|
|
'defaultCrypto': _normalizeCryptoCurrency,
|
2024-01-08 14:02:12 +00:00
|
|
|
'sell_defaultCrypto': _normalizeCryptoCurrency,
|
2023-12-28 19:20:59 +00:00
|
|
|
'networkWallets': '${networkName}:${wallet.walletAddresses.address}',
|
2023-04-14 04:39:08 +00:00
|
|
|
'supportSwap': "false",
|
|
|
|
'primaryColor': primaryColor,
|
|
|
|
'secondaryColor': secondaryColor,
|
|
|
|
'primaryTextColor': primaryTextColor,
|
|
|
|
'secondaryTextColor': secondaryTextColor,
|
|
|
|
'containerColor': containerColor,
|
2024-01-08 14:02:12 +00:00
|
|
|
'cardColor': cardColor,
|
|
|
|
'mode': isBuyAction == true ? 'buy' : 'sell',
|
2023-04-14 04:39:08 +00:00
|
|
|
});
|
|
|
|
}
|
2023-09-14 19:14:49 +00:00
|
|
|
|
2023-12-28 19:20:59 +00:00
|
|
|
Future<void> launchProvider(BuildContext context, bool? isBuyAction) async {
|
2024-01-08 14:02:12 +00:00
|
|
|
final uri = requestOnramperUrl(context, isBuyAction);
|
2023-09-14 19:14:49 +00:00
|
|
|
if (DeviceInfo.instance.isMobile) {
|
2023-12-28 19:20:59 +00:00
|
|
|
Navigator.of(context)
|
2024-01-08 14:02:12 +00:00
|
|
|
.pushNamed(Routes.webViewPage, arguments: [title, uri]);
|
2023-09-14 19:14:49 +00:00
|
|
|
} else {
|
|
|
|
await launchUrl(uri);
|
|
|
|
}
|
|
|
|
}
|
2023-04-14 04:39:08 +00:00
|
|
|
}
|