mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-04 18:26:25 +01:00
53 lines
2.1 KiB
C#
53 lines
2.1 KiB
C#
using System;
|
|
using TINK.Model.Device;
|
|
using TINK.Model.Services.CopriApi;
|
|
using TINK.Repository;
|
|
|
|
namespace TINK.Model.Connector
|
|
{
|
|
/// <summary>
|
|
/// Connects app to copri data by getting data from cache.
|
|
/// </summary>
|
|
public class ConnectorCache : IConnector
|
|
{
|
|
/// <summary>Constructs a copri connector object to connect to cache.</summary>
|
|
/// <remarks>Used for offline szenario to ensure responsiveness of app by preventing hopeless tries to communicate with COPRI. </remarks>
|
|
/// <param name="uiIsoLangugageName">Two letter ISO language name.</param>
|
|
/// <param name="sessionCookie"> Holds the session cookie.</param>
|
|
/// <param name="mail">Mail of user.</param>
|
|
/// <param name="smartDevice">Holds info about smart device.</param>
|
|
/// <param name="server"> Is null in production and migh be a mock in testing context.</param>
|
|
public ConnectorCache(
|
|
AppContextInfo appContextInfo,
|
|
string uiIsoLangugageName,
|
|
string sessionCookie,
|
|
string mail,
|
|
ISmartDevice smartDevice = null,
|
|
ICopriServer server = null)
|
|
{
|
|
Command = Connector.CreateCommand(
|
|
server ?? new CopriProviderMonkeyStore(appContextInfo.MerchantId, uiIsoLangugageName, sessionCookie, smartDevice),
|
|
sessionCookie,
|
|
mail);
|
|
|
|
Query = GetQuery(
|
|
server ?? new CopriProviderMonkeyStore(appContextInfo.MerchantId, uiIsoLangugageName, sessionCookie, smartDevice),
|
|
sessionCookie,
|
|
mail);
|
|
}
|
|
|
|
/// <summary> Object for queriying stations and bikes.</summary>
|
|
public ICommand Command { get; private set; }
|
|
|
|
/// <summary> Object for queriying stations and bikes.</summary>
|
|
public IQuery Query { get; private set; }
|
|
|
|
/// <summary> True if connector has access to copri server, false if cached values are used. </summary>
|
|
public bool IsConnected => Command.IsConnected;
|
|
|
|
/// <summary> Gets a command object to perform copri queries. </summary>
|
|
private static IQuery GetQuery(ICopriServer copri, string sessioncookie, string mail) => string.IsNullOrEmpty(sessioncookie)
|
|
? new Query(copri) as IQuery
|
|
: new QueryLoggedIn(copri, sessioncookie, mail, () => DateTime.Now);
|
|
}
|
|
}
|