using System;
using System.Threading.Tasks;
using Serilog;
using ShareeBike.Repository.Exception;
using ShareeBike.Services.CopriApi.Exception;
using ShareeBike.Model.Connector;
using ShareeBike.Model.Bikes.BikeInfoNS.BluetoothLock;
namespace ShareeBike.Model.Bikes.BikeInfoNS.BikeNS.Command
{
///
/// Provides functionality to get the locked bike location.
///
public static class AuthCommand
{
///
/// Possible steps of requesting a bike.
///
public enum Step
{
Authenticate,
}
///
/// Possible steps of requesting a bike.
///
public enum State
{
WebConnectFailed,
GeneralAuthError,
}
///
/// Interface to notify view model about steps/ state changes of closing process.
///
public interface IAuthCommandListener
{
///
/// Reports current step.
///
/// Current step to report.
void ReportStep(Step currentStep);
///
/// Reports current state.
///
/// Current state to report.
/// Message describing the current state.
///
Task ReportStateAsync(State currentState, string message);
}
///
/// Get current location.
///
///
///
///
public static async Task InvokeAsync(
IBikeInfoMutable bike,
Func isConnectedDelegate,
Func connectorFactory,
IAuthCommandListener listener)
{
// Invokes member to notify about step being started.
void InvokeCurrentStep(Step step)
{
if (listener == null)
return;
try
{
listener.ReportStep(step);
}
catch (Exception exception)
{
Log.ForContext().Error("An exception {@exception} was thrown invoking step-action for step {step} ", exception, step);
}
}
// Invokes member to notify about state change.
async Task InvokeCurrentStateAsync(State state, string message)
{
if (listener == null)
return;
try
{
await listener.ReportStateAsync(state, message);
}
catch (Exception exception)
{
Log.ForContext().Error("An exception {@exception} was thrown invoking state-action for state {state} ", exception, state);
}
}
//// Start Action
//// Step: Authenticate user
InvokeCurrentStep(Step.Authenticate);
try
{
// Repeat reservation to get a new seed/ k_user value.
await connectorFactory(true).Command.CalculateAuthKeys(bike);
Log.ForContext().Information("Calculation of AuthKeys successfully.");
}
catch (Exception exception)
{
if (exception is WebConnectFailureException
|| exception is RequestNotCachableException)
{
// Copri server is not reachable.
Log.ForContext().Error("Calculation of AuthKeys failed (Copri server not reachable).");
await InvokeCurrentStateAsync(State.WebConnectFailed, exception.Message);
}
else
{
Log.ForContext().Error("Calculation of AuthKeys failed. {@exception}", exception);
await InvokeCurrentStateAsync(State.GeneralAuthError, exception.Message);
}
throw;
}
}
}
}