2023-04-01 22:41:11 +04:00
|
|
|
|
using CarServiceContracts.BindingModels;
|
|
|
|
|
using CarServiceContracts.BusinessLogicsContracts;
|
|
|
|
|
using CarServiceContracts.SearchModels;
|
|
|
|
|
using CarServiceContracts.StorageContracts;
|
|
|
|
|
using CarServiceContracts.ViewModels;
|
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
|
|
|
|
|
namespace CarServiceBusinessLogic.BusinessLogics
|
|
|
|
|
{
|
|
|
|
|
public class ItemLogic : IItemLogic
|
|
|
|
|
{
|
|
|
|
|
private readonly ILogger _logger;
|
2023-04-05 22:15:31 +04:00
|
|
|
|
private readonly IItemStorage _itemStorage;
|
|
|
|
|
public ItemLogic(ILogger<ItemLogic> logger, IItemStorage itemStorage)
|
2023-04-01 22:41:11 +04:00
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
2023-04-05 22:15:31 +04:00
|
|
|
|
_itemStorage = itemStorage;
|
2023-04-01 22:41:11 +04:00
|
|
|
|
}
|
|
|
|
|
public List<ItemViewModel>? ReadList(ItemSearchModel? model)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogInformation("ReadList. Id: {Id}", model?.Id);
|
2023-04-05 22:15:31 +04:00
|
|
|
|
var list = model == null ? _itemStorage.GetFullList() : _itemStorage.GetFilteredList(model);
|
2023-04-01 22:41:11 +04:00
|
|
|
|
if (list == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("ReadList return null list");
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("ReadList. Count: {Count}", list.Count);
|
|
|
|
|
return list;
|
|
|
|
|
}
|
|
|
|
|
public ItemViewModel? ReadElement(ItemSearchModel model)
|
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(model));
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("ReadElement. Id: {Id}", model.Id);
|
2023-04-05 22:15:31 +04:00
|
|
|
|
var element = _itemStorage.GetElement(model);
|
2023-04-01 22:41:11 +04:00
|
|
|
|
if (element == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("ReadElement element not found");
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("ReadElement found. Id: {Id}", element.Id);
|
|
|
|
|
return element;
|
|
|
|
|
}
|
|
|
|
|
public bool Create(ItemBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
CheckModel(model);
|
2023-04-05 22:15:31 +04:00
|
|
|
|
if (_itemStorage.Insert(model) == null)
|
2023-04-01 22:41:11 +04:00
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Insert operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
public bool Update(ItemBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
CheckModel(model);
|
2023-04-05 22:15:31 +04:00
|
|
|
|
if (_itemStorage.Update(model) == null)
|
2023-04-01 22:41:11 +04:00
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Update operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
public bool Delete(ItemBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
CheckModel(model, false);
|
|
|
|
|
_logger.LogInformation("Delete. Id:{Id}", model.Id);
|
2023-04-05 22:15:31 +04:00
|
|
|
|
if (_itemStorage.Delete(model) == null)
|
2023-04-01 22:41:11 +04:00
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Delete operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
private void CheckModel(ItemBindingModel model, bool withParams = true)
|
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(model));
|
|
|
|
|
}
|
|
|
|
|
if (!withParams)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
2023-04-05 22:15:31 +04:00
|
|
|
|
//Заполнено ли название?
|
|
|
|
|
if (string.IsNullOrEmpty(model.Name))
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Item name is empty");
|
|
|
|
|
throw new ArgumentException("Не введено название");
|
|
|
|
|
}
|
|
|
|
|
//Название уникально?
|
|
|
|
|
var existingItem = _itemStorage.GetElement(new() { Name = model.Name });
|
|
|
|
|
if (existingItem != null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Item name is not unique");
|
|
|
|
|
throw new ArgumentException("Работа с таким названием уже есть");
|
|
|
|
|
}
|
|
|
|
|
//Цена больше 0?
|
|
|
|
|
if (model.Price <= 0)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Work Price is <= 0");
|
|
|
|
|
throw new ArgumentException("Цена должна быть больше 0");
|
|
|
|
|
}
|
2023-04-01 22:41:11 +04:00
|
|
|
|
_logger.LogInformation("Item. Id: {Id}", model.Id);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|