117 lines
4.4 KiB
C#
117 lines
4.4 KiB
C#
using Microsoft.Extensions.Logging;
|
|
using SquirrelContract.BusinessLogicContracts;
|
|
using SquirrelContract.DataModels;
|
|
using SquirrelContract.Exceptions;
|
|
using SquirrelContract.Extensions;
|
|
using SquirrelContract.StoragesContracts;
|
|
using System.Text.Json;
|
|
|
|
namespace SquirrelBusinessLogic.Implementations;
|
|
|
|
public class SaleBusinessLogicContract(ISaleStorageContract
|
|
saleStorageContract, ILogger logger) : ISaleBusinessLogicContract
|
|
{
|
|
private readonly ILogger _logger = logger;
|
|
private readonly ISaleStorageContract _saleStorageContract = saleStorageContract;
|
|
|
|
public List<SaleDataModel> GetAllSalesByPeriod(DateTime fromDate, DateTime toDate)
|
|
{
|
|
_logger.LogInformation("GetAllSales params: {fromDate}, {toDate}", fromDate, toDate);
|
|
if (fromDate.IsDateNotOlder(toDate))
|
|
{
|
|
throw new IncorrectDatesException(fromDate, toDate);
|
|
}
|
|
return _saleStorageContract.GetList(fromDate, toDate) ?? throw new NullListException();
|
|
}
|
|
|
|
public List<SaleDataModel> GetAllSalesByEmployeeByPeriod(string employeeId, DateTime fromDate, DateTime toDate)
|
|
{
|
|
_logger.LogInformation("GetAllSales params: {employeeId}, {fromDate}, {toDate}", employeeId, fromDate, toDate);
|
|
if (fromDate.IsDateNotOlder(toDate))
|
|
{
|
|
throw new IncorrectDatesException(fromDate, toDate);
|
|
}
|
|
if (employeeId.IsEmpty())
|
|
{
|
|
throw new ArgumentNullException(nameof(employeeId));
|
|
}
|
|
if (!employeeId.IsGuid())
|
|
{
|
|
throw new ValidationException("The value in the field employeeId is not a unique identifier.");
|
|
}
|
|
return _saleStorageContract.GetList(fromDate, toDate, employeeId: employeeId) ?? throw new NullListException();
|
|
}
|
|
|
|
public List<SaleDataModel> GetAllSalesByClientByPeriod(string clientId, DateTime fromDate, DateTime toDate)
|
|
{
|
|
_logger.LogInformation("GetAllSales params: {buyerId}, {fromDate}, {toDate}", clientId, fromDate, toDate);
|
|
if (fromDate.IsDateNotOlder(toDate))
|
|
{
|
|
throw new IncorrectDatesException(fromDate, toDate);
|
|
}
|
|
if (clientId.IsEmpty())
|
|
{
|
|
throw new ArgumentNullException(nameof(clientId));
|
|
}
|
|
if (!clientId.IsGuid())
|
|
{
|
|
throw new ValidationException("The value in the field clientId is not a unique identifier.");
|
|
}
|
|
return _saleStorageContract.GetList(fromDate, toDate, clientId: clientId) ?? throw new NullListException();
|
|
}
|
|
|
|
public List<SaleDataModel> GetAllSalesByCocktailByPeriod(string cocktailId, DateTime fromDate, DateTime toDate)
|
|
{
|
|
_logger.LogInformation("GetAllSales params: {cocktailId}, {fromDate}, {toDate}", cocktailId, fromDate, toDate);
|
|
if (fromDate.IsDateNotOlder(toDate))
|
|
{
|
|
throw new IncorrectDatesException(fromDate, toDate);
|
|
}
|
|
if (cocktailId.IsEmpty())
|
|
{
|
|
throw new ArgumentNullException(nameof(cocktailId));
|
|
}
|
|
if (!cocktailId.IsGuid())
|
|
{
|
|
throw new ValidationException("The value in the field cocktailId is not a unique identifier.");
|
|
}
|
|
return _saleStorageContract.GetList(fromDate, toDate, cocktailId: cocktailId) ?? throw new NullListException();
|
|
}
|
|
|
|
public SaleDataModel GetSaleByData(string data)
|
|
{
|
|
_logger.LogInformation("Get element by data: {data}", data);
|
|
if (data.IsEmpty())
|
|
{
|
|
throw new ArgumentNullException(nameof(data));
|
|
}
|
|
if (!data.IsGuid())
|
|
{
|
|
throw new ValidationException("Id is not a unique identifier");
|
|
}
|
|
return _saleStorageContract.GetElementById(data) ?? throw new ElementNotFoundException(data);
|
|
}
|
|
|
|
public void InsertSale(SaleDataModel saleDataModel)
|
|
{
|
|
_logger.LogInformation("New data: {json}", JsonSerializer.Serialize(saleDataModel));
|
|
ArgumentNullException.ThrowIfNull(saleDataModel);
|
|
saleDataModel.Validate();
|
|
_saleStorageContract.AddElement(saleDataModel);
|
|
}
|
|
|
|
public void CancelSale(string id)
|
|
{
|
|
_logger.LogInformation("Cancel by id: {id}", id);
|
|
if (id.IsEmpty())
|
|
{
|
|
throw new ArgumentNullException(nameof(id));
|
|
}
|
|
if (!id.IsGuid())
|
|
{
|
|
throw new ValidationException("Id is not a unique identifier");
|
|
}
|
|
_saleStorageContract.DelElement(id);
|
|
}
|
|
}
|