import 'package:cake_wallet/di.dart'; import 'package:cw_core/wallet_info.dart'; import 'package:flutter/foundation.dart'; import 'package:flutter_secure_storage/flutter_secure_storage.dart'; import 'package:hive/hive.dart'; import 'package:shared_preferences/shared_preferences.dart'; import 'package:cake_wallet/core/key_service.dart'; import 'package:cw_core/wallet_base.dart'; import 'package:cake_wallet/core/generate_wallet_password.dart'; import 'package:cw_core/wallet_credentials.dart'; import 'package:cw_core/wallet_service.dart'; import 'package:cw_core/wallet_type.dart'; class WalletCreationService { WalletCreationService( {WalletType initialType, this.secureStorage, this.keyService, this.sharedPreferences, this.walletInfoSource}) : type = initialType { if (type != null) { changeWalletType(type: type); } } WalletType type; final FlutterSecureStorage secureStorage; final SharedPreferences sharedPreferences; final KeyService keyService; final Box walletInfoSource; WalletService _service; void changeWalletType({@required WalletType type}) { this.type = type; _service = getIt.get(param1: type); } bool exists(String name) { final walletName = name.toLowerCase(); return walletInfoSource .values .any((walletInfo) => walletInfo.name.toLowerCase() == walletName); } void checkIfExists(String name) { if (exists(name)) { throw Exception('Wallet with name ${name} already exists!'); } } Future create(WalletCredentials credentials) async { checkIfExists(credentials.name); final password = generateWalletPassword(type); credentials.password = password; await keyService.saveWalletPassword( password: password, walletName: credentials.name); return await _service.create(credentials); } Future restoreFromKeys(WalletCredentials credentials) async { checkIfExists(credentials.name); final password = generateWalletPassword(type); credentials.password = password; await keyService.saveWalletPassword( password: password, walletName: credentials.name); return await _service.restoreFromKeys(credentials); } Future restoreFromSeed(WalletCredentials credentials) async { checkIfExists(credentials.name); final password = generateWalletPassword(type); credentials.password = password; await keyService.saveWalletPassword( password: password, walletName: credentials.name); return await _service.restoreFromSeed(credentials); } }