2023-02-22 14:03:35 +01:00
|
|
|
using System;
|
|
|
|
using TINK.Model.Device;
|
2021-05-13 20:03:07 +02:00
|
|
|
using TINK.Model.Services.CopriApi;
|
2021-06-26 20:57:55 +02:00
|
|
|
using TINK.Repository;
|
2021-05-13 20:03:07 +02:00
|
|
|
|
|
|
|
namespace TINK.Model.Connector
|
|
|
|
{
|
2022-09-06 16:08:19 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Connects app to copri data by getting data from copri.
|
|
|
|
/// </summary>
|
|
|
|
public class Connector : IConnector
|
|
|
|
{
|
2023-02-22 14:03:35 +01:00
|
|
|
/// <summary>Constructs a copri connector object to connect to copri by https with cache fallback.</summary>
|
2022-09-06 16:08:19 +02:00
|
|
|
/// <param name="activeUri"> Uri to connect to.</param>
|
|
|
|
/// <param name="appContextInfo">Provides app related info (app name and version, merchantid) to pass to COPRI.</param>
|
|
|
|
/// <param name="uiIsoLangugageName">Two letter ISO language name.</param>
|
|
|
|
/// <param name="sessionCookie"> Holds the session cookie.</param>
|
|
|
|
/// <param name="mail">Mail of user.</param>
|
2023-02-22 14:03:35 +01:00
|
|
|
/// <param name="smartDevice">Holds info about smart device.</param>
|
2022-09-06 16:08:19 +02:00
|
|
|
/// <param name="expiresAfter">Timespan which holds value after which cache expires.</param>
|
|
|
|
/// <param name="server"> Is null in production and migh be a mock in testing context.</param>
|
|
|
|
public Connector(
|
|
|
|
Uri activeUri,
|
|
|
|
AppContextInfo appContextInfo,
|
|
|
|
string uiIsoLangugageName,
|
|
|
|
string sessionCookie,
|
|
|
|
string mail,
|
2023-02-22 14:03:35 +01:00
|
|
|
ISmartDevice smartDevice = null,
|
2022-09-06 16:08:19 +02:00
|
|
|
TimeSpan? expiresAfter = null,
|
|
|
|
ICachedCopriServer server = null)
|
|
|
|
{
|
2023-02-22 14:03:35 +01:00
|
|
|
Command = CreateCommand(
|
2022-09-06 16:08:19 +02:00
|
|
|
server ?? new CopriProviderHttps(
|
|
|
|
activeUri,
|
|
|
|
appContextInfo.MerchantId,
|
|
|
|
appContextInfo,
|
|
|
|
uiIsoLangugageName,
|
2023-02-22 14:03:35 +01:00
|
|
|
smartDevice,
|
2022-09-06 16:08:19 +02:00
|
|
|
sessionCookie),
|
|
|
|
sessionCookie,
|
|
|
|
mail);
|
2021-05-13 20:03:07 +02:00
|
|
|
|
2023-02-22 14:03:35 +01:00
|
|
|
Query = CreateQuery(
|
2022-09-06 16:08:19 +02:00
|
|
|
server ?? new CopriProviderHttps(
|
|
|
|
activeUri,
|
|
|
|
appContextInfo.MerchantId,
|
|
|
|
appContextInfo,
|
|
|
|
uiIsoLangugageName,
|
2023-02-22 14:03:35 +01:00
|
|
|
smartDevice,
|
2022-09-06 16:08:19 +02:00
|
|
|
sessionCookie,
|
|
|
|
expiresAfter),
|
|
|
|
sessionCookie,
|
|
|
|
mail);
|
|
|
|
}
|
2021-05-13 20:03:07 +02:00
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
/// <summary> Object for queriying stations and bikes.</summary>
|
|
|
|
public ICommand Command { get; private set; }
|
2021-05-13 20:03:07 +02:00
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
/// <summary> Object for queriying stations and bikes.</summary>
|
|
|
|
public IQuery Query { get; private set; }
|
2021-05-13 20:03:07 +02:00
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
/// <summary> True if connector has access to copri server, false if cached values are used. </summary>
|
|
|
|
public bool IsConnected => Command.IsConnected;
|
2021-05-13 20:03:07 +02:00
|
|
|
|
2023-02-22 14:03:35 +01:00
|
|
|
/// <summary> Creates a command object to perform copri commands. </summary>
|
|
|
|
public static ICommand CreateCommand(ICopriServerBase copri, string sessioncookie, string mail) => string.IsNullOrEmpty(sessioncookie)
|
2022-09-06 16:08:19 +02:00
|
|
|
? new Command(copri)
|
|
|
|
: new CommandLoggedIn(copri, sessioncookie, mail, () => DateTime.Now) as ICommand;
|
2021-05-13 20:03:07 +02:00
|
|
|
|
2023-02-22 14:03:35 +01:00
|
|
|
/// <summary> Creates a command object to perform copri queries. </summary>
|
|
|
|
private static IQuery CreateQuery(ICachedCopriServer copri, string sessioncookie, string mail) => string.IsNullOrEmpty(sessioncookie)
|
2022-09-06 16:08:19 +02:00
|
|
|
? new CachedQuery(copri) as IQuery
|
|
|
|
: new CachedQueryLoggedIn(copri, sessioncookie, mail, () => DateTime.Now);
|
|
|
|
}
|
2021-05-13 20:03:07 +02:00
|
|
|
}
|