2022-09-20 13:51:55 +02:00
using System ;
2022-08-30 15:42:25 +02:00
using System.Collections.Generic ;
using System.Threading ;
2021-05-13 20:03:07 +02:00
using System.Threading.Tasks ;
2022-08-30 15:42:25 +02:00
using Serilog ;
using TINK.Model.Bikes.BikeInfoNS.BluetoothLock ;
2021-05-13 20:03:07 +02:00
using TINK.Model.Connector ;
2022-08-30 15:42:25 +02:00
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.Repository.Request ;
2021-05-13 20:03:07 +02:00
using TINK.Services.BluetoothLock ;
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 . CloseCommand ;
using static TINK . ViewModel . Bikes . Bike . BluetoothLock . RequestHandlerFactory ;
2021-05-13 20:03:07 +02:00
namespace TINK.ViewModel.Bikes.Bike.BluetoothLock.RequestHandler
{
2022-09-06 16:08:19 +02:00
public class BookedUnknown : Base , IRequestHandler
{
/// <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 BookedUnknown (
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 ,
AppResources . ActionOpenAndPause , // Schloss öffnen und Miete fortsetzen.
true , // Show button to enabled returning of bike.
isConnectedDelegate ,
connectorFactory ,
geolocation ,
lockService ,
viewUpdateManager ,
smartDevice ,
viewService ,
bikesViewModel ,
activeUser )
{
LockitButtonText = AppResources . ActionClose ; // BT button text "Schließen".;
IsLockitButtonVisible = true ; // Show button to enable opening lock in case user took a pause and does not want to return the bike.
2023-08-31 12:20:06 +02:00
_closeLockActionViewModel = new CloseLockActionViewModel < BookedOpen > (
selectedBike ,
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 close action.
/// </summary>
private CloseLockActionViewModel < BookedOpen > _closeLockActionViewModel ;
2022-09-06 16:08:19 +02:00
/// <summary> Open bike and update COPRI lock state. </summary>
public async Task < IRequestHandler > HandleRequestOption1 ( ) = > await OpenLock ( ) ;
/// <summary> Close lock in order to pause ride and update COPRI lock state.</summary>
2023-08-31 12:20:06 +02:00
public async Task < IRequestHandler > HandleRequestOption2 ( )
{
await _closeLockActionViewModel . CloseLockAsync ( ) ;
return Create ( SelectedBike , IsConnectedDelegate , ConnectorFactory , GeolocationService , LockService , ViewUpdateManager , SmartDevice , ViewService , BikesViewModel , ActiveUser ) ;
}
2022-09-06 16:08:19 +02:00
/// <summary> Open bike and update COPRI lock state. </summary>
public async Task < IRequestHandler > OpenLock ( )
{
// Unlock bike.
Log . ForContext < BookedUnknown > ( ) . Information ( "User request to unlock bike {bike}." , SelectedBike ) ;
// 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
BikesViewModel . ActionText = AppResources . ActivityTextOpeningLock ;
2022-09-20 13:51:55 +02:00
ILockService btLock ;
2022-09-06 16:08:19 +02:00
try
{
2022-09-20 13:51:55 +02:00
btLock = LockService [ SelectedBike . LockInfo . Id ] ;
2022-09-06 16:08:19 +02:00
SelectedBike . LockInfo . State = ( await LockService [ SelectedBike . LockInfo . Id ] . OpenAsync ( ) ) ? . GetLockingState ( ) ? ? LockingState . UnknownDisconnected ;
}
catch ( Exception exception )
{
BikesViewModel . ActionText = string . Empty ;
if ( exception is OutOfReachException )
{
Log . ForContext < BookedUnknown > ( ) . Debug ( "Lock can not be opened. {Exception}" , exception ) ;
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 )
{
Log . ForContext < BookedUnknown > ( ) . Debug ( "Lock can not be opened. Bold is blocked. {Exception}" , exception ) ;
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-02-22 14:03:35 +01:00
Log . ForContext < BookedUnknown > ( ) . Debug ( "Lock can not be opened. Bold status is unknown. {Exception}" , exception ) ;
2022-09-06 16:08:19 +02:00
await ViewService . DisplayAlert (
2023-08-31 12:20:06 +02:00
AppResources . ErrorOpenLockTitle ,
AppResources . ErrorOpenLockStatusUnknown ,
2022-09-06 16:08:19 +02:00
AppResources . MessageAnswerOk ) ;
}
else if ( exception is CouldntOpenInconsistentStateExecption inconsistentState
& & inconsistentState . State = = LockingState . Closed )
{
Log . ForContext < BookedUnknown > ( ) . Debug ( "Lock can not be opened. lock reports state closed. {Exception}" , exception ) ;
await ViewService . DisplayAlert (
AppResources . ErrorOpenLockTitle ,
2023-08-31 12:20:06 +02:00
AppResources . ErrorOpenLockStillClosed ,
2022-09-06 16:08:19 +02:00
AppResources . MessageAnswerOk ) ;
}
else
{
Log . ForContext < BookedUnknown > ( ) . Error ( "Lock can not be opened. {Exception}" , exception ) ;
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 ,
2022-09-06 16:08:19 +02:00
AppResources . MessageAnswerOk ) ;
}
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 ;
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-04-05 15:02:10 +02:00
return RequestHandlerFactory . Create ( SelectedBike , IsConnectedDelegate , ConnectorFactory , GeolocationService , LockService , ViewUpdateManager , SmartDevice , ViewService , BikesViewModel , ActiveUser ) ;
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 ( ) ;
2022-09-06 16:08:19 +02:00
}
catch ( Exception exception )
{
if ( exception is OutOfReachException )
{
2023-04-19 12:14:14 +02:00
Log . ForContext < BookedUnknown > ( ) . Debug ( "Battery state can not be read, bike out of range. {Exception}" , exception ) ;
2022-09-06 16:08:19 +02:00
BikesViewModel . ActionText = AppResources . ActivityTextErrorReadingChargingLevelOutOfReach ;
}
else
{
2023-04-19 12:14:14 +02:00
Log . ForContext < BookedUnknown > ( ) . Error ( "Battery state can not be read. {Exception}" , exception ) ;
2022-09-06 16:08:19 +02:00
BikesViewModel . ActionText = AppResources . ActivityTextErrorReadingChargingLevelGeneral ;
}
}
// Lock list to avoid multiple taps while copri action is pending.
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
IsConnected = IsConnectedDelegate ( ) ;
try
{
await ConnectorFactory ( IsConnected ) . Command . UpdateLockingStateAsync ( SelectedBike ) ;
}
catch ( Exception exception )
{
if ( exception is WebConnectFailureException )
{
// Copri server is not reachable.
Log . ForContext < BookedUnknown > ( ) . Information ( "User locked bike {bike} in order to pause ride but updating failed (Copri server not reachable)." , SelectedBike ) ;
BikesViewModel . ActionText = AppResources . ActivityTextErrorNoWebUpdateingLockstate ;
}
else if ( exception is ResponseException copriException )
{
// Copri server is not reachable.
Log . ForContext < BookedUnknown > ( ) . Information ( "User locked bike {bike} in order to pause ride but updating failed. {response}." , SelectedBike , copriException . Response ) ;
BikesViewModel . ActionText = AppResources . ActivityTextErrorStatusUpdateingLockstate ;
}
else
{
Log . ForContext < BookedUnknown > ( ) . Error ( "User locked bike {bike} in order to pause ride but updating failed . {@l_oException}" , SelectedBike . Id , exception ) ;
BikesViewModel . ActionText = AppResources . ActivityTextErrorConnectionUpdateingLockstate ;
}
}
Log . ForContext < BookedUnknown > ( ) . Information ( "User paused ride using {bike} successfully." , SelectedBike ) ;
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-04-05 15:02:10 +02:00
return RequestHandlerFactory . 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>
/// Processes the close lock progress.
/// </summary>
/// <remarks>
/// Only used for testing.
/// </remarks>
/// <param name="step">Current step to process.</param>
public void ReportStep ( Step step ) = > _closeLockActionViewModel ? . ReportStep ( step ) ;
/// <summary>
/// Processes the close lock state.
/// </summary>
/// <remarks>
/// Only used for testing.
/// </remarks>
/// <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 _closeLockActionViewModel . ReportStateAsync ( state , details ) ;
2022-09-06 16:08:19 +02:00
}
2021-05-13 20:03:07 +02:00
}