2024-03-26 10:37:52 +00:00
|
|
|
import 'dart:async';
|
2023-11-17 22:15:15 +00:00
|
|
|
import 'dart:io';
|
|
|
|
|
2024-03-26 10:37:52 +00:00
|
|
|
import 'package:cake_wallet/core/secure_storage.dart';
|
2023-05-17 14:43:23 +00:00
|
|
|
import 'package:cake_wallet/core/totp_request_details.dart';
|
2023-04-20 00:54:25 +00:00
|
|
|
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
|
|
|
|
2023-05-17 14:43:23 +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
|
|
|
|
2023-04-20 00:54:25 +00:00
|
|
|
static const List<String> _alwaysAuthenticateRoutes = [
|
|
|
|
Routes.showKeys,
|
|
|
|
Routes.backup,
|
|
|
|
Routes.setupPin,
|
2023-05-17 14:43:23 +00:00
|
|
|
Routes.setup_2faPage,
|
|
|
|
Routes.modify2FAPage,
|
2023-08-04 13:49:26 +00:00
|
|
|
Routes.newWallet,
|
|
|
|
Routes.newWalletType,
|
|
|
|
Routes.addressBookAddContact,
|
|
|
|
Routes.restoreOptions,
|
2023-04-20 00:54:25 +00:00
|
|
|
];
|
|
|
|
|
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);
|
2023-11-15 17:31:25 +00:00
|
|
|
// secure storage has a weird bug on macOS, where overwriting a key doesn't work, unless
|
|
|
|
// we delete what's there first:
|
2023-11-17 22:15:15 +00:00
|
|
|
if (Platform.isMacOS) {
|
|
|
|
await secureStorage.delete(key: key);
|
|
|
|
}
|
2020-06-20 07:10:00 +00:00
|
|
|
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);
|
2024-03-26 10:37:52 +00:00
|
|
|
final encodedPin = await readSecureStorage(secureStorage, 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;
|
2024-01-23 00:30:16 +00:00
|
|
|
secureStorage.write(key: SecureKey.lastAuthTimeMilliseconds, value: timestamp.toString());
|
2022-11-22 20:52:28 +00:00
|
|
|
}
|
|
|
|
|
2024-01-23 00:30:16 +00:00
|
|
|
Future<bool> requireAuth() async {
|
2024-03-26 10:37:52 +00:00
|
|
|
final timestamp =
|
|
|
|
int.tryParse(await secureStorage.read(key: SecureKey.lastAuthTimeMilliseconds) ?? '0');
|
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
|
|
|
}
|
2023-04-20 00:54:25 +00:00
|
|
|
|
|
|
|
Future<void> authenticateAction(BuildContext context,
|
2023-08-04 13:49:26 +00:00
|
|
|
{Function(bool)? onAuthSuccess,
|
|
|
|
String? route,
|
|
|
|
Object? arguments,
|
|
|
|
required bool conditionToDetermineIfToUse2FA}) async {
|
2023-04-20 00:54:25 +00:00
|
|
|
assert(route != null || onAuthSuccess != null,
|
|
|
|
'Either route or onAuthSuccess param must be passed.');
|
2023-05-17 14:43:23 +00:00
|
|
|
|
2023-08-04 13:49:26 +00:00
|
|
|
if (!conditionToDetermineIfToUse2FA) {
|
2024-01-23 00:30:16 +00:00
|
|
|
if (!(await requireAuth()) && !_alwaysAuthenticateRoutes.contains(route)) {
|
2023-08-04 13:49:26 +00:00
|
|
|
if (onAuthSuccess != null) {
|
|
|
|
onAuthSuccess(true);
|
|
|
|
} else {
|
|
|
|
Navigator.of(context).pushNamed(
|
|
|
|
route ?? '',
|
|
|
|
arguments: arguments,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return;
|
2023-04-20 00:54:25 +00:00
|
|
|
}
|
2023-11-15 17:31:25 +00:00
|
|
|
}
|
2023-05-17 14:43:23 +00:00
|
|
|
|
2023-04-20 00:54:25 +00:00
|
|
|
Navigator.of(context).pushNamed(Routes.auth,
|
|
|
|
arguments: (bool isAuthenticatedSuccessfully, AuthPageState auth) async {
|
|
|
|
if (!isAuthenticatedSuccessfully) {
|
|
|
|
onAuthSuccess?.call(false);
|
|
|
|
return;
|
|
|
|
} else {
|
2023-08-04 13:49:26 +00:00
|
|
|
if (settingsStore.useTOTP2FA && conditionToDetermineIfToUse2FA) {
|
2023-05-17 14:43:23 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
2023-04-20 00:54:25 +00:00
|
|
|
}
|
2023-11-15 17:31:25 +00:00
|
|
|
});
|
2023-04-20 00:54:25 +00:00
|
|
|
}
|
2020-06-01 18:13:56 +00:00
|
|
|
}
|