cake_wallet/lib/core/auth_service.dart

148 lines
4.7 KiB
Dart
Raw Normal View History

import 'package:cake_wallet/core/totp_request_details.dart';
import 'package:cake_wallet/routes.dart';
import 'package:cake_wallet/src/screens/auth/auth_page.dart';
import 'package:flutter/material.dart';
2020-06-01 18:13:56 +00:00
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';
2020-09-21 11:50:26 +00:00
import 'package:cake_wallet/entities/preferences_key.dart';
import 'package:cake_wallet/entities/secret_store_key.dart';
import 'package:cake_wallet/entities/encrypt.dart';
2022-11-22 20:52:28 +00:00
import 'package:cake_wallet/store/settings_store.dart';
2020-06-01 18:13:56 +00:00
import '../src/screens/setup_2fa/setup_2fa_enter_code_page.dart';
2020-06-20 07:10:00 +00:00
class AuthService with Store {
2022-12-13 15:19:31 +00:00
AuthService({
required this.secureStorage,
required this.sharedPreferences,
required this.settingsStore,
});
2020-06-01 18:13:56 +00:00
static const List<String> _alwaysAuthenticateRoutes = [
Routes.showKeys,
Routes.backup,
Routes.setupPin,
Routes.setup_2faPage,
Routes.modify2FAPage,
Routes.newWallet,
Routes.newWalletType,
Routes.addressBookAddContact,
Routes.restoreOptions,
];
2020-06-20 07:10:00 +00:00
final FlutterSecureStorage secureStorage;
final SharedPreferences sharedPreferences;
2022-12-13 15:19:31 +00:00
final SettingsStore settingsStore;
2020-06-01 18:13:56 +00:00
2022-10-12 17:09:57 +00:00
Future<void> setPassword(String password) async {
2020-06-20 07:10:00 +00:00
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);
2022-12-09 19:18:36 +00:00
final walletName = sharedPreferences.getString(PreferencesKey.currentWalletName) ?? '';
2020-06-20 07:10:00 +00:00
var password = '';
2020-06-01 18:13:56 +00:00
2020-06-20 07:10:00 +00:00
try {
2022-10-12 17:09:57 +00:00
password = await secureStorage.read(key: key) ?? '';
2020-06-20 07:10:00 +00:00
} 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);
2022-10-12 17:09:57 +00:00
final decodedPin = decodedPinCode(pin: encodedPin!);
2020-06-20 07:10:00 +00:00
return decodedPin == pin;
}
2022-11-22 20:52:28 +00:00
2022-12-09 16:08:52 +00:00
void saveLastAuthTime() {
2022-11-22 20:52:28 +00:00
int timestamp = DateTime.now().millisecondsSinceEpoch;
sharedPreferences.setInt(PreferencesKey.lastAuthTimeMilliseconds, timestamp);
}
2022-12-09 19:18:36 +00:00
bool requireAuth() {
2022-12-09 16:08:52 +00:00
final timestamp = sharedPreferences.getInt(PreferencesKey.lastAuthTimeMilliseconds);
2022-12-09 19:18:36 +00:00
final duration = _durationToRequireAuth(timestamp ?? 0);
2022-12-13 15:19:31 +00:00
final requiredPinInterval = settingsStore.pinTimeOutDuration;
2022-12-09 19:18:36 +00:00
2022-12-09 16:08:52 +00:00
return duration >= requiredPinInterval.value;
}
2022-11-22 20:52:28 +00:00
2022-12-09 16:08:52 +00:00
int _durationToRequireAuth(int timestamp) {
DateTime before = DateTime.fromMillisecondsSinceEpoch(timestamp);
DateTime now = DateTime.now();
Duration timeDifference = now.difference(before);
2022-11-22 20:52:28 +00:00
2022-12-09 19:18:36 +00:00
return timeDifference.inMinutes;
2022-11-22 20:52:28 +00:00
}
Future<void> authenticateAction(BuildContext context,
{Function(bool)? onAuthSuccess,
String? route,
Object? arguments,
required bool conditionToDetermineIfToUse2FA}) async {
assert(route != null || onAuthSuccess != null,
'Either route or onAuthSuccess param must be passed.');
if (!conditionToDetermineIfToUse2FA) {
if (!requireAuth() && !_alwaysAuthenticateRoutes.contains(route)) {
if (onAuthSuccess != null) {
onAuthSuccess(true);
} else {
Navigator.of(context).pushNamed(
route ?? '',
arguments: arguments,
);
}
return;
}
}
Navigator.of(context).pushNamed(Routes.auth,
arguments: (bool isAuthenticatedSuccessfully, AuthPageState auth) async {
if (!isAuthenticatedSuccessfully) {
onAuthSuccess?.call(false);
return;
} else {
if (settingsStore.useTOTP2FA && conditionToDetermineIfToUse2FA) {
auth.close(
route: Routes.totpAuthCodePage,
arguments: TotpAuthArgumentsModel(
isForSetup: !settingsStore.useTOTP2FA,
onTotpAuthenticationFinished:
(bool isAuthenticatedSuccessfully, TotpAuthCodePageState totpAuth) async {
if (!isAuthenticatedSuccessfully) {
onAuthSuccess?.call(false);
return;
}
if (onAuthSuccess != null) {
totpAuth.close().then((value) => onAuthSuccess.call(true));
} else {
totpAuth.close(route: route, arguments: arguments);
}
},
),
);
} else {
if (onAuthSuccess != null) {
auth.close().then((value) => onAuthSuccess.call(true));
} else {
auth.close(route: route, arguments: arguments);
}
}
}
});
}
2020-06-01 18:13:56 +00:00
}