2024-02-12 12:46:44 +04:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
2024-02-26 14:27:55 +04:00
|
|
|
|
using TypographyBusinessLogic.BusinessLogics;
|
|
|
|
|
using TypographyContracts.BindingModels;
|
|
|
|
|
using TypographyContracts.BusinessLogicsContracts;
|
|
|
|
|
using TypographyContracts.SearchModels;
|
|
|
|
|
using TypographyContracts.StoragesContracts;
|
|
|
|
|
using TypographyContracts.ViewModels;
|
2024-02-12 12:46:44 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2024-02-26 14:27:55 +04:00
|
|
|
|
namespace TypographyBusinessLogic.BusinessLogics
|
2024-02-12 12:46:44 +04:00
|
|
|
|
{
|
2024-02-26 14:27:55 +04:00
|
|
|
|
public class PrintedLogic : IPrintedLogic
|
2024-02-12 12:46:44 +04:00
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
2024-02-26 14:27:55 +04:00
|
|
|
|
private readonly IPrintedStorage _snackStorage;
|
|
|
|
|
public PrintedLogic(ILogger<PrintedLogic> logger, IPrintedStorage snackStorage)
|
2024-02-12 12:46:44 +04:00
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_snackStorage = snackStorage;
|
|
|
|
|
}
|
2024-02-26 14:27:55 +04:00
|
|
|
|
public List<PrintedViewModel>? ReadList(PrintedSearchModel? model)
|
2024-02-12 12:46:44 +04:00
|
|
|
|
{
|
2024-02-26 14:27:55 +04:00
|
|
|
|
_logger.LogInformation("ReadList. PrintedName:{PrintedName}.Id:{ Id}", model?.PrintedName, model?.Id);
|
2024-02-12 12:46:44 +04:00
|
|
|
|
var list = model == null ? _snackStorage.GetFullList() : _snackStorage.GetFilteredList(model);
|
|
|
|
|
if (list == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("ReadList return null list");
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("ReadList. Count:{Count}", list.Count);
|
|
|
|
|
return list;
|
|
|
|
|
}
|
2024-02-26 14:27:55 +04:00
|
|
|
|
public PrintedViewModel? ReadElement(PrintedSearchModel model)
|
2024-02-12 12:46:44 +04:00
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(model));
|
|
|
|
|
}
|
2024-02-26 14:27:55 +04:00
|
|
|
|
_logger.LogInformation("ReadElement. PrintedName:{PrintedName}.Id:{ Id}", model.PrintedName, model.Id);
|
2024-02-12 12:46:44 +04:00
|
|
|
|
var element = _snackStorage.GetElement(model);
|
|
|
|
|
if (element == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("ReadElement element not found");
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("ReadElement find. Id:{Id}", element.Id);
|
|
|
|
|
return element;
|
|
|
|
|
}
|
2024-02-26 14:27:55 +04:00
|
|
|
|
public bool Create(PrintedBindingModel model)
|
2024-02-12 12:46:44 +04:00
|
|
|
|
{
|
|
|
|
|
CheckModel(model);
|
|
|
|
|
if (_snackStorage.Insert(model) == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Insert operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2024-02-26 14:27:55 +04:00
|
|
|
|
public bool Update(PrintedBindingModel model)
|
2024-02-12 12:46:44 +04:00
|
|
|
|
{
|
|
|
|
|
CheckModel(model);
|
|
|
|
|
if (_snackStorage.Update(model) == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Update operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2024-02-26 14:27:55 +04:00
|
|
|
|
public bool Delete(PrintedBindingModel model)
|
2024-02-12 12:46:44 +04:00
|
|
|
|
{
|
|
|
|
|
CheckModel(model, false);
|
|
|
|
|
_logger.LogInformation("Delete. Id:{Id}", model.Id);
|
|
|
|
|
if (_snackStorage.Delete(model) == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Delete operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2024-02-26 14:27:55 +04:00
|
|
|
|
private void CheckModel(PrintedBindingModel model, bool withParams = true)
|
2024-02-12 12:46:44 +04:00
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(model));
|
|
|
|
|
}
|
|
|
|
|
if (!withParams)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
2024-02-26 14:27:55 +04:00
|
|
|
|
if (string.IsNullOrEmpty(model.PrintedName))
|
2024-02-12 12:46:44 +04:00
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("Нет названия закуски",
|
2024-02-26 14:27:55 +04:00
|
|
|
|
nameof(model.PrintedName));
|
2024-02-12 12:46:44 +04:00
|
|
|
|
}
|
|
|
|
|
if (model.Price <= 0)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("Цена закуски должна быть больше 0", nameof(model.Price));
|
|
|
|
|
}
|
2024-02-26 14:27:55 +04:00
|
|
|
|
_logger.LogInformation("Printed. PrintedName:{PrintedName}.Price:{ Price}. Id: { Id}", model.PrintedName, model.Price, model.Id);
|
|
|
|
|
var element = _snackStorage.GetElement(new PrintedSearchModel
|
2024-02-12 12:46:44 +04:00
|
|
|
|
{
|
2024-02-26 14:27:55 +04:00
|
|
|
|
PrintedName = model.PrintedName
|
2024-02-12 12:46:44 +04:00
|
|
|
|
});
|
|
|
|
|
if (element != null && element.Id != model.Id)
|
|
|
|
|
{
|
|
|
|
|
throw new InvalidOperationException("Закуска с таким названием уже есть");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|