PIbd-22_Smirnov_A.A._Securi.../SecuritySystem/SecuritySystemBusinessLogiс/BusinessLogic/ClientLogic.cs

161 lines
5.2 KiB
C#
Raw Normal View History

2024-05-08 08:03:51 +04:00
using SecuritySystemContracts.BindingModels;
using SecuritySystemContracts.BusinessLogicsContracts;
using SecuritySystemContracts.SearchModels;
using SecuritySystemContracts.StoragesContracts;
using SecuritySystemContracts.ViewModels;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SecuritySystemBusinessLogic.BusinessLogic
{
public class ClientLogic : IClientLogic
{
2024-05-08 08:37:10 +04:00
private readonly ILogger _logger;
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
private readonly IClientStorage _clientStorage;
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
public ClientLogic(ILogger<ClientLogic> logger, IClientStorage clientStorage)
2024-05-08 08:03:51 +04:00
{
2024-05-08 08:37:10 +04:00
_logger = logger;
_clientStorage = clientStorage;
}
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
public List<ClientViewModel>? ReadList(ClientSearchModel? model)
{
_logger.LogInformation("ReadList. ClientFIO:{ClientFIO}. Id:{Id}", model?.ClientFIO, model?.Id);
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
//list хранит весь список в случае, если model пришло со значением null на вход метода
var list = model == null ? _clientStorage.GetFullList() : _clientStorage.GetFilteredList(model);
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
if (list == null)
{
_logger.LogWarning("ReadList return null list");
return null;
}
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
_logger.LogInformation("ReadList. Count:{Count}", list.Count);
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
return list;
}
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
public ClientViewModel? ReadElement(ClientSearchModel model)
{
if (model == null)
{
throw new ArgumentNullException(nameof(model));
}
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
_logger.LogInformation("ReadList. ClientFIO:{ClientFIO}. Id:{Id}", model.ClientFIO, model?.Id);
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
var element = _clientStorage.GetElement(model);
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
if (element == null)
{
_logger.LogWarning("ReadElement element not found");
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
return null;
}
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
_logger.LogInformation("ReadElement find. Id:{Id}", element.Id);
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
return element;
}
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
public bool Create(ClientBindingModel model)
{
CheckModel(model);
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
if (_clientStorage.Insert(model) == null)
{
_logger.LogWarning("Insert operation failed");
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
return false;
}
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
return true;
}
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
public bool Update(ClientBindingModel model)
{
CheckModel(model);
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
if (_clientStorage.Update(model) == null)
{
_logger.LogWarning("Update operation failed");
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
return false;
}
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
return true;
}
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
public bool Delete(ClientBindingModel model)
{
CheckModel(model, false);
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
_logger.LogInformation("Delete. Id:{Id}", model.Id);
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
if (_clientStorage.Delete(model) == null)
{
_logger.LogWarning("Delete operation failed");
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
return false;
}
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
return true;
}
2024-05-08 08:03:51 +04:00
2024-05-08 08:37:10 +04:00
//проверка входного аргумента для методов Insert, Update и Delete
private void CheckModel(ClientBindingModel model, bool withParams = true)
{
if (model == null)
{
throw new ArgumentNullException(nameof(model));
}
//так как при удалении передаём как параметр false
if (!withParams)
{
return;
}
//проверка на наличие ФИО
if (string.IsNullOrEmpty(model.ClientFIO))
{
throw new ArgumentNullException("Отсутствие ФИО в учётной записи", nameof(model.ClientFIO));
}
//проверка на наличие почты
if (string.IsNullOrEmpty(model.Email))
{
throw new ArgumentNullException("Отсутствие почты в учётной записи (логина)", nameof(model.Email));
}
//проверка на наличие пароля
if (string.IsNullOrEmpty(model.Password))
{
throw new ArgumentNullException("Отсутствие пароля в учётной записи", nameof(model.Password));
}
_logger.LogInformation("Client. ClientFIO:{ClientFIO}. Email:{Email}. Password:{Password}. Id:{Id}",
model.ClientFIO, model.Email, model.Password, model.Id);
//для проверка на наличие такого же аккаунта
var element = _clientStorage.GetElement(new ClientSearchModel
{
Email = model.Email,
});
//если элемент найден и его Id не совпадает с Id переданного объекта
if (element != null && element.Id != model.Id)
{
throw new InvalidOperationException("Аккаунт с таким логином уже есть");
}
}
}
2024-05-08 08:03:51 +04:00
}