2022-09-20 13:51:55 +02:00
using System ;
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 ;
2021-05-13 20:03:07 +02:00
using TINK.Model.State ;
2022-08-30 15:42:25 +02:00
using TINK.Model.User ;
using TINK.MultilingualResources ;
2021-06-26 20:57:55 +02:00
using TINK.Repository.Exception ;
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.BluetoothLock.Tdo ;
2022-10-26 20:53:18 +02:00
using TINK.Services.CopriApi.Exception ;
2022-08-30 15:42:25 +02:00
using TINK.Services.Geolocation ;
using TINK.View ;
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 DisposableDisconnected : 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 DisposableDisconnected (
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 . ActionRequest , // Copri text: "Rad reservieren"
true , // Show copri button to enable reserving and opening
isConnectedDelegate ,
connectorFactory ,
geolocation ,
lockService ,
viewUpdateManager ,
smartDevice ,
viewService ,
bikesViewModel ,
activeUser )
{
LockitButtonText = GetType ( ) . Name ;
IsLockitButtonVisible = false ; // If bike is not reserved/ booked app can not connect to lock
}
/// <summary>Reserve bike and connect to lock.</summary>
public async Task < IRequestHandler > HandleRequestOption1 ( ) = > await ReserveBookAndOpen ( ) ;
public async Task < IRequestHandler > HandleRequestOption2 ( ) = > await UnsupportedRequest ( ) ;
/// <summary>Reserve bike and connect to lock.</summary>
public async Task < IRequestHandler > ReserveBookAndOpen ( )
{
BikesViewModel . IsIdle = false ;
2022-09-20 13:51:55 +02:00
// Ask whether to really reserve bike?
2022-09-06 16:08:19 +02:00
var alertResult = await ViewService . DisplayAlert (
string . Empty ,
2023-06-06 12:00:24 +02:00
string . Format (
AppResources . QuestionReserveBike ,
SelectedBike . GetFullDisplayName ( ) ,
SelectedBike . TariffDescription ? . MaxReservationTimeSpan . TotalMinutes ? ? 0 ) ,
2022-09-06 16:08:19 +02:00
AppResources . MessageAnswerYes ,
AppResources . MessageAnswerNo ) ;
if ( alertResult = = false )
{
// User aborted booking process
2023-04-19 12:14:14 +02:00
Log . ForContext < DisposableDisconnected > ( ) . Information ( "User selected centered bike {bike} in order to reserve but action was canceled." , SelectedBike ) ;
2022-09-06 16:08:19 +02:00
BikesViewModel . IsIdle = true ;
return this ;
}
// Lock list to avoid multiple taps while copri action is pending.
Log . ForContext < DisposableDisconnected > ( ) . Information ( "Request to book and open lock for bike {bike} detected." , SelectedBike ) ;
BikesViewModel . ActionText = AppResources . ActivityTextOneMomentPlease ;
// Stop polling before requesting bike.
2023-08-31 12:20:06 +02:00
await ViewUpdateManager ( ) . StopAsync ( ) ;
2022-09-06 16:08:19 +02:00
BikesViewModel . ActionText = AppResources . ActivityTextReservingBike ;
IsConnected = IsConnectedDelegate ( ) ;
try
{
await ConnectorFactory ( IsConnected ) . Command . DoReserve ( SelectedBike ) ;
}
catch ( Exception exception )
{
BikesViewModel . ActionText = string . Empty ;
if ( exception is BookingDeclinedException )
{
// Too many bikes booked.
Log . ForContext < DisposableDisconnected > ( ) . Information ( "Request declined because maximum count of bikes {l_oException.MaxBikesCount} already requested/ booked." , ( exception as BookingDeclinedException ) . MaxBikesCount ) ;
await ViewService . DisplayAlert (
2023-08-31 12:20:06 +02:00
AppResources . MessageHintTitle ,
string . Format ( AppResources . ErrorReservingBikeTooManyReservationsRentals , SelectedBike . Id , ( exception as BookingDeclinedException ) . MaxBikesCount ) ,
2022-09-06 16:08:19 +02:00
AppResources . MessageAnswerOk ) ;
}
2022-10-26 20:53:18 +02:00
else if ( exception is WebConnectFailureException
| | exception is RequestNotCachableException )
2022-09-06 16:08:19 +02:00
{
// Copri server is not reachable.
2023-04-19 12:14:14 +02:00
Log . ForContext < DisposableDisconnected > ( ) . Information ( "User selected centered bike {bike} but reserving failed (Copri server not reachable)." , SelectedBike ) ;
2022-09-06 16:08:19 +02:00
await ViewService . DisplayAlert (
2023-08-31 12:20:06 +02:00
AppResources . ErrorNoConnectionTitle ,
AppResources . ErrorNoWeb ,
2022-09-06 16:08:19 +02:00
AppResources . MessageAnswerOk ) ;
}
else
{
2023-04-19 12:14:14 +02:00
Log . ForContext < DisposableDisconnected > ( ) . Error ( "User selected centered bike {bike} but reserving failed. {@l_oException}" , SelectedBike , exception ) ;
2022-09-06 16:08:19 +02:00
2023-08-31 12:20:06 +02:00
await ViewService . DisplayAdvancedAlert (
AppResources . ErrorReservingBikeTitle ,
2022-09-06 16:08:19 +02:00
exception . Message ,
2023-08-31 12:20:06 +02:00
AppResources . ErrorTryAgain ,
2022-09-06 16:08:19 +02:00
AppResources . MessageAnswerOk ) ;
}
// Restart polling again.
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 ;
return this ;
}
// Search for lock.
LockInfoTdo result = null ;
BikesViewModel . ActionText = AppResources . ActivityTextSearchingLock ;
try
{
result = await LockService . ConnectAsync (
new LockInfoAuthTdo . Builder { Id = SelectedBike . LockInfo . Id , Guid = SelectedBike . LockInfo . Guid , K_seed = SelectedBike . LockInfo . Seed , K_u = SelectedBike . LockInfo . UserKey } . Build ( ) ,
LockService . TimeOut . GetSingleConnect ( 1 ) ) ;
}
catch ( Exception exception )
{
// Do not display any messages here, because search is implicit.
if ( exception is OutOfReachException )
{
Log . ForContext < DisposableDisconnected > ( ) . Debug ( "Lock state can not be retrieved, lock is out of reach. {Exception}" , exception ) ;
BikesViewModel . ActionText = AppResources . ActivityTextLockIsOutOfReach ;
}
else
{
Log . ForContext < DisposableDisconnected > ( ) . Error ( "Lock state can not be retrieved. {Exception}" , exception ) ;
BikesViewModel . ActionText = AppResources . ActivityTextLockNotFound ;
}
// Restart polling again.
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
}
SelectedBike . LockInfo . State = result ? . State ? . GetLockingState ( ) ? ? LockingState . UnknownDisconnected ;
if ( SelectedBike . LockInfo . State = = LockingState . UnknownDisconnected )
{
// Do not display any messages here, because search is implicit.
Log . ForContext < DisposableDisconnected > ( ) . Information ( "Lock for bike {bike} not found." , SelectedBike ) ;
// Restart polling again.
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
}
SelectedBike . LockInfo . Guid = result ? . Guid ? ? new Guid ( ) ;
Log . ForContext < DisposableDisconnected > ( ) . Information ( "Lock found {bike} successfully." , SelectedBike ) ;
BikesViewModel . ActionText = string . Empty ;
// Ask whether to really book bike?
alertResult = await ViewService . DisplayAlert (
string . Empty ,
string . Format ( AppResources . QuestionOpenLockAndBookBike , SelectedBike . GetFullDisplayName ( ) ) ,
AppResources . MessageAnswerYes ,
AppResources . MessageAnswerNo ) ;
if ( alertResult = = false )
{
// User aborted booking process
Log . ForContext < DisposableDisconnected > ( ) . Information ( "User selected recently requested bike {bike} in order to reserve but did deny to book bike." , SelectedBike ) ;
// Disconnect lock.
BikesViewModel . ActionText = AppResources . ActivityTextDisconnectingLock ;
try
{
SelectedBike . LockInfo . State = await LockService . DisconnectAsync ( SelectedBike . LockInfo . Id , SelectedBike . LockInfo . Guid ) ;
}
catch ( Exception exception )
{
Log . ForContext < DisposableDisconnected > ( ) . Error ( "Lock can not be disconnected. {Exception}" , exception ) ;
BikesViewModel . ActionText = AppResources . ActivityTextErrorDisconnect ;
}
// Restart polling again.
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
}
Log . ForContext < DisposableDisconnected > ( ) . Information ( "User selected recently requested bike {bike} in order to book." , SelectedBike ) ;
// Book bike prior to opening lock.
BikesViewModel . ActionText = AppResources . ActivityTextRentingBike ;
IsConnected = IsConnectedDelegate ( ) ;
try
{
2022-12-27 21:08:09 +01:00
await ConnectorFactory ( IsConnected ) . Command . DoBookAsync ( SelectedBike , LockingAction . Open ) ;
2022-09-06 16:08:19 +02:00
}
catch ( Exception l_oException )
{
BikesViewModel . ActionText = string . Empty ;
if ( l_oException is WebConnectFailureException )
{
// Copri server is not reachable.
Log . ForContext < DisposableDisconnected > ( ) . Information ( "User selected recently requested bike {l_oId} but booking failed (Copri server not reachable)." , SelectedBike . Id ) ;
2023-08-31 12:20:06 +02:00
await ViewService . DisplayAlert (
AppResources . ErrorNoConnectionTitle ,
AppResources . ErrorNoWeb ,
2022-09-06 16:08:19 +02:00
AppResources . MessageAnswerOk ) ;
}
else
{
Log . ForContext < DisposableDisconnected > ( ) . Error ( "User selected recently requested bike {l_oId} but reserving failed. {@l_oException}" , SelectedBike . Id , l_oException ) ;
2023-08-31 12:20:06 +02:00
await ViewService . DisplayAlert (
AppResources . ErrorRentingBikeTitle ,
2022-09-06 16:08:19 +02:00
l_oException . Message ,
AppResources . MessageAnswerOk ) ;
}
BikesViewModel . ActionText = AppResources . ActivityTextStartingUpdater ;
2023-08-31 12:20:06 +02:00
await ViewUpdateManager ( ) . StartAsync ( ) ; // Restart polling again.
2022-09-06 16:08:19 +02:00
BikesViewModel . ActionText = string . Empty ;
BikesViewModel . IsIdle = true ; // Unlock GUI
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
}
// Unlock bike.
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 ] ;
SelectedBike . LockInfo . State = ( await btLock . OpenAsync ( ) ) ? . GetLockingState ( ) ? ? LockingState . UnknownDisconnected ;
2022-09-06 16:08:19 +02:00
}
catch ( Exception exception )
{
BikesViewModel . ActionText = string . Empty ;
if ( exception is OutOfReachException )
{
Log . ForContext < DisposableDisconnected > ( ) . 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 < DisposableDisconnected > ( ) . 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 < DisposableDisconnected > ( ) . 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 < DisposableDisconnected > ( ) . 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 < DisposableDisconnected > ( ) . Error ( "Lock can not be opened. {Exception}" , exception ) ;
await ViewService . DisplayAlert (
AppResources . ErrorOpenLockTitle ,
exception . Message ,
AppResources . MessageAnswerOk ) ;
}
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 ( ) ; // Restart polling again.
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
}
if ( SelectedBike . LockInfo . State ! = LockingState . Open )
{
// Opening lock failed.
BikesViewModel . ActionText = AppResources . ActivityTextStartingUpdater ;
2023-08-31 12:20:06 +02:00
await ViewUpdateManager ( ) . StartAsync ( ) ; // Restart polling again.
2022-09-06 16:08:19 +02:00
BikesViewModel . ActionText = string . Empty ;
BikesViewModel . IsIdle = true ; // Unlock GUI
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 < DisposableDisconnected > ( ) . 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 < DisposableDisconnected > ( ) . 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 < DisposableDisconnected > ( ) . 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 < DisposableDisconnected > ( ) . Information ( "User locked bike {bike} in order to pause ride but updating failed. {response}." , SelectedBike , copriException . Response ) ;
BikesViewModel . ActionText = AppResources . ActivityTextErrorStatusUpdateingLockstate ;
}
else
{
Log . ForContext < DisposableDisconnected > ( ) . Error ( "User locked bike {bike} in order to pause ride but updating failed . {@l_oException}" , SelectedBike . Id , exception ) ;
BikesViewModel . ActionText = AppResources . ActivityTextErrorConnectionUpdateingLockstate ;
}
}
Log . ForContext < DisposableDisconnected > ( ) . Information ( "User reserved bike {bike} successfully." , SelectedBike ) ;
BikesViewModel . ActionText = AppResources . ActivityTextStartingUpdater ;
2023-08-31 12:20:06 +02:00
await ViewUpdateManager ( ) . StartAsync ( ) ; // Restart polling again.
2022-09-06 16:08:19 +02:00
BikesViewModel . ActionText = string . Empty ;
BikesViewModel . IsIdle = true ; // Unlock GUI
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-04-19 12:14:14 +02:00
/// <summary> Request is not supported, button should be disabled. </summary>
2022-09-06 16:08:19 +02:00
/// <returns></returns>
public async Task < IRequestHandler > UnsupportedRequest ( )
{
Log . ForContext < DisposableDisconnected > ( ) . Error ( "Click of unsupported button click detected." ) ;
return await Task . FromResult < IRequestHandler > ( this ) ;
}
}
2021-05-13 20:03:07 +02:00
}