using System; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; using Serilog; using TINK.Model.Bikes.BikeInfoNS.BluetoothLock; using TINK.Model.Connector; using TINK.Model.Device; using TINK.Model.User; using TINK.MultilingualResources; using TINK.Repository.Exception; using TINK.Services.BluetoothLock; using TINK.Services.BluetoothLock.Exception; using TINK.Services.Geolocation; using TINK.View; using static TINK.Model.Bikes.BikeInfoNS.BluetoothLock.Command.CloseCommand; using static TINK.ViewModel.Bikes.Bike.BluetoothLock.RequestHandlerFactory; namespace TINK.ViewModel.Bikes.Bike.BluetoothLock.RequestHandler { public class BookedUnknown : Base, IRequestHandler { /// Provides info about the smart device (phone, tablet, ...). /// View model to be used for progress report and unlocking/ locking view. public BookedUnknown( IBikeInfoMutable selectedBike, Func isConnectedDelegate, Func connectorFactory, IGeolocationService geolocation, ILocksService lockService, Func viewUpdateManager, ISmartDevice smartDevice, IViewService viewService, IBikesViewModel bikesViewModel, IUser activeUser) : base( selectedBike, AppResources.ActionOpenLock, // Open Lock true, // Show button "Open Lock" isConnectedDelegate, connectorFactory, geolocation, lockService, viewUpdateManager, smartDevice, viewService, bikesViewModel, activeUser) { LockitButtonText = AppResources.ActionCloseLock; // Close Lock IsLockitButtonVisible = true; // Show button "Close Lock" _closeLockActionViewModel = new CloseLockActionViewModel( selectedBike, viewUpdateManager, viewService, bikesViewModel); } /// /// Holds the view model for close action. /// private CloseLockActionViewModel _closeLockActionViewModel; /// Open bike and update COPRI lock state. public async Task HandleRequestOption1() => await OpenLock(); /// Close lock in order to pause ride and update COPRI lock state. public async Task HandleRequestOption2() { await _closeLockActionViewModel.CloseLockAsync(); if (_closeLockActionViewModel.IsEndRentalRequested == false) { return Create( SelectedBike, IsConnectedDelegate, ConnectorFactory, GeolocationService, LockService, ViewUpdateManager, SmartDevice, ViewService, BikesViewModel, ActiveUser); } var _endRentalActionViewModel = new EndRentalActionViewModel( SelectedBike, IsConnectedDelegate, ConnectorFactory, LockService, ViewUpdateManager, ViewService, BikesViewModel); await _endRentalActionViewModel.EndRentalAsync(); return Create( SelectedBike, IsConnectedDelegate, ConnectorFactory, GeolocationService, LockService, ViewUpdateManager, SmartDevice, ViewService, BikesViewModel, ActiveUser); } /// Open bike and update COPRI lock state. public async Task OpenLock() { Log.ForContext().Information("User request to unlock bike {bikeId}.", SelectedBike.Id); // Stop polling before returning bike. BikesViewModel.IsIdle = false; BikesViewModel.ActionText = AppResources.ActivityTextOneMomentPlease; await ViewUpdateManager().StopAsync(); // open lock BikesViewModel.ActionText = AppResources.ActivityTextOpeningLock; ILockService btLock = LockService[SelectedBike.LockInfo.Id]; try { SelectedBike.LockInfo.State = (await LockService[SelectedBike.LockInfo.Id].OpenAsync())?.GetLockingState() ?? LockingState.UnknownDisconnected; Log.ForContext().Information("Lock from {bikeId} opened successfully.", SelectedBike.Id); } catch (Exception exception) { BikesViewModel.ActionText = string.Empty; Log.ForContext().Information("Lock from {bikeId} can not be opened.", SelectedBike.Id); if (exception is OutOfReachException) { Log.ForContext().Debug("Lock is out of reach"); await ViewService.DisplayAlert( AppResources.ErrorOpenLockTitle, AppResources.ErrorLockOutOfReach, AppResources.MessageAnswerOk); } else if (exception is CouldntOpenBoldIsBlockedException) { Log.ForContext().Debug("Bold is blocked."); await ViewService.DisplayAlert( AppResources.ErrorOpenLockTitle, AppResources.ErrorOpenLockBoldBlocked, AppResources.MessageAnswerOk); } else if (exception is CouldntOpenBoldStatusIsUnknownException) { Log.ForContext().Debug("Bold status is unknown."); await ViewService.DisplayAlert( AppResources.ErrorOpenLockTitle, AppResources.ErrorOpenLockStatusUnknown, AppResources.MessageAnswerOk); } else if (exception is CouldntOpenInconsistentStateExecption inconsistentState && inconsistentState.State == LockingState.Closed) { Log.ForContext().Debug("Lock reports that it is still closed."); await ViewService.DisplayAlert( AppResources.ErrorOpenLockTitle, AppResources.ErrorOpenLockStillClosed, AppResources.MessageAnswerOk); } else { Log.ForContext().Error("{@exception}", exception); await ViewService.DisplayAdvancedAlert( AppResources.ErrorOpenLockTitle, exception.Message, AppResources.ErrorTryAgain, AppResources.MessageAnswerOk); } // When bold is blocked lock is still closed even if exception occurs. // In all other cases state is supposed to be unknown. Example: Lock is out of reach and no more bluetooth connected. SelectedBike.LockInfo.State = exception is StateAwareException stateAwareException ? stateAwareException.State : LockingState.UnknownDisconnected; } // get current charging level BikesViewModel.ActionText = AppResources.ActivityTextReadingChargingLevel; try { SelectedBike.LockInfo.BatteryPercentage = await btLock.GetBatteryPercentageAsync(); Log.ForContext().Information("Battery state of lock from {bikeId} read successfully.", SelectedBike.Id); } catch (Exception exception) { Log.ForContext().Information("Battery state of lock from {bikeId} can not be read.", SelectedBike.Id); if (exception is OutOfReachException) { Log.ForContext().Debug("Lock is out of reach."); BikesViewModel.ActionText = AppResources.ActivityTextErrorReadingChargingLevelOutOfReach; } else { Log.ForContext().Debug("{@exception}", exception); BikesViewModel.ActionText = AppResources.ActivityTextErrorReadingChargingLevelGeneral; } } // Get lock infos. BikesViewModel.ActionText = AppResources.ActivityTextStartingUpdatingLockingState; var versionTdo = btLock.VersionInfo; if (versionTdo != null) { SelectedBike.LockInfo.VersionInfo = new VersionInfo.Builder { FirmwareVersion = versionTdo.FirmwareVersion, HardwareVersion = versionTdo.HardwareVersion, LockVersion = versionTdo.LockVersion, }.Build(); } // update backend IsConnected = IsConnectedDelegate(); try { await ConnectorFactory(IsConnected).Command.UpdateLockingStateAsync(SelectedBike); Log.ForContext().Information("Backend updated for bike {bikeId} successfully.", SelectedBike.Id); } catch (Exception exception) { Log.ForContext().Information("Updating backend for bike {bikeId} failed.", SelectedBike.Id); if (exception is WebConnectFailureException) { // No web. Log.ForContext().Information("Copri server not reachable. No web."); BikesViewModel.ActionText = AppResources.ActivityTextErrorNoWebUpdateingLockstate; } else if (exception is ResponseException copriException) { // Copri exception. Log.ForContext().Information("{response}", copriException.Response); BikesViewModel.ActionText = AppResources.ActivityTextErrorStatusUpdateingLockstate; } else { Log.ForContext().Error("{@exception}", exception); BikesViewModel.ActionText = AppResources.ActivityTextErrorConnectionUpdateingLockstate; } } BikesViewModel.ActionText = AppResources.ActivityTextStartingUpdater; await ViewUpdateManager().StartAsync(); BikesViewModel.ActionText = string.Empty; BikesViewModel.IsIdle = true; return RequestHandlerFactory.Create(SelectedBike, IsConnectedDelegate, ConnectorFactory, GeolocationService, LockService, ViewUpdateManager, SmartDevice, ViewService, BikesViewModel, ActiveUser); } /// /// Processes the close lock progress. /// /// /// Only used for testing. /// /// Current step to process. public void ReportStep(Step step) => _closeLockActionViewModel?.ReportStep(step); /// /// Processes the close lock state. /// /// /// Only used for testing. /// /// State to process. /// Textual details describing current state. public async Task ReportStateAsync(State state, string details) => await _closeLockActionViewModel.ReportStateAsync(state, details); } }