mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-06-28 12:29:51 +00:00
* build: bump ledger_flutter_plus dependencies * fix: handle connection errors occurring during connecting to a ledger device * fix: enhance ledger error handling and improve wallet connection reliability * fix: enhance ledger error handling and improve wallet connection reliability * feat: add localized strings for "Try again" and update Ledger error handling on auth * fix: handle rethrow behavior in onAuthenticationStateChange * fix: improve Ledger error handling and refine error code interpretation * fix: refine Ledger error code interpretation and enhance error handling [skip-ci] * add missing ledger error codes --------- Co-authored-by: Omar Hatem <omarh.ismail1@gmail.com>
131 lines
5.3 KiB
Dart
131 lines
5.3 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:cake_wallet/di.dart';
|
|
import 'package:cake_wallet/entities/hardware_wallet/require_hardware_wallet_connection.dart';
|
|
import 'package:cake_wallet/entities/load_current_wallet.dart';
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
|
import 'package:cake_wallet/monero/monero.dart';
|
|
import 'package:cake_wallet/routes.dart';
|
|
import 'package:cake_wallet/src/screens/connect_device/connect_device_page.dart';
|
|
import 'package:cake_wallet/src/screens/wallet_connect/services/bottom_sheet_service.dart';
|
|
import 'package:cake_wallet/src/widgets/alert_with_one_action.dart';
|
|
import 'package:cake_wallet/src/widgets/alert_with_two_actions.dart';
|
|
import 'package:cake_wallet/store/authentication_store.dart';
|
|
import 'package:cake_wallet/store/settings_store.dart';
|
|
import 'package:cake_wallet/utils/exception_handler.dart';
|
|
import 'package:cake_wallet/utils/show_pop_up.dart';
|
|
import 'package:cw_core/wallet_type.dart';
|
|
import 'package:flutter/widgets.dart';
|
|
import 'package:mobx/mobx.dart';
|
|
import 'package:rxdart/subjects.dart';
|
|
|
|
ReactionDisposer? _onAuthenticationStateChange;
|
|
|
|
dynamic loginError;
|
|
StreamController<dynamic> authenticatedErrorStreamController =
|
|
BehaviorSubject<dynamic>();
|
|
|
|
void startAuthenticationStateChange(
|
|
AuthenticationStore authenticationStore,
|
|
GlobalKey<NavigatorState> navigatorKey,
|
|
) {
|
|
authenticatedErrorStreamController.stream.listen((event) {
|
|
if (authenticationStore.state == AuthenticationState.allowed) {
|
|
ExceptionHandler.showError(event.toString(), delayInSeconds: 3);
|
|
}
|
|
});
|
|
|
|
_onAuthenticationStateChange ??= autorun((_) async {
|
|
final state = authenticationStore.state;
|
|
|
|
if (state == AuthenticationState.installed &&
|
|
!SettingsStoreBase.walletPasswordDirectInput) {
|
|
try {
|
|
if (!requireHardwareWalletConnection()) await loadCurrentWallet();
|
|
} catch (error, stack) {
|
|
loginError = error;
|
|
await ExceptionHandler.resetLastPopupDate();
|
|
await ExceptionHandler.onError(
|
|
FlutterErrorDetails(exception: error, stack: stack));
|
|
}
|
|
return;
|
|
}
|
|
|
|
if ([AuthenticationState.allowed, AuthenticationState.allowedCreate]
|
|
.contains(state)) {
|
|
if (state == AuthenticationState.allowed &&
|
|
requireHardwareWalletConnection()) {
|
|
await navigatorKey.currentState!.pushNamedAndRemoveUntil(
|
|
Routes.connectDevices,
|
|
(route) => false,
|
|
arguments: ConnectDevicePageParams(
|
|
walletType: WalletType.monero,
|
|
onConnectDevice: (context, ledgerVM) async {
|
|
monero!.setGlobalLedgerConnection(ledgerVM.connection);
|
|
showPopUp<void>(
|
|
context: context,
|
|
builder: (context) => AlertWithOneAction(
|
|
alertTitle: S.of(context).proceed_on_device,
|
|
alertContent: S.of(context).proceed_on_device_description,
|
|
buttonText: S.of(context).cancel,
|
|
alertBarrierDismissible: false,
|
|
buttonAction: () => Navigator.of(context).pop(),
|
|
),
|
|
);
|
|
bool tryOpening = true;
|
|
while (tryOpening) {
|
|
try {
|
|
await loadCurrentWallet();
|
|
tryOpening = false;
|
|
} on Exception catch (e) {
|
|
final errorCode = RegExp(r'0x\S*?(?= )').firstMatch(
|
|
e.toString());
|
|
|
|
final errorMessage = ledgerVM.interpretErrorCode(
|
|
errorCode?.group(0).toString().replaceAll("0x", "") ??
|
|
"");
|
|
if (errorMessage != null) {
|
|
await showPopUp<void>(
|
|
context: context,
|
|
builder: (context) => AlertWithTwoActions(
|
|
alertTitle: "Ledger Error",
|
|
alertContent: errorMessage,
|
|
leftButtonText: S.of(context).try_again,
|
|
alertBarrierDismissible: false,
|
|
actionLeftButton: () => Navigator.of(context).pop(),
|
|
rightButtonText: S.of(context).cancel,
|
|
actionRightButton: () {
|
|
tryOpening = false;
|
|
Navigator.of(context).pop();
|
|
},
|
|
),
|
|
);
|
|
} else {
|
|
tryOpening = false;
|
|
rethrow;
|
|
}
|
|
}
|
|
}
|
|
|
|
getIt.get<BottomSheetService>().showNext();
|
|
await navigatorKey.currentState!
|
|
.pushNamedAndRemoveUntil(Routes.dashboard, (route) => false);
|
|
},
|
|
allowChangeWallet: true,
|
|
),
|
|
);
|
|
|
|
// await navigatorKey.currentState!.pushNamedAndRemoveUntil(Routes.connectDevices, (route) => false, arguments: ConnectDevicePageParams(walletType: walletType, onConnectDevice: onConnectDevice));
|
|
} else {
|
|
await navigatorKey.currentState!
|
|
.pushNamedAndRemoveUntil(Routes.dashboard, (route) => false);
|
|
}
|
|
if (!(await authenticatedErrorStreamController.stream.isEmpty)) {
|
|
await ExceptionHandler.showError(
|
|
(await authenticatedErrorStreamController.stream.first).toString());
|
|
authenticatedErrorStreamController.stream.drain();
|
|
}
|
|
return;
|
|
}
|
|
});
|
|
}
|