2024-04-29 22:25:24 +04:00
|
|
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
|
using PolyclinicContracts.BindingModels;
|
2024-04-29 22:01:58 +04:00
|
|
|
|
using PolyclinicContracts.BusinessLogicsContracts;
|
|
|
|
|
using PolyclinicContracts.SearchModels;
|
2024-04-29 22:25:24 +04:00
|
|
|
|
using PolyclinicContracts.StoragesContracts;
|
2024-04-29 22:01:58 +04:00
|
|
|
|
using PolyclinicContracts.ViewModels;
|
|
|
|
|
|
|
|
|
|
namespace PolyclinicBusinessLogic.BusinessLogics
|
|
|
|
|
{
|
|
|
|
|
public class UserLogic : IUserLogic
|
|
|
|
|
{
|
2024-04-29 22:25:24 +04:00
|
|
|
|
private ILogger _logger;
|
|
|
|
|
private IUserStorage _userStorage;
|
|
|
|
|
|
2024-05-23 14:58:59 +04:00
|
|
|
|
public UserLogic(ILogger<UserLogic> logger, IUserStorage userStorage)
|
2024-04-29 22:25:24 +04:00
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_userStorage = userStorage;
|
|
|
|
|
}
|
|
|
|
|
|
2024-04-29 22:01:58 +04:00
|
|
|
|
public bool Create(UserBindingModel model)
|
|
|
|
|
{
|
2024-04-29 22:25:24 +04:00
|
|
|
|
CheckModel(model);
|
|
|
|
|
if (_userStorage.Insert(model) == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Insert operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
2024-04-29 22:01:58 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool Delete(UserBindingModel model)
|
|
|
|
|
{
|
2024-04-29 22:25:24 +04:00
|
|
|
|
CheckModel(model, false);
|
|
|
|
|
_logger.LogInformation("Delete. Id:{Id}", model.Id);
|
|
|
|
|
if (_userStorage.Delete(model) == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Delete operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
2024-04-29 22:01:58 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public UserViewModel? ReadElement(UserSearchModel model)
|
|
|
|
|
{
|
2024-04-29 22:25:24 +04:00
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(model));
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("ReadElement. Email:{Email}. Id:{Id}", model.Email, model.Id);
|
|
|
|
|
var element = _userStorage.GetElement(model);
|
|
|
|
|
if (element == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("ReadElement element not found");
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("ReadElement find. Id:{Id}", element.Id);
|
|
|
|
|
return element;
|
2024-04-29 22:01:58 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<UserViewModel>? ReadList(UserSearchModel? model)
|
|
|
|
|
{
|
2024-04-29 22:25:24 +04:00
|
|
|
|
_logger.LogInformation("ReadList. Email:{Email}. Id:{Id}", model?.Email, model?.Id);
|
|
|
|
|
var list = model == null ? _userStorage.GetFullList() : _userStorage.GetFilteredList(model);
|
|
|
|
|
if (list == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("ReadList return null list");
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("ReadList. Count:{Count}", list.Count);
|
|
|
|
|
return list;
|
2024-04-29 22:01:58 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool Update(UserBindingModel model)
|
|
|
|
|
{
|
2024-04-29 22:25:24 +04:00
|
|
|
|
CheckModel(model);
|
|
|
|
|
if (_userStorage.Update(model) == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Update operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
private void CheckModel(UserBindingModel model, bool withParams = true)
|
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(model));
|
|
|
|
|
}
|
|
|
|
|
if (!withParams)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (string.IsNullOrEmpty(model.Email))
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("Нет email пользователя", nameof(model.Email));
|
|
|
|
|
}
|
|
|
|
|
if (string.IsNullOrEmpty(model.Password))
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("Нет пароля пользователя", nameof(model.Password));
|
|
|
|
|
}
|
|
|
|
|
if (string.IsNullOrEmpty(model.FIO))
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("Нет фио пользователя", nameof(model.FIO));
|
|
|
|
|
}
|
|
|
|
|
_logger.LogInformation("User. Email:{Email}. Id: {Id}", model.Email, model.Id);
|
|
|
|
|
var element = _userStorage.GetElement(new UserSearchModel
|
|
|
|
|
{
|
|
|
|
|
Email = model.Email
|
|
|
|
|
});
|
|
|
|
|
if (element != null && element.Id != model.Id)
|
|
|
|
|
{
|
|
|
|
|
throw new InvalidOperationException("Пользователь с таким email уже есть");
|
|
|
|
|
}
|
2024-04-29 22:01:58 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|