sharee.bike-App/TINKLib/ViewModel/Bikes/Bike/BluetoothLock/RequestHandler/BookedClosed.cs

249 lines
8.8 KiB
C#
Raw Normal View History

2022-09-16 11:19:46 +02:00
using System;
2021-05-13 20:03:07 +02:00
using System.Threading.Tasks;
using Serilog;
2022-08-30 15:42:25 +02:00
using TINK.Model.Bikes.BikeInfoNS.BluetoothLock;
using TINK.Model.Connector;
using TINK.Model.Device;
using TINK.Model.User;
using TINK.MultilingualResources;
2021-06-26 20:57:55 +02:00
using TINK.Repository.Exception;
2022-08-30 15:42:25 +02:00
using TINK.Services.BluetoothLock;
2021-05-13 20:03:07 +02:00
using TINK.Services.BluetoothLock.Exception;
2022-08-30 15:42:25 +02:00
using TINK.Services.Geolocation;
using TINK.View;
2023-08-31 12:20:06 +02:00
using static TINK.Model.Bikes.BikeInfoNS.BluetoothLock.Command.GetLockedLocationCommand;
using static TINK.ViewModel.Bikes.Bike.BluetoothLock.RequestHandlerFactory;
2021-05-13 20:03:07 +02:00
namespace TINK.ViewModel.Bikes.Bike.BluetoothLock.RequestHandler
{
2023-08-31 12:20:06 +02:00
public class BookedClosed : Base, IRequestHandler, IGetLockedLocationCommandListener
2022-09-06 16:08:19 +02:00
{
/// <param name="smartDevice">Provides info about the smart device (phone, tablet, ...)</param>
/// <param name="bikesViewModel">View model to be used for progress report and unlocking/ locking view.</param>
public BookedClosed(
IBikeInfoMutable selectedBike,
Func<bool> isConnectedDelegate,
Func<bool, IConnector> connectorFactory,
2023-04-05 15:02:10 +02:00
IGeolocationService geolocation,
2022-09-06 16:08:19 +02:00
ILocksService lockService,
Func<IPollingUpdateTaskManager> viewUpdateManager,
ISmartDevice smartDevice,
IViewService viewService,
IBikesViewModel bikesViewModel,
IUser activeUser) : base(
selectedBike,
2023-11-06 12:23:09 +01:00
AppResources.ActionEndRental, // End Rental
true, // Show button "End Rental"
2022-09-06 16:08:19 +02:00
isConnectedDelegate,
connectorFactory,
geolocation,
lockService,
viewUpdateManager,
smartDevice,
viewService,
bikesViewModel,
activeUser)
{
2023-11-06 12:23:09 +01:00
LockitButtonText = AppResources.ActionOpenLock; // Open Lock
IsLockitButtonVisible = true; // Show button "Open Lock"
2022-09-06 16:08:19 +02:00
2023-08-31 12:20:06 +02:00
_endRentalActionViewModel = new EndRentalActionViewModel<BookedClosed>(
selectedBike,
isConnectedDelegate,
connectorFactory,
lockService,
viewUpdateManager,
viewService,
bikesViewModel);
}
2022-09-06 16:08:19 +02:00
2023-08-31 12:20:06 +02:00
/// <summary>
/// Holds the view model for end rental action.
/// </summary>
private EndRentalActionViewModel<BookedClosed> _endRentalActionViewModel;
2022-09-06 16:08:19 +02:00
/// <summary> Return bike. </summary>
2023-08-31 12:20:06 +02:00
public async Task<IRequestHandler> HandleRequestOption1()
2022-09-06 16:08:19 +02:00
{
2023-08-31 12:20:06 +02:00
await _endRentalActionViewModel.EndRentalAsync();
return Create(
SelectedBike,
IsConnectedDelegate,
ConnectorFactory,
GeolocationService,
LockService,
ViewUpdateManager,
SmartDevice,
ViewService,
BikesViewModel,
ActiveUser);
}
2022-09-06 16:08:19 +02:00
2023-08-31 12:20:06 +02:00
/// <summary> Open bike and update COPRI lock state. </summary>
public async Task<IRequestHandler> HandleRequestOption2() => await OpenLock();
2022-09-06 16:08:19 +02:00
2023-08-31 12:20:06 +02:00
/// <summary>
/// Processes the get lock location progress.
/// </summary>
/// <param name="step">Current step to process.</param>
public void ReportStep(Step step) => _endRentalActionViewModel.ReportStep(step);
2022-09-06 16:08:19 +02:00
2023-08-31 12:20:06 +02:00
/// <summary>
/// Processes the get lock location state.
/// </summary>
/// <param name="state">State to process.</param>
/// <param name="details">Textual details describing current state.</param>
public async Task ReportStateAsync(State state, string details) => await _endRentalActionViewModel.ReportStateAsync(state, details);
2022-09-06 16:08:19 +02:00
/// <summary> Open bike and update COPRI lock state. </summary>
public async Task<IRequestHandler> OpenLock()
{
2023-11-06 12:23:09 +01:00
Log.ForContext<BookedClosed>().Information("User request to unlock booked bike {bikeId}.", SelectedBike.Id);
2022-09-06 16:08:19 +02:00
// Stop polling before returning bike.
BikesViewModel.IsIdle = false;
BikesViewModel.ActionText = AppResources.ActivityTextOneMomentPlease;
2023-08-31 12:20:06 +02:00
await ViewUpdateManager().StopAsync();
2022-09-06 16:08:19 +02:00
2023-11-06 12:23:09 +01:00
// open lock
2022-09-06 16:08:19 +02:00
BikesViewModel.ActionText = AppResources.ActivityTextOpeningLock;
2023-11-06 12:23:09 +01:00
ILockService btLock = LockService[SelectedBike.LockInfo.Id];
2022-09-06 16:08:19 +02:00
try
{
2022-09-20 13:51:55 +02:00
SelectedBike.LockInfo.State = (await btLock.OpenAsync())?.GetLockingState() ?? LockingState.UnknownDisconnected;
2023-11-06 12:23:09 +01:00
Log.ForContext<BookedClosed>().Information("Lock of bike {bikeId} opened successfully.", SelectedBike.Id);
2022-09-06 16:08:19 +02:00
}
catch (Exception exception)
{
2023-11-06 12:23:09 +01:00
BikesViewModel.ActionText = string.Empty;
Log.ForContext<BookedClosed>().Information("Lock of bike {bikeId} can not be opened.", SelectedBike.Id);
2022-09-06 16:08:19 +02:00
if (exception is OutOfReachException)
{
2023-11-06 12:23:09 +01:00
Log.ForContext<BookedClosed>().Debug("Lock is out of reach.");
2022-09-06 16:08:19 +02:00
await ViewService.DisplayAlert(
AppResources.ErrorOpenLockTitle,
2023-08-31 12:20:06 +02:00
AppResources.ErrorLockOutOfReach,
2022-09-06 16:08:19 +02:00
AppResources.MessageAnswerOk);
}
else if (exception is CouldntOpenBoldIsBlockedException)
{
2023-11-06 12:23:09 +01:00
Log.ForContext<BookedClosed>().Debug("Bold is blocked.");
2022-09-06 16:08:19 +02:00
await ViewService.DisplayAlert(
AppResources.ErrorOpenLockTitle,
2023-08-31 12:20:06 +02:00
AppResources.ErrorOpenLockBoldBlocked,
2022-09-06 16:08:19 +02:00
AppResources.MessageAnswerOk);
}
2023-02-22 14:03:35 +01:00
else if (exception is CouldntOpenBoldStatusIsUnknownException)
2022-09-06 16:08:19 +02:00
{
2023-11-06 12:23:09 +01:00
Log.ForContext<BookedClosed>().Debug("Bold status is unknown.");
2022-09-06 16:08:19 +02:00
await ViewService.DisplayAlert(
2023-08-31 12:20:06 +02:00
AppResources.ErrorOpenLockTitle,
AppResources.ErrorOpenLockStatusUnknown,
AppResources.MessageAnswerOk);
2022-09-06 16:08:19 +02:00
}
else if (exception is CouldntOpenInconsistentStateExecption inconsistentState
&& inconsistentState.State == LockingState.Closed)
{
2023-11-06 12:23:09 +01:00
Log.ForContext<BookedClosed>().Debug("Lock reports that it is still closed.");
2022-09-06 16:08:19 +02:00
await ViewService.DisplayAlert(
AppResources.ErrorOpenLockTitle,
2023-08-31 12:20:06 +02:00
AppResources.ErrorOpenLockStillClosed,
AppResources.MessageAnswerOk);
2022-09-06 16:08:19 +02:00
}
else
{
2023-11-06 12:23:09 +01:00
Log.ForContext<BookedClosed>().Debug("{@exception}", exception);
2022-09-06 16:08:19 +02:00
2023-08-31 12:20:06 +02:00
await ViewService.DisplayAdvancedAlert(
2022-09-06 16:08:19 +02:00
AppResources.ErrorOpenLockTitle,
exception.Message,
2023-08-31 12:20:06 +02:00
AppResources.ErrorTryAgain,
AppResources.MessageAnswerOk);
2022-09-06 16:08:19 +02:00
}
2023-04-19 12:14:14 +02:00
// When bold is blocked lock is still closed even if exception occurs.
2022-09-06 16:08:19 +02:00
// 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;
}
2023-11-06 12:23:09 +01:00
// get current charging level
2022-09-06 16:08:19 +02:00
BikesViewModel.ActionText = AppResources.ActivityTextReadingChargingLevel;
try
{
2022-09-20 13:51:55 +02:00
SelectedBike.LockInfo.BatteryPercentage = await btLock.GetBatteryPercentageAsync();
2023-11-06 12:23:09 +01:00
Log.ForContext<ReservedClosed>().Information("Battery state of lock from {bikeId} read successfully.", SelectedBike.Id);
2022-09-06 16:08:19 +02:00
}
catch (Exception exception)
{
2023-11-06 12:23:09 +01:00
Log.ForContext<BookedClosed>().Information("Battery state of lock from {bikeId} can not be read. ", SelectedBike.Id);
2022-09-06 16:08:19 +02:00
if (exception is OutOfReachException)
{
2023-11-06 12:23:09 +01:00
Log.ForContext<BookedClosed>().Debug("Lock is out of reach.");
2022-09-06 16:08:19 +02:00
BikesViewModel.ActionText = AppResources.ActivityTextErrorReadingChargingLevelOutOfReach;
}
else
{
2023-11-06 12:23:09 +01:00
Log.ForContext<BookedClosed>().Debug("{@exception}", exception);
2022-09-06 16:08:19 +02:00
BikesViewModel.ActionText = AppResources.ActivityTextErrorReadingChargingLevelGeneral;
}
}
2023-11-06 12:23:09 +01:00
// get lock infos.
2022-09-06 16:08:19 +02:00
BikesViewModel.ActionText = AppResources.ActivityTextStartingUpdatingLockingState;
2022-09-20 13:51:55 +02:00
var versionTdo = btLock.VersionInfo;
if (versionTdo != null)
{
SelectedBike.LockInfo.VersionInfo = new VersionInfo.Builder
{
FirmwareVersion = versionTdo.FirmwareVersion,
HardwareVersion = versionTdo.HardwareVersion,
LockVersion = versionTdo.LockVersion,
}.Build();
}
2022-09-06 16:08:19 +02:00
2023-11-06 12:23:09 +01:00
// update backend
IsConnected = IsConnectedDelegate();
2022-09-06 16:08:19 +02:00
try
{
await ConnectorFactory(IsConnected).Command.UpdateLockingStateAsync(SelectedBike);
2023-11-06 12:23:09 +01:00
Log.ForContext<ReservedClosed>().Information("Backend updated for bike {bikeId} successfully.", SelectedBike.Id);
2022-09-06 16:08:19 +02:00
}
catch (Exception exception)
{
2023-11-06 12:23:09 +01:00
Log.ForContext<BookedClosed>().Information("Updating backend for bike {bikeId} failed.", SelectedBike.Id);
2022-09-06 16:08:19 +02:00
if (exception is WebConnectFailureException)
{
2023-11-06 12:23:09 +01:00
// No web.
Log.ForContext<BookedClosed>().Debug("Copri server not reachable. No web.");
2022-09-06 16:08:19 +02:00
BikesViewModel.ActionText = AppResources.ActivityTextErrorNoWebUpdateingLockstate;
}
else if (exception is ResponseException copriException)
{
2023-11-06 12:23:09 +01:00
// Copri exception.
Log.ForContext<BookedClosed>().Debug("{response}.", copriException.Response);
2022-09-06 16:08:19 +02:00
BikesViewModel.ActionText = AppResources.ActivityTextErrorStatusUpdateingLockstate;
}
else
{
2023-11-06 12:23:09 +01:00
Log.ForContext<BookedClosed>().Debug("{@exception}", exception);
2022-09-06 16:08:19 +02:00
BikesViewModel.ActionText = AppResources.ActivityTextErrorConnectionUpdateingLockstate;
}
}
BikesViewModel.ActionText = AppResources.ActivityTextStartingUpdater;
2023-08-31 12:20:06 +02:00
await ViewUpdateManager().StartAsync();
2022-09-06 16:08:19 +02:00
BikesViewModel.ActionText = string.Empty;
BikesViewModel.IsIdle = true;
2023-08-31 12:20:06 +02:00
BikesViewModel.RentalProcess.State = CurrentRentalProcess.None;
2023-11-06 12:23:09 +01:00
return Create(SelectedBike, IsConnectedDelegate, ConnectorFactory, GeolocationService, LockService, ViewUpdateManager, SmartDevice, ViewService, BikesViewModel, ActiveUser);
2022-09-06 16:08:19 +02:00
}
}
2021-05-13 20:03:07 +02:00
}