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>
119 lines
4.3 KiB
Dart
119 lines
4.3 KiB
Dart
import 'dart:convert';
|
|
|
|
import 'package:cake_wallet/.secrets.g.dart' as secrets;
|
|
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/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 RobinhoodBuyProvider extends BuyProvider {
|
|
RobinhoodBuyProvider({required WalletBase wallet, bool isTestEnvironment = false, LedgerViewModel? ledgerVM})
|
|
: super(wallet: wallet, isTestEnvironment: isTestEnvironment, ledgerVM: ledgerVM);
|
|
|
|
static const _baseUrl = 'applink.robinhood.com';
|
|
static const _cIdBaseUrl = 'exchange-helper.cakewallet.com';
|
|
|
|
@override
|
|
String get title => 'Robinhood Connect';
|
|
|
|
@override
|
|
String get providerDescription => S.current.robinhood_option_description;
|
|
|
|
@override
|
|
String get lightIcon => 'assets/images/robinhood_light.png';
|
|
|
|
@override
|
|
String get darkIcon => 'assets/images/robinhood_dark.png';
|
|
|
|
String get _applicationId => secrets.robinhoodApplicationId;
|
|
|
|
String get _apiSecret => secrets.exchangeHelperApiKey;
|
|
|
|
Future<String> getSignature(String message) async {
|
|
switch (wallet.type) {
|
|
case WalletType.ethereum:
|
|
case WalletType.polygon:
|
|
return await wallet.signMessage(message);
|
|
case WalletType.litecoin:
|
|
case WalletType.bitcoin:
|
|
case WalletType.bitcoinCash:
|
|
return await wallet.signMessage(message, address: wallet.walletAddresses.address);
|
|
default:
|
|
throw Exception("WalletType is not available for Robinhood ${wallet.type}");
|
|
}
|
|
}
|
|
|
|
Future<String> getConnectId() async {
|
|
final walletAddress = wallet.walletAddresses.address;
|
|
final valid_until = (DateTime.now().millisecondsSinceEpoch / 1000).round() + 10;
|
|
final message = "$_apiSecret:${valid_until}";
|
|
|
|
final signature = await getSignature(message);
|
|
|
|
final uri = Uri.https(_cIdBaseUrl, "/api/robinhood");
|
|
|
|
var response = await http.post(uri,
|
|
headers: {'Content-Type': 'application/json'},
|
|
body: json
|
|
.encode({'valid_until': valid_until, 'wallet': walletAddress, 'signature': signature}));
|
|
|
|
if (response.statusCode == 200) {
|
|
return (jsonDecode(response.body) as Map<String, dynamic>)['connectId'] as String;
|
|
} else {
|
|
throw Exception(
|
|
'Provider currently unavailable. Status: ${response.statusCode} ${response.body}');
|
|
}
|
|
}
|
|
|
|
Future<Uri> requestProviderUrl() async {
|
|
final connectId = await getConnectId();
|
|
final networkName = wallet.currency.fullName?.toUpperCase().replaceAll(" ", "_");
|
|
|
|
return Uri.https(_baseUrl, '/u/connect', <String, dynamic>{
|
|
'applicationId': _applicationId,
|
|
'connectId': connectId,
|
|
'walletAddress': wallet.walletAddresses.address,
|
|
'userIdentifier': wallet.walletAddresses.address,
|
|
'supportedNetworks': networkName
|
|
});
|
|
}
|
|
|
|
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 uri = await requestProviderUrl();
|
|
await launchUrl(uri, mode: LaunchMode.externalApplication);
|
|
} catch (_) {
|
|
await showPopUp<void>(
|
|
context: context,
|
|
builder: (BuildContext context) {
|
|
return AlertWithOneAction(
|
|
alertTitle: "Robinhood Connect",
|
|
alertContent: S.of(context).buy_provider_unavailable,
|
|
buttonText: S.of(context).ok,
|
|
buttonAction: () => Navigator.of(context).pop());
|
|
});
|
|
}
|
|
}
|
|
}
|