sharee.bike-App/TINKLib/Model/Bikes/BikeInfoNS/BluetoothLock/BikeInfo.cs

172 lines
5.8 KiB
C#
Raw Normal View History

2022-09-20 13:51:55 +02:00
using System;
2021-05-13 20:03:07 +02:00
using System.Collections.Generic;
2023-01-18 14:22:51 +01:00
using TINK.Model.Bikes.BikeInfoNS.BC;
2022-08-30 15:42:25 +02:00
using TINK.Model.Bikes.BikeInfoNS.BikeNS;
using TINK.Model.Bikes.BikeInfoNS.DriveNS;
2021-05-13 20:03:07 +02:00
using TINK.Model.State;
2022-08-30 15:42:25 +02:00
namespace TINK.Model.Bikes.BikeInfoNS.BluetoothLock
2021-05-13 20:03:07 +02:00
{
2022-09-20 13:51:55 +02:00
public class BikeInfo : BC.BikeInfo, IBikeInfo
2022-09-06 16:08:19 +02:00
{
/// <summary>
/// Constructs a bike info object for a available bike.
/// </summary>
2023-01-18 14:22:51 +01:00
/// <param name="dataSource">Specified the source of the data.</param>
2022-09-06 16:08:19 +02:00
/// <param name="lockId">Id of the lock.</param>
/// <param name="lockGuid">GUID specifying the lock.</param>
/// <param name="currentStationId">Id of station where bike is located.</param>
/// <param name="operatorUri">Holds the uri of the operator or null, in case of single operator setup.</param>
/// <param name="tariffDescription">Hold tariff description of bike.</param>
public BikeInfo(
2022-09-20 13:51:55 +02:00
Bike bike,
2023-08-31 12:31:38 +02:00
DriveMutable drive,
2023-01-18 14:22:51 +01:00
DataSource dataSource,
2022-09-06 16:08:19 +02:00
int lockId,
Guid lockGuid,
string currentStationId,
Uri operatorUri = null,
RentalDescription tariffDescription = null,
bool? isDemo = DEFAULTVALUEISDEMO,
IEnumerable<string> group = null) : base(
new StateInfo(),
bike != null
2022-09-20 13:51:55 +02:00
? new Bike(
2022-09-06 16:08:19 +02:00
bike.Id,
2023-04-19 12:14:14 +02:00
LockModel.ILockIt /* Ensure consistent lock model value */,
2022-09-06 16:08:19 +02:00
bike.WheelType,
bike.TypeOfBike,
2023-04-19 12:14:14 +02:00
bike.AaRideType,
2022-09-06 16:08:19 +02:00
bike.Description)
: throw new ArgumentNullException(nameof(bike)),
drive,
2023-01-18 14:22:51 +01:00
dataSource,
2022-09-06 16:08:19 +02:00
isDemo,
group,
currentStationId,
operatorUri,
tariffDescription)
{
2022-09-20 13:51:55 +02:00
LockInfo = new LockInfo.Builder { Id = lockId, Guid = lockGuid }.Build();
2022-09-06 16:08:19 +02:00
}
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
/// <summary>
/// Constructs a bike info object for a requested bike.
/// </summary>
2023-01-18 14:22:51 +01:00
/// <param name="dataSource">Specified the source of the data.</param>
2023-04-19 12:14:14 +02:00
/// <param name="dateTimeProvider">Provider for current date time to calculate remaining time on demand for state of type reserved.</param>
2022-09-06 16:08:19 +02:00
/// <param name="lockId">Id of the lock.</param>
/// <param name="lockGuid">GUID specifying the lock.</param>
/// <param name="requestedAt">Date time when bike was requested</param>
/// <param name="mailAddress">Mail address of user which requested bike.</param>
/// <param name="currentStationId">Name of station where bike is located, null if bike is on the road.</param>
/// <param name="operatorUri">Holds the uri of the operator or null, in case of single operator setup.</param>
/// <param name="tariffDescription">Hold tariff description of bike.</param>
2023-04-19 12:14:14 +02:00
/// <param name="dateTimeProvider">Date time provider to calculate remaining time.</param>
2022-09-06 16:08:19 +02:00
public BikeInfo(
2022-09-20 13:51:55 +02:00
Bike bike,
2023-08-31 12:31:38 +02:00
DriveMutable drive,
2023-01-18 14:22:51 +01:00
DataSource dataSource,
2022-09-06 16:08:19 +02:00
int lockId,
Guid lockGuid,
byte[] userKey,
byte[] adminKey,
byte[] seed,
DateTime requestedAt,
string mailAddress,
string currentStationId,
Uri operatorUri,
RentalDescription tariffDescription,
Func<DateTime> dateTimeProvider,
bool? isDemo = DEFAULTVALUEISDEMO,
IEnumerable<string> group = null) : base(
new StateInfo(
dateTimeProvider,
requestedAt,
2023-06-06 12:00:24 +02:00
tariffDescription?.MaxReservationTimeSpan ?? StateRequestedInfo.UNKNOWNMAXRESERVATIONTIMESPAN,
2022-09-06 16:08:19 +02:00
mailAddress,
2023-06-06 12:00:24 +02:00
"" ), // BC code
2022-09-06 16:08:19 +02:00
bike != null
2022-09-20 13:51:55 +02:00
? new Bike(
2022-09-06 16:08:19 +02:00
bike.Id,
2023-04-19 12:14:14 +02:00
LockModel.ILockIt /* Ensure consistent lock model value */,
2022-09-06 16:08:19 +02:00
bike.WheelType,
bike.TypeOfBike,
2023-04-19 12:14:14 +02:00
bike.AaRideType,
2022-09-06 16:08:19 +02:00
bike.Description)
: throw new ArgumentNullException(nameof(bike)),
drive,
2023-01-18 14:22:51 +01:00
dataSource,
2022-09-06 16:08:19 +02:00
isDemo,
group,
currentStationId,
operatorUri,
tariffDescription)
{
2022-09-20 13:51:55 +02:00
LockInfo = new LockInfo.Builder { Id = lockId, Guid = lockGuid, UserKey = userKey, AdminKey = adminKey, Seed = seed }.Build();
2022-09-06 16:08:19 +02:00
}
2021-05-13 20:03:07 +02:00
2022-09-06 16:08:19 +02:00
/// <summary>
/// Constructs a bike info object for a booked bike.
/// </summary>
2023-01-18 14:22:51 +01:00
/// <param name="bike">Unique id of bike.</param>
/// <param name="dataSource">Specified the source of the data.</param>
2022-09-06 16:08:19 +02:00
/// <param name="lockId">Id of the lock.</param>
/// <param name="lockGuid">GUID specifying the lock.</param>
/// <param name="bookedAt">Date time when bike was booked</param>
/// <param name="mailAddress">Mail address of user which booked bike.</param>
/// <param name="currentStationId">Name of station where bike is located, null if bike is on the road.</param>
/// <param name="operatorUri">Holds the uri of the operator or null, in case of single operator setup.</param>
/// <param name="tariffDescription">Hold tariff description of bike.</param>
/// <param name="wheelType"></param>
public BikeInfo(
2022-09-20 13:51:55 +02:00
Bike bike,
2023-08-31 12:31:38 +02:00
DriveMutable drive,
2023-01-18 14:22:51 +01:00
DataSource dataSource,
2022-09-06 16:08:19 +02:00
int lockId,
Guid lockGuid,
byte[] userKey,
byte[] adminKey,
byte[] seed,
DateTime bookedAt,
string mailAddress,
string currentStationId,
Uri operatorUri,
RentalDescription tariffDescription = null,
bool? isDemo = DEFAULTVALUEISDEMO,
IEnumerable<string> group = null) : base(
new StateInfo(
bookedAt,
mailAddress,
""),
bike != null
2022-09-20 13:51:55 +02:00
? new Bike(
2022-09-06 16:08:19 +02:00
bike.Id,
2023-04-19 12:14:14 +02:00
LockModel.ILockIt /* Ensure consistent lock model value */,
2022-09-06 16:08:19 +02:00
bike.WheelType,
bike.TypeOfBike,
2023-04-19 12:14:14 +02:00
bike.AaRideType,
2022-09-06 16:08:19 +02:00
bike.Description)
: throw new ArgumentNullException(),
drive,
2023-01-18 14:22:51 +01:00
dataSource,
2022-09-06 16:08:19 +02:00
isDemo,
group,
currentStationId,
operatorUri,
tariffDescription)
{
2022-09-20 13:51:55 +02:00
LockInfo = new LockInfo.Builder { Id = lockId, Guid = lockGuid, UserKey = userKey, AdminKey = adminKey, Seed = seed }.Build();
2022-09-06 16:08:19 +02:00
}
2021-05-13 20:03:07 +02:00
2023-04-19 12:14:14 +02:00
public BikeInfo(BC.BikeInfo bikeInfo, LockInfo lockInfo) : base(
2022-09-06 16:08:19 +02:00
bikeInfo ?? throw new ArgumentException($"Can not copy-construct {typeof(BikeInfo).Name}-object. Source bike info must not be null."))
{
LockInfo = lockInfo
?? throw new ArgumentException($"Can not copy-construct {typeof(BikeInfo).Name}-object. Source lock object must not be null.");
}
2021-05-13 20:03:07 +02:00
2022-09-20 13:51:55 +02:00
public LockInfo LockInfo { get; private set; }
2022-09-06 16:08:19 +02:00
}
2021-05-13 20:03:07 +02:00
}