mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 01:47:41 +00:00
83ef61e928
* version bump to 3.13.9, auth working on mac * bump flutter version in workflow file * workflow fix * test fix * downgrade flutter version * test fix * test fix * update gradle version * start working on ui for message signing * updates * sign working for a few wallet types * updates & verification for electrum currencies * nano support * sign/verify working on eth, bitcoin broken * update translations * Implement Verify Message for Monero * save [skip ci] * pub key extraction working * fixes for electrum signing * verify working for solana! * electrum still not working :( [skip ci] * electrum messages working! * fixes for updated dart version, localization file updates * remove accidental inclusion * missed some unimplemented throws * Update res/values/strings_de.arb Co-authored-by: Konstantin Ullrich <konstantinullrich12@gmail.com> * Apply suggestions from code review Co-authored-by: Konstantin Ullrich <konstantinullrich12@gmail.com> * review suggestions and updates [skip ci] * [skip ci] add polygon * [skip ci] merge mac-auth/update version * fix litecoin * bio auth mac fix * remove comment and change duration from 2 to 0 * cherry pick previous changes * litecoin fixes, sign form fixes, use new walletAddressPicker * support accounts * verify messages working for monero * working sign and verify messages for nano * electrum signing working [skip ci] * additional nano fixes * update translations * attempt to decode signatures with base64 * workaround for secure storage bug on mac * bump version to 3.19.5 (because breez will need this version anyways) * some code cleanup * some changess didn't get saved * just documenting the issue [skip ci] * undo accidental removal + minor code cleanup * merge conflicts * merge fixes [skip ci] * add tron support * [wip] fixing * remove duplicate references to electrum path for maintainability * fixes * minor fix * fixes * undo debug comment * update migration for all electrum based wallets * hotfixes * copy over the rest of the fixes * minor code cleanup [skip ci] * updates * electrum signing workinggit statusgit statusgit statusgit status! * copy same fixes for litecoin * litecoin fixes * add v to litecoin signatures * fix dependencies * fix bitcoin_base version * merge fix * dep override * fix conflicts with main * trial fix for android build * fixes * fix * dep fix, should build * fix signing for bitcoin cash * [skip ci] minor code cleanup * [skip ci] minor code cleanup 2 * forgot wonero, various other fixes * more fixes * fix solana (untested) --------- Co-authored-by: Konstantin Ullrich <konstantinullrich12@gmail.com> Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
190 lines
6.2 KiB
Dart
190 lines
6.2 KiB
Dart
import 'dart:convert';
|
|
|
|
import 'package:cake_wallet/buy/buy_provider.dart';
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
|
import 'package:cake_wallet/routes.dart';
|
|
import 'package:cake_wallet/src/screens/connect_device/connect_device_page.dart';
|
|
import 'package:cake_wallet/src/widgets/alert_with_one_action.dart';
|
|
import 'package:cake_wallet/utils/device_info.dart';
|
|
import 'package:cake_wallet/utils/show_pop_up.dart';
|
|
import 'package:cake_wallet/view_model/hardware_wallet/ledger_view_model.dart';
|
|
import 'package:cw_core/wallet_base.dart';
|
|
import 'package:cw_core/wallet_type.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:http/http.dart' as http;
|
|
import 'package:url_launcher/url_launcher.dart';
|
|
|
|
class DFXBuyProvider extends BuyProvider {
|
|
DFXBuyProvider({required WalletBase wallet, bool isTestEnvironment = false, LedgerViewModel? ledgerVM})
|
|
: super(wallet: wallet, isTestEnvironment: isTestEnvironment, ledgerVM: ledgerVM);
|
|
|
|
static const _baseUrl = 'api.dfx.swiss';
|
|
// static const _signMessagePath = '/v1/auth/signMessage';
|
|
static const _authPath = '/v1/auth';
|
|
static const walletName = 'CakeWallet';
|
|
|
|
@override
|
|
String get title => 'DFX.swiss';
|
|
|
|
@override
|
|
String get providerDescription => S.current.dfx_option_description;
|
|
|
|
@override
|
|
String get lightIcon => 'assets/images/dfx_light.png';
|
|
|
|
@override
|
|
String get darkIcon => 'assets/images/dfx_dark.png';
|
|
|
|
String get assetOut {
|
|
switch (wallet.type) {
|
|
case WalletType.bitcoin:
|
|
return 'BTC';
|
|
case WalletType.bitcoinCash:
|
|
return 'BCH';
|
|
case WalletType.litecoin:
|
|
return 'LTC';
|
|
case WalletType.monero:
|
|
return 'XMR';
|
|
case WalletType.ethereum:
|
|
return 'ETH';
|
|
case WalletType.polygon:
|
|
return 'MATIC';
|
|
default:
|
|
throw Exception("WalletType is not available for DFX ${wallet.type}");
|
|
}
|
|
}
|
|
|
|
String get blockchain {
|
|
switch (wallet.type) {
|
|
case WalletType.bitcoin:
|
|
case WalletType.bitcoinCash:
|
|
case WalletType.litecoin:
|
|
return 'Bitcoin';
|
|
case WalletType.monero:
|
|
return 'Monero';
|
|
case WalletType.ethereum:
|
|
return 'Ethereum';
|
|
case WalletType.polygon:
|
|
return 'Polygon';
|
|
default:
|
|
throw Exception("WalletType is not available for DFX ${wallet.type}");
|
|
}
|
|
}
|
|
|
|
String get walletAddress =>
|
|
wallet.walletAddresses.primaryAddress ?? wallet.walletAddresses.address;
|
|
|
|
Future<String> getSignMessage() async =>
|
|
"By_signing_this_message,_you_confirm_that_you_are_the_sole_owner_of_the_provided_Blockchain_address._Your_ID:_$walletAddress";
|
|
|
|
// // Lets keep this just in case, but we can avoid this API Call
|
|
// Future<String> getSignMessage() async {
|
|
// final uri = Uri.https(_baseUrl, _signMessagePath, {'address': walletAddress});
|
|
//
|
|
// final response = await http.get(uri, headers: {'accept': 'application/json'});
|
|
//
|
|
// if (response.statusCode == 200) {
|
|
// final responseBody = jsonDecode(response.body);
|
|
// return responseBody['message'] as String;
|
|
// } else {
|
|
// throw Exception(
|
|
// 'Failed to get sign message. Status: ${response.statusCode} ${response.body}');
|
|
// }
|
|
// }
|
|
|
|
Future<String> auth() async {
|
|
final signMessage = await getSignature(await getSignMessage());
|
|
|
|
final requestBody = jsonEncode({
|
|
'wallet': walletName,
|
|
'address': walletAddress,
|
|
'signature': signMessage,
|
|
});
|
|
|
|
final uri = Uri.https(_baseUrl, _authPath);
|
|
var response = await http.post(
|
|
uri,
|
|
headers: {'Content-Type': 'application/json'},
|
|
body: requestBody,
|
|
);
|
|
|
|
if (response.statusCode == 201) {
|
|
final responseBody = jsonDecode(response.body);
|
|
return responseBody['accessToken'] as String;
|
|
} else if (response.statusCode == 403) {
|
|
final responseBody = jsonDecode(response.body);
|
|
final message = responseBody['message'] ?? 'Service unavailable in your country';
|
|
throw Exception(message);
|
|
} else {
|
|
throw Exception('Failed to sign up. Status: ${response.statusCode} ${response.body}');
|
|
}
|
|
}
|
|
|
|
Future<String> getSignature(String message) async {
|
|
switch (wallet.type) {
|
|
case WalletType.ethereum:
|
|
case WalletType.polygon:
|
|
return await wallet.signMessage(message);
|
|
case WalletType.monero:
|
|
case WalletType.litecoin:
|
|
case WalletType.bitcoin:
|
|
case WalletType.bitcoinCash:
|
|
return await wallet.signMessage(message, address: walletAddress);
|
|
default:
|
|
throw Exception("WalletType is not available for DFX ${wallet.type}");
|
|
}
|
|
}
|
|
|
|
@override
|
|
Future<void> launchProvider(BuildContext context, bool? isBuyAction) async {
|
|
if (wallet.isHardwareWallet) {
|
|
if (!ledgerVM!.isConnected) {
|
|
await Navigator.of(context).pushNamed(Routes.connectDevices,
|
|
arguments: ConnectDevicePageParams(
|
|
walletType: wallet.walletInfo.type,
|
|
onConnectDevice: (BuildContext context, LedgerViewModel ledgerVM) {
|
|
ledgerVM.setLedger(wallet);
|
|
Navigator.of(context).pop();
|
|
}));
|
|
} else {
|
|
ledgerVM!.setLedger(wallet);
|
|
}
|
|
}
|
|
|
|
try {
|
|
final assetOut = this.assetOut;
|
|
final blockchain = this.blockchain;
|
|
final actionType = isBuyAction == true ? '/buy' : '/sell';
|
|
|
|
final accessToken = await auth();
|
|
|
|
final uri = Uri.https('services.dfx.swiss', actionType, {
|
|
'session': accessToken,
|
|
'lang': 'en',
|
|
'asset-out': assetOut,
|
|
'blockchain': blockchain,
|
|
'asset-in': 'EUR',
|
|
});
|
|
|
|
if (await canLaunchUrl(uri)) {
|
|
if (DeviceInfo.instance.isMobile) {
|
|
Navigator.of(context).pushNamed(Routes.webViewPage, arguments: [title, uri]);
|
|
} else {
|
|
await launchUrl(uri, mode: LaunchMode.externalApplication);
|
|
}
|
|
} else {
|
|
throw Exception('Could not launch URL');
|
|
}
|
|
} catch (e) {
|
|
await showPopUp<void>(
|
|
context: context,
|
|
builder: (BuildContext context) {
|
|
return AlertWithOneAction(
|
|
alertTitle: "DFX.swiss",
|
|
alertContent: S.of(context).buy_provider_unavailable + ': $e',
|
|
buttonText: S.of(context).ok,
|
|
buttonAction: () => Navigator.of(context).pop());
|
|
});
|
|
}
|
|
}
|
|
}
|