cake_wallet/lib/monero/monero_wallet.dart

223 lines
6.4 KiB
Dart
Raw Normal View History

2020-06-20 07:10:00 +00:00
import 'package:flutter/foundation.dart';
import 'package:mobx/mobx.dart';
2020-07-06 20:09:03 +00:00
import 'package:cw_monero/wallet.dart';
import 'package:cw_monero/wallet.dart' as monero_wallet;
import 'package:cake_wallet/monero/monero_wallet_keys.dart';
2020-06-20 07:10:00 +00:00
import 'package:cake_wallet/monero/monero_balance.dart';
import 'package:cake_wallet/monero/monero_transaction_history.dart';
import 'package:cake_wallet/monero/monero_subaddress_list.dart';
2020-07-06 20:09:03 +00:00
import 'package:cake_wallet/monero/monero_account_list.dart';
2020-06-20 07:10:00 +00:00
import 'package:cake_wallet/core/wallet_base.dart';
import 'package:cake_wallet/core/transaction_history.dart';
2020-07-06 20:09:03 +00:00
import 'package:cake_wallet/src/domain/common/crypto_currency.dart';
import 'package:cake_wallet/src/domain/common/wallet_type.dart';
2020-06-01 18:13:56 +00:00
import 'package:cake_wallet/src/domain/common/sync_status.dart';
import 'package:cake_wallet/src/domain/monero/account.dart';
import 'package:cake_wallet/src/domain/monero/account_list.dart';
import 'package:cake_wallet/src/domain/monero/subaddress.dart';
import 'package:cake_wallet/src/domain/common/node.dart';
part 'monero_wallet.g.dart';
class MoneroWallet = MoneroWalletBase with _$MoneroWallet;
abstract class MoneroWalletBase extends WalletBase<MoneroBalance> with Store {
2020-06-20 07:10:00 +00:00
MoneroWalletBase({String filename, this.isRecovery = false})
2020-07-06 20:09:03 +00:00
: transactionHistory = MoneroTransactionHistory(),
accountList = MoneroAccountList(),
subaddressList = MoneroSubaddressList() {
2020-06-01 18:13:56 +00:00
_filename = filename;
balance = MoneroBalance(
fullBalance: monero_wallet.getFullBalance(accountIndex: 0),
unlockedBalance: monero_wallet.getFullBalance(accountIndex: 0));
2020-07-06 20:09:03 +00:00
currency = CryptoCurrency.xmr;
type = WalletType.monero;
_rct = reaction(
(_) => syncStatus, (SyncStatus status) => print(status.toString()));
_onAccountChangeReaction = reaction((_) => account, (Account account) {
subaddressList.update(accountIndex: account.id);
subaddress = subaddressList.subaddresses.first;
address = subaddress.address;
});
2020-06-01 18:13:56 +00:00
}
2020-07-06 20:09:03 +00:00
ReactionDisposer _rct;
2020-06-20 07:10:00 +00:00
@override
final MoneroTransactionHistory transactionHistory;
2020-06-01 18:13:56 +00:00
@observable
Account account;
@observable
Subaddress subaddress;
@observable
SyncStatus syncStatus;
@override
2020-06-20 07:10:00 +00:00
String get name => _filename.split('/').last;
2020-06-01 18:13:56 +00:00
2020-06-20 07:10:00 +00:00
@override
@observable
String address;
2020-06-01 18:13:56 +00:00
2020-07-06 20:09:03 +00:00
@override
String get seed => monero_wallet.getSeed();
2020-06-01 18:13:56 +00:00
2020-07-06 20:09:03 +00:00
@override
MoneroWalletKeys get keys => MoneroWalletKeys(
privateSpendKey: monero_wallet.getSecretSpendKey(),
privateViewKey: monero_wallet.getSecretViewKey(),
publicSpendKey: monero_wallet.getPublicSpendKey(),
publicViewKey: monero_wallet.getPublicViewKey());
2020-06-20 07:10:00 +00:00
2020-07-06 20:09:03 +00:00
final MoneroSubaddressList subaddressList;
2020-06-20 07:10:00 +00:00
2020-07-06 20:09:03 +00:00
final MoneroAccountList accountList;
2020-06-20 07:10:00 +00:00
2020-07-06 20:09:03 +00:00
bool isRecovery;
String _filename;
2020-06-20 07:10:00 +00:00
SyncListner _listener;
2020-07-06 20:09:03 +00:00
ReactionDisposer _onAccountChangeReaction;
2020-06-01 18:13:56 +00:00
2020-06-20 07:10:00 +00:00
Future<void> init() async {
await accountList.update();
2020-07-06 20:09:03 +00:00
account = accountList.accounts.first;
2020-06-20 07:10:00 +00:00
subaddressList.update(accountIndex: account.id ?? 0);
2020-06-01 18:13:56 +00:00
subaddress = subaddressList.getAll().first;
balance = MoneroBalance(
fullBalance: monero_wallet.getFullBalance(accountIndex: account.id),
unlockedBalance:
monero_wallet.getFullBalance(accountIndex: account.id));
2020-06-20 07:10:00 +00:00
address = subaddress.address;
2020-06-01 18:13:56 +00:00
_setListeners();
}
void close() {
2020-06-20 07:10:00 +00:00
_listener?.stop();
2020-07-06 20:09:03 +00:00
_onAccountChangeReaction?.reaction?.dispose();
2020-06-01 18:13:56 +00:00
}
@override
Future<void> connectToNode({@required Node node}) async {
2020-07-06 20:09:03 +00:00
final node = Node(uri: 'xmr-node-uk.cakewallet.com:18081');
2020-06-01 18:13:56 +00:00
try {
syncStatus = ConnectingSyncStatus();
await monero_wallet.setupNode(
address: node.uri,
login: node.login,
password: node.password,
useSSL: false,
// FIXME: hardcoded value
isLightWallet: false); // FIXME: hardcoded value
syncStatus = ConnectedSyncStatus();
} catch (e) {
syncStatus = FailedSyncStatus();
print(e);
}
}
@override
Future<void> startSync() async {
try {
syncStatus = StartingSyncStatus();
monero_wallet.startRefresh();
} catch (e) {
syncStatus = FailedSyncStatus();
print(e);
rethrow;
}
}
@override
Future<void> createTransaction(Object credentials) async {
// final _credentials = credentials as MoneroTransactionCreationCredentials;
// final transactionDescription = await transaction_history.createTransaction(
// address: _credentials.address,
// paymentId: _credentials.paymentId,
// amount: _credentials.amount,
// priorityRaw: _credentials.priority.serialize(),
// accountIndex: _account.value.id);
//
// return PendingTransaction.fromTransactionDescription(
// transactionDescription);
}
@override
Future<void> save() async {
// if (_isSaving) {
// return;
// }
try {
// _isSaving = true;
await monero_wallet.store();
// _isSaving = false;
} catch (e) {
print(e);
// _isSaving = false;
rethrow;
}
}
Future<int> getNodeHeight() async => monero_wallet.getNodeHeight();
Future<bool> isConnected() async => monero_wallet.isConnected();
void _setListeners() {
2020-06-20 07:10:00 +00:00
_listener?.stop();
_listener = monero_wallet.setListeners(
2020-06-01 18:13:56 +00:00
_onNewBlock, _onNeedToRefresh, _onNewTransaction);
2020-07-06 20:09:03 +00:00
_listener.start();
2020-06-01 18:13:56 +00:00
}
void _askForUpdateBalance() {
final fullBalance = _getFullBalance();
final unlockedBalance = _getUnlockedBalance();
if (balance.fullBalance != fullBalance ||
balance.unlockedBalance != unlockedBalance) {
balance = MoneroBalance(
fullBalance: fullBalance, unlockedBalance: unlockedBalance);
}
}
void _askForUpdateTransactionHistory() =>
null; // await getHistory().update();
int _getFullBalance() =>
monero_wallet.getFullBalance(accountIndex: account.id);
int _getUnlockedBalance() =>
monero_wallet.getUnlockedBalance(accountIndex: account.id);
void _onNewBlock(int height, int blocksLeft, double ptc) =>
syncStatus = SyncingSyncStatus(blocksLeft, ptc);
Future _onNeedToRefresh() async {
if (syncStatus is FailedSyncStatus) {
return;
}
syncStatus = SyncedSyncStatus();
if (isRecovery) {
_askForUpdateTransactionHistory();
}
// if (isRecovery && (nodeHeight - currentHeight < moneroBlockSize)) {
// await setAsRecovered();
// }
await save();
}
void _onNewTransaction() {
_askForUpdateBalance();
_askForUpdateTransactionHistory();
}
}