mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-22 19:49:22 +00:00
84 lines
2.6 KiB
Dart
84 lines
2.6 KiB
Dart
import 'dart:convert';
|
|
import 'dart:core';
|
|
import 'package:cw_core/pathForWallet.dart';
|
|
import 'package:cw_core/utils/print_verbose.dart';
|
|
import 'package:cw_core/wallet_info.dart';
|
|
import 'package:cw_core/encryption_file_utils.dart';
|
|
import 'package:mobx/mobx.dart';
|
|
import 'package:cw_core/transaction_history.dart';
|
|
import 'package:cw_nano/nano_transaction_info.dart';
|
|
|
|
part 'nano_transaction_history.g.dart';
|
|
|
|
const transactionsHistoryFileName = 'transactions.json';
|
|
|
|
class NanoTransactionHistory = NanoTransactionHistoryBase with _$NanoTransactionHistory;
|
|
|
|
abstract class NanoTransactionHistoryBase extends TransactionHistoryBase<NanoTransactionInfo>
|
|
with Store {
|
|
NanoTransactionHistoryBase({
|
|
required this.walletInfo,
|
|
required String password,
|
|
required this.encryptionFileUtils,
|
|
}) : _password = password {
|
|
transactions = ObservableMap<String, NanoTransactionInfo>();
|
|
}
|
|
|
|
final WalletInfo walletInfo;
|
|
final EncryptionFileUtils encryptionFileUtils;
|
|
String _password;
|
|
|
|
Future<void> init() async {
|
|
clear();
|
|
await _load();
|
|
}
|
|
|
|
@override
|
|
Future<void> save() async {
|
|
try {
|
|
final dirPath = await pathForWalletDir(name: walletInfo.name, type: walletInfo.type);
|
|
final path = '$dirPath/$transactionsHistoryFileName';
|
|
final data = json.encode({'transactions': transactions});
|
|
await encryptionFileUtils.write(path: path, password: _password, data: data);
|
|
} catch (e) {
|
|
printV('Error while save nano transaction history: ${e.toString()}');
|
|
}
|
|
}
|
|
|
|
@override
|
|
void addOne(NanoTransactionInfo transaction) => transactions[transaction.id] = transaction;
|
|
|
|
@override
|
|
void addMany(Map<String, NanoTransactionInfo> transactions) =>
|
|
this.transactions.addAll(transactions);
|
|
|
|
Future<Map<String, dynamic>> _read() async {
|
|
final dirPath = await pathForWalletDir(name: walletInfo.name, type: walletInfo.type);
|
|
final path = '$dirPath/$transactionsHistoryFileName';
|
|
final content = await encryptionFileUtils.read(path: path, password: _password);
|
|
if (content.isEmpty) {
|
|
return {};
|
|
}
|
|
return json.decode(content) as Map<String, dynamic>;
|
|
}
|
|
|
|
Future<void> _load() async {
|
|
try {
|
|
final content = await _read();
|
|
final txs = content['transactions'] as Map<String, dynamic>? ?? {};
|
|
|
|
txs.entries.forEach((entry) {
|
|
final val = entry.value;
|
|
|
|
if (val is Map<String, dynamic>) {
|
|
final tx = NanoTransactionInfo.fromJson(val);
|
|
_update(tx);
|
|
}
|
|
});
|
|
} catch (e) {
|
|
printV(e);
|
|
}
|
|
}
|
|
|
|
void _update(NanoTransactionInfo transaction) => transactions[transaction.id] = transaction;
|
|
}
|