using ForumContracts.BindingModels; using ForumContracts.StorageContracts; using ForumContracts.BusinessLogicContracts; using ForumContracts.SearchModels; using ForumContracts.ViewModels; using Microsoft.Extensions.Logging; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; namespace ForumBusinessLogic.BusinessLogic { public class UserLogic : IUserLogic { private readonly ILogger _logger; private readonly IUserStorage _userStorage; public UserLogic(ILogger logger, IUserStorage userStorage) { _logger = logger; _userStorage = userStorage; } public bool Create(UserBindingModel model) { CheckModel(model); if (_userStorage.Insert(model) == null) { _logger.LogWarning("Insert 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.Nickname)) { throw new ArgumentNullException("Нет ника пользователя", nameof(model.Nickname)); } if (string.IsNullOrEmpty(model.Email)) { throw new ArgumentNullException("Нет почты пользователя", nameof(model.Email)); } if (string.IsNullOrEmpty(model.Password)) { throw new ArgumentNullException("Нет пароля пользователя", nameof(model.Password)); } _logger.LogInformation("User. Nickname: {Nickname}. Email: {Email}. Id: {Id}", model.Nickname, model.Email, model.Id); var element = _userStorage.GetElement(new UserSearchModel { Nickname = model.Nickname, Email = model.Email }); if (element != null && element.Id != model.Id) { throw new InvalidOperationException("Пользователь с такой почтой и ником уже есть"); } } public bool Delete(UserBindingModel model) { CheckModel(model, false); _logger.LogInformation("Delete. Id: {Id}", model.Id); if (_userStorage.Delete(model) == null) { _logger.LogWarning("Delete operation failed"); return false; } return true; } public UserViewModel? ReadElement(UserSearchModel model) { if (model == null) { throw new ArgumentNullException(nameof(model)); } _logger.LogInformation("ReadElement. Nickname: {Nickname}. Email: {Email}. Id: {Id}.", model.Nickname, 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; } public List? ReadList(UserSearchModel? model) { _logger.LogInformation("ReadList. Nickname: {Nickname}. Email: {Email}. Id: {Id}.", model?.Nickname, 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; } public bool Update(UserBindingModel model) { CheckModel(model); if (_userStorage.Update(model) == null) { _logger.LogWarning("Update operation failed"); return false; } return true; } } }