mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-03-26 17:18:45 +00:00
* V4.8.1 v1.5.1 (#1038) * Revert "Cw 397 chatwoot live support (#1011)" This reverts commitaf9b5ff10c
. * Add Version 4.8.1 configs * Update macos build version [skip ci] * Re add chatwoot (#1044) * Revert "Revert "Cw 397 chatwoot live support (#1011)"" This reverts commitecdc7baa2e
. * Re-add chatwoot Change chatwoot base url * Cw 396 additional themes (#962) * fix: SectionStandardList using BuildContext as param * refactor: deprecated backgroundColor -> colorScheme.background * refactor: themeBase and current themes * refactor: accentTextTheme.titleLarge.color -> dialogTheme.backgroundColor * refactor: gradient background * refactor: text themes using the same color as primaryColor * refactor: accentTextTheme.bodySmall.color -> cardColor * refactor: text themes using same dialogBackgroundColor * refactor: scrollbarTheme * refactor: create SyncIndicatorTheme * refactor: SectionDivider * refactor: base_page improvements and simplify * refactor: collapsible_standart_list improvements * refactor: accentTextTheme.bodyLarge.backgroundColor -> KeyboardTheme.keyboardBarColor * refactor: create PinCodeTheme for accentTextTheme.bodyMedium * refactor: create SupportPageTheme for accentTextTheme.displayLarge.backgroundColor and fix cases that use it * refactor: accentTextTheme.displayLarge.color -> disabledColor * refactor: create ExchangePageTheme * refactor: create DashboardPageTheme and use textColor * refactor: create NewWalletTheme for accentTextTheme.displayMedium * refactor: create BalancePageTheme for accentTextTheme.displaySmall.backgroundColor * refactor: create AddressTheme for accentTextTheme.displaySmall.color * refactor: create IndicatorDotTheme * refactor: create CakeMenuTheme * refactor: create FilterTheme * refactor: create WalletListTheme * refactor: accentTextTheme.bodySmall.decorationColor -> InfoTheme.textColor * refactor: accentTextTheme.titleLarge.backgroundColor -> PickerTheme.dividerColor * refactor: primaryTextTheme.bodyLarge.backgroundColor -> AlertTheme.leftButtonTextColor * refactor: primaryTextTheme.displayLarge.backgroundColor -> OrderTheme.iconColor * refactor: create SendPageTheme * fix: missing migrated styles * refactor: primaryTextTheme.labelSmall.decorationColor -> PlaceholderTheme.color * refactor: create TransactionTradeTheme * refactor: create CakeTextTheme * refactor: create AccountListTheme * refactor: create ReceivePageTheme * refactor: create QRCodeTheme * refactor: move remaining items to CakeTextTheme and some missing fixes * feat(display_settings): add new theme selector * feat: additional themes * fix: conflict error * fix(lag): move colorScheme initialization to constructor * feat: add backdropColor to alert and picker backdrop filters * fix: merge fixes * fix: send template page missing new colors * fix: anonpay pages title and icon colors * fix: merge fixes * fix: unspent coins page * fix: also fix exchange template * fix: missing checkbox * fix: fixes for high contrast theme * Merge branch 'main' into CW-396-additional-themes * fix: merge fixes * fix: .gitignore and rm added files * Fix review comments --------- Co-authored-by: OmarHatem <omarh.ismail1@gmail.com> * Flutter update (#1048) * Update Flutter Update packages * Fix localization issues Fix UI issues Update old packages Update workflow Update how to build guide * Additional UI fixes for merged conflicts * Fix Ethereum network for anonpay invoice (#1051) * build: migrate from wakelock to wakelock_plus - plus is compatible with package_info_plus ^4.0.0 - plus has implemented Linux support * fix: theme & support view model merge fixes --------- Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
275 lines
9 KiB
Dart
275 lines
9 KiB
Dart
import 'dart:io';
|
|
import 'package:cw_core/monero_wallet_utils.dart';
|
|
import 'package:hive/hive.dart';
|
|
import 'package:cw_monero/api/wallet_manager.dart' as monero_wallet_manager;
|
|
import 'package:cw_monero/api/exceptions/wallet_opening_exception.dart';
|
|
import 'package:cw_monero/monero_wallet.dart';
|
|
import 'package:cw_core/wallet_credentials.dart';
|
|
import 'package:cw_core/wallet_service.dart';
|
|
import 'package:cw_core/pathForWallet.dart';
|
|
import 'package:cw_core/unspent_coins_info.dart';
|
|
import 'package:cw_core/wallet_base.dart';
|
|
import 'package:cw_core/wallet_credentials.dart';
|
|
import 'package:cw_core/wallet_info.dart';
|
|
import 'package:cw_core/wallet_service.dart';
|
|
import 'package:cw_core/wallet_type.dart';
|
|
import 'package:cw_monero/api/exceptions/wallet_opening_exception.dart';
|
|
import 'package:cw_monero/api/wallet_manager.dart' as monero_wallet_manager;
|
|
import 'package:cw_monero/monero_wallet.dart';
|
|
import 'package:hive/hive.dart';
|
|
|
|
class MoneroNewWalletCredentials extends WalletCredentials {
|
|
MoneroNewWalletCredentials({required String name, required this.language, String? password})
|
|
: super(name: name, password: password);
|
|
|
|
final String language;
|
|
}
|
|
|
|
class MoneroRestoreWalletFromSeedCredentials extends WalletCredentials {
|
|
MoneroRestoreWalletFromSeedCredentials(
|
|
{required String name, required this.mnemonic, int height = 0, String? password})
|
|
: super(name: name, password: password, height: height);
|
|
|
|
final String mnemonic;
|
|
}
|
|
|
|
class MoneroWalletLoadingException implements Exception {
|
|
@override
|
|
String toString() => 'Failure to load the wallet.';
|
|
}
|
|
|
|
class MoneroRestoreWalletFromKeysCredentials extends WalletCredentials {
|
|
MoneroRestoreWalletFromKeysCredentials(
|
|
{required String name,
|
|
required String password,
|
|
required this.language,
|
|
required this.address,
|
|
required this.viewKey,
|
|
required this.spendKey,
|
|
int height = 0})
|
|
: super(name: name, password: password, height: height);
|
|
|
|
final String language;
|
|
final String address;
|
|
final String viewKey;
|
|
final String spendKey;
|
|
}
|
|
|
|
class MoneroWalletService extends WalletService<
|
|
MoneroNewWalletCredentials,
|
|
MoneroRestoreWalletFromSeedCredentials,
|
|
MoneroRestoreWalletFromKeysCredentials> {
|
|
MoneroWalletService(this.walletInfoSource, this.unspentCoinsInfoSource);
|
|
|
|
final Box<WalletInfo> walletInfoSource;
|
|
final Box<UnspentCoinsInfo> unspentCoinsInfoSource;
|
|
|
|
static bool walletFilesExist(String path) =>
|
|
!File(path).existsSync() && !File('$path.keys').existsSync();
|
|
|
|
@override
|
|
WalletType getType() => WalletType.monero;
|
|
|
|
@override
|
|
Future<MoneroWallet> create(MoneroNewWalletCredentials credentials) async {
|
|
try {
|
|
final path = await pathForWallet(name: credentials.name, type: getType());
|
|
await monero_wallet_manager.createWallet(
|
|
path: path,
|
|
password: credentials.password!,
|
|
language: credentials.language);
|
|
final wallet = MoneroWallet(
|
|
walletInfo: credentials.walletInfo!,
|
|
unspentCoinsInfo: unspentCoinsInfoSource,
|
|
password: credentials.password!);
|
|
await wallet.init();
|
|
|
|
return wallet;
|
|
} catch (e) {
|
|
// TODO: Implement Exception for wallet list service.
|
|
print('MoneroWalletsManager Error: ${e.toString()}');
|
|
rethrow;
|
|
}
|
|
}
|
|
|
|
@override
|
|
Future<bool> isWalletExit(String name) async {
|
|
try {
|
|
final path = await pathForWallet(name: name, type: getType());
|
|
return monero_wallet_manager.isWalletExist(path: path);
|
|
} catch (e) {
|
|
// TODO: Implement Exception for wallet list service.
|
|
print('MoneroWalletsManager Error: $e');
|
|
rethrow;
|
|
}
|
|
}
|
|
|
|
@override
|
|
Future<MoneroWallet> openWallet(String name, String password) async {
|
|
try {
|
|
final path = await pathForWallet(name: name, type: getType());
|
|
|
|
if (walletFilesExist(path)) {
|
|
await repairOldAndroidWallet(name);
|
|
}
|
|
|
|
await monero_wallet_manager
|
|
.openWalletAsync({'path': path, 'password': password});
|
|
final walletInfo = walletInfoSource.values.firstWhere(
|
|
(info) => info.id == WalletBase.idFor(name, getType()));
|
|
final wallet = MoneroWallet(
|
|
walletInfo: walletInfo,
|
|
unspentCoinsInfo: unspentCoinsInfoSource,
|
|
password: password);
|
|
final isValid = wallet.walletAddresses.validate();
|
|
|
|
if (!isValid) {
|
|
await restoreOrResetWalletFiles(name);
|
|
wallet.close();
|
|
return openWallet(name, password);
|
|
}
|
|
|
|
await wallet.init();
|
|
|
|
return wallet;
|
|
} catch (e) {
|
|
// TODO: Implement Exception for wallet list service.
|
|
|
|
final bool isBadAlloc = e.toString().contains('bad_alloc') ||
|
|
(e is WalletOpeningException &&
|
|
(e.message == 'std::bad_alloc' || e.message.contains('bad_alloc')));
|
|
|
|
final bool doesNotCorrespond = e.toString().contains('does not correspond') ||
|
|
(e is WalletOpeningException && e.message.contains('does not correspond'));
|
|
|
|
final bool isMissingCacheFilesIOS = e.toString().contains('basic_string') ||
|
|
(e is WalletOpeningException && e.message.contains('basic_string'));
|
|
|
|
final bool isMissingCacheFilesAndroid = e.toString().contains('input_stream') ||
|
|
(e is WalletOpeningException && e.message.contains('input_stream'));
|
|
|
|
if (isBadAlloc || doesNotCorrespond || isMissingCacheFilesIOS || isMissingCacheFilesAndroid) {
|
|
await restoreOrResetWalletFiles(name);
|
|
return openWallet(name, password);
|
|
}
|
|
|
|
rethrow;
|
|
}
|
|
}
|
|
|
|
@override
|
|
Future<void> remove(String wallet) async {
|
|
final path = await pathForWalletDir(name: wallet, type: getType());
|
|
final file = Directory(path);
|
|
final isExist = file.existsSync();
|
|
|
|
if (isExist) {
|
|
await file.delete(recursive: true);
|
|
}
|
|
|
|
final walletInfo = walletInfoSource.values
|
|
.firstWhere((info) => info.id == WalletBase.idFor(wallet, getType()));
|
|
await walletInfoSource.delete(walletInfo.key);
|
|
}
|
|
|
|
@override
|
|
Future<void> rename(
|
|
String currentName, String password, String newName) async {
|
|
final currentWalletInfo = walletInfoSource.values.firstWhere(
|
|
(info) => info.id == WalletBase.idFor(currentName, getType()));
|
|
final currentWallet =
|
|
MoneroWallet(walletInfo: currentWalletInfo, unspentCoinsInfo: unspentCoinsInfoSource, password: password);
|
|
|
|
await currentWallet.renameWalletFiles(newName);
|
|
|
|
final newWalletInfo = currentWalletInfo;
|
|
newWalletInfo.id = WalletBase.idFor(newName, getType());
|
|
newWalletInfo.name = newName;
|
|
|
|
await walletInfoSource.put(currentWalletInfo.key, newWalletInfo);
|
|
}
|
|
|
|
@override
|
|
Future<MoneroWallet> restoreFromKeys(
|
|
MoneroRestoreWalletFromKeysCredentials credentials) async {
|
|
try {
|
|
final path = await pathForWallet(name: credentials.name, type: getType());
|
|
await monero_wallet_manager.restoreFromKeys(
|
|
path: path,
|
|
password: credentials.password!,
|
|
language: credentials.language,
|
|
restoreHeight: credentials.height!,
|
|
address: credentials.address,
|
|
viewKey: credentials.viewKey,
|
|
spendKey: credentials.spendKey);
|
|
final wallet = MoneroWallet(
|
|
walletInfo: credentials.walletInfo
|
|
unspentCoinsInfo: unspentCoinsInfoSource,
|
|
password: credentials.password!);
|
|
await wallet.init();
|
|
|
|
return wallet;
|
|
} catch (e) {
|
|
// TODO: Implement Exception for wallet list service.
|
|
print('MoneroWalletsManager Error: $e');
|
|
rethrow;
|
|
}
|
|
}
|
|
|
|
@override
|
|
Future<MoneroWallet> restoreFromSeed(
|
|
MoneroRestoreWalletFromSeedCredentials credentials) async {
|
|
try {
|
|
final path = await pathForWallet(name: credentials.name, type: getType());
|
|
await monero_wallet_manager.restoreFromSeed(
|
|
path: path,
|
|
password: credentials.password!,
|
|
seed: credentials.mnemonic,
|
|
restoreHeight: credentials.height!);
|
|
final wallet = MoneroWallet(
|
|
walletInfo: credentials.walletInfo!,
|
|
unspentCoinsInfo: unspentCoinsInfoSource,
|
|
password: credentials.password!);
|
|
await wallet.init();
|
|
|
|
return wallet;
|
|
} catch (e) {
|
|
// TODO: Implement Exception for wallet list service.
|
|
print('MoneroWalletsManager Error: $e');
|
|
rethrow;
|
|
}
|
|
}
|
|
|
|
Future<void> repairOldAndroidWallet(String name) async {
|
|
try {
|
|
if (!Platform.isAndroid) {
|
|
return;
|
|
}
|
|
|
|
final oldAndroidWalletDirPath =
|
|
await outdatedAndroidPathForWalletDir(name: name);
|
|
final dir = Directory(oldAndroidWalletDirPath);
|
|
|
|
if (!dir.existsSync()) {
|
|
return;
|
|
}
|
|
|
|
final newWalletDirPath =
|
|
await pathForWalletDir(name: name, type: getType());
|
|
|
|
dir.listSync().forEach((f) {
|
|
final file = File(f.path);
|
|
final name = f.path.split('/').last;
|
|
final newPath = newWalletDirPath + '/$name';
|
|
final newFile = File(newPath);
|
|
|
|
if (!newFile.existsSync()) {
|
|
newFile.createSync();
|
|
}
|
|
newFile.writeAsBytesSync(file.readAsBytesSync());
|
|
});
|
|
} catch (e) {
|
|
print(e.toString());
|
|
}
|
|
}
|
|
}
|