mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-16 17:27:37 +00:00
5e944a8bf7
Some checks are pending
Cache Dependencies / test (push) Waiting to run
* add litecoin nodes minor ui fix * Try to open the wallet or fetch the seeds and show them to the user * make sure the seeds are only displayed after authentication
64 lines
2.1 KiB
Dart
64 lines
2.1 KiB
Dart
import 'dart:convert';
|
|
import 'dart:io';
|
|
|
|
import 'package:cw_core/pathForWallet.dart';
|
|
import 'package:cw_core/utils/file.dart';
|
|
import 'package:cw_core/wallet_base.dart';
|
|
import 'package:cw_core/wallet_credentials.dart';
|
|
import 'package:cw_core/wallet_type.dart';
|
|
|
|
abstract class WalletService<N extends WalletCredentials, RFS extends WalletCredentials,
|
|
RFK extends WalletCredentials, RFH extends WalletCredentials> {
|
|
WalletType getType();
|
|
|
|
Future<WalletBase> create(N credentials, {bool? isTestnet});
|
|
|
|
Future<WalletBase> restoreFromHardwareWallet(RFH credentials);
|
|
|
|
Future<WalletBase> restoreFromSeed(RFS credentials, {bool? isTestnet});
|
|
|
|
Future<WalletBase> restoreFromKeys(RFK credentials, {bool? isTestnet});
|
|
|
|
Future<WalletBase> openWallet(String name, String password);
|
|
|
|
Future<bool> isWalletExit(String name);
|
|
|
|
Future<void> remove(String wallet);
|
|
|
|
Future<void> rename(String currentName, String password, String newName);
|
|
|
|
Future<void> restoreWalletFilesFromBackup(String name) async {
|
|
final backupWalletDirPath = await pathForWalletDir(name: "$name.backup", type: getType());
|
|
final walletDirPath = await pathForWalletDir(name: name, type: getType());
|
|
|
|
if (File(backupWalletDirPath).existsSync()) {
|
|
await File(backupWalletDirPath).copy(walletDirPath);
|
|
}
|
|
}
|
|
|
|
Future<void> saveBackup(String name) async {
|
|
final backupWalletDirPath = await pathForWalletDir(name: "$name.backup", type: getType());
|
|
final walletDirPath = await pathForWalletDir(name: name, type: getType());
|
|
|
|
if (File(walletDirPath).existsSync()) {
|
|
await File(walletDirPath).copy(backupWalletDirPath);
|
|
}
|
|
}
|
|
|
|
Future<String> getSeeds(String name, String password, WalletType type) async {
|
|
try {
|
|
final path = await pathForWallet(name: name, type: type);
|
|
final jsonSource = await read(path: path, password: password);
|
|
try {
|
|
final data = json.decode(jsonSource) as Map;
|
|
return data['mnemonic'] as String? ?? '';
|
|
} catch (_) {
|
|
// if not a valid json
|
|
return jsonSource.substring(0, 200);
|
|
}
|
|
} catch (_) {
|
|
// if the file couldn't be opened or read
|
|
return '';
|
|
}
|
|
}
|
|
}
|