2020-06-01 18:13:56 +00:00
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
import 'package:mobx/mobx.dart';
|
2020-06-20 07:10:00 +00:00
|
|
|
import 'package:flutter_secure_storage/flutter_secure_storage.dart';
|
|
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
|
|
import 'package:cake_wallet/src/domain/common/secret_store_key.dart';
|
|
|
|
import 'package:cake_wallet/src/domain/common/encrypt.dart';
|
2020-06-01 18:13:56 +00:00
|
|
|
|
2020-06-20 07:10:00 +00:00
|
|
|
class AuthService with Store {
|
|
|
|
AuthService({this.secureStorage, this.sharedPreferences});
|
2020-06-01 18:13:56 +00:00
|
|
|
|
2020-06-20 07:10:00 +00:00
|
|
|
final FlutterSecureStorage secureStorage;
|
|
|
|
final SharedPreferences sharedPreferences;
|
2020-06-01 18:13:56 +00:00
|
|
|
|
2020-06-20 07:10:00 +00:00
|
|
|
Future setPassword(String password) async {
|
|
|
|
final key = generateStoreKeyFor(key: SecretStoreKey.pinCodePassword);
|
|
|
|
final encodedPassword = encodedPinCode(pin: password);
|
|
|
|
await secureStorage.write(key: key, value: encodedPassword);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<bool> canAuthenticate() async {
|
|
|
|
final key = generateStoreKeyFor(key: SecretStoreKey.pinCodePassword);
|
|
|
|
final walletName = sharedPreferences.getString('current_wallet_name') ?? '';
|
|
|
|
var password = '';
|
2020-06-01 18:13:56 +00:00
|
|
|
|
2020-06-20 07:10:00 +00:00
|
|
|
try {
|
|
|
|
password = await secureStorage.read(key: key);
|
|
|
|
} catch (e) {
|
|
|
|
print(e);
|
|
|
|
}
|
2020-06-01 18:13:56 +00:00
|
|
|
|
2020-06-20 07:10:00 +00:00
|
|
|
return walletName.isNotEmpty && password.isNotEmpty;
|
2020-06-01 18:13:56 +00:00
|
|
|
}
|
|
|
|
|
2020-06-20 07:10:00 +00:00
|
|
|
Future<bool> authenticate(String pin) async {
|
|
|
|
final key = generateStoreKeyFor(key: SecretStoreKey.pinCodePassword);
|
|
|
|
final encodedPin = await secureStorage.read(key: key);
|
|
|
|
final decodedPin = decodedPinCode(pin: encodedPin);
|
|
|
|
|
|
|
|
return decodedPin == pin;
|
|
|
|
}
|
2020-06-01 18:13:56 +00:00
|
|
|
}
|