119 lines
4.4 KiB
C#
119 lines
4.4 KiB
C#
|
using Microsoft.Extensions.Logging;
|
|||
|
using SchoolAgainStudyContracts.BindingModel;
|
|||
|
using SchoolAgainStudyContracts.BusinessLogicContracts;
|
|||
|
using SchoolAgainStudyContracts.SearchModel;
|
|||
|
using SchoolAgainStudyContracts.StorageContracts;
|
|||
|
using SchoolAgainStudyContracts.ViewModel;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SchoolAgainStudyBusinessLogic.BusinessLogic
|
|||
|
{
|
|||
|
public class InterestLogic : IInterestLogic
|
|||
|
{
|
|||
|
private readonly ILogger _logger;
|
|||
|
private readonly IInterestStorage _interestStorage;
|
|||
|
public InterestLogic(ILogger<InterestLogic> logger, IInterestStorage interestStorage)
|
|||
|
{
|
|||
|
_logger = logger;
|
|||
|
_interestStorage = interestStorage;
|
|||
|
}
|
|||
|
public List<InterestViewModel>? ReadList(InterestSearchModel? model)
|
|||
|
{
|
|||
|
_logger.LogInformation("ReadList. Title:{Title}.Id:{ Id}", model?.Title, model?.Id);
|
|||
|
var list = model == null ? _interestStorage.GetFullList() : _interestStorage.GetFilteredList(model);
|
|||
|
if (list == null)
|
|||
|
{
|
|||
|
_logger.LogWarning("ReadList return null list");
|
|||
|
return null;
|
|||
|
}
|
|||
|
_logger.LogInformation("ReadList. Count:{Count}", list.Count);
|
|||
|
return list;
|
|||
|
}
|
|||
|
public InterestViewModel? ReadElement(InterestSearchModel model)
|
|||
|
{
|
|||
|
if (model == null)
|
|||
|
{
|
|||
|
throw new ArgumentNullException(nameof(model));
|
|||
|
}
|
|||
|
_logger.LogInformation("ReadElement. Title:{Title}. Id:{ Id}", model.Title, model.Id);
|
|||
|
var element = _interestStorage.GetElement(model);
|
|||
|
if (element == null)
|
|||
|
{
|
|||
|
_logger.LogWarning("ReadElement element not found");
|
|||
|
return null;
|
|||
|
}
|
|||
|
_logger.LogInformation("ReadElement find. Id:{Id}", element.Id);
|
|||
|
return element;
|
|||
|
}
|
|||
|
public bool Create(InterestBindingModel model)
|
|||
|
{
|
|||
|
CheckModel(model);
|
|||
|
if (_interestStorage.Insert(model) == null)
|
|||
|
{
|
|||
|
_logger.LogWarning("Insert operation failed");
|
|||
|
return false;
|
|||
|
}
|
|||
|
return true;
|
|||
|
}
|
|||
|
public bool Update(InterestBindingModel model)
|
|||
|
{
|
|||
|
CheckModel(model);
|
|||
|
if (_interestStorage.Update(model) == null)
|
|||
|
{
|
|||
|
_logger.LogWarning("Update operation failed");
|
|||
|
return false;
|
|||
|
}
|
|||
|
return true;
|
|||
|
}
|
|||
|
public bool Delete(InterestBindingModel model)
|
|||
|
{
|
|||
|
CheckModel(model, false);
|
|||
|
_logger.LogInformation("Delete. Id:{Id}", model.Id);
|
|||
|
if (_interestStorage.Delete(model) == null)
|
|||
|
{
|
|||
|
_logger.LogWarning("Delete operation failed");
|
|||
|
return false;
|
|||
|
}
|
|||
|
return true;
|
|||
|
}
|
|||
|
private void CheckModel(InterestBindingModel model, bool withParams =
|
|||
|
true)
|
|||
|
{
|
|||
|
if (model == null)
|
|||
|
{
|
|||
|
throw new ArgumentNullException(nameof(model));
|
|||
|
}
|
|||
|
if (!withParams)
|
|||
|
{
|
|||
|
return;
|
|||
|
}
|
|||
|
if (string.IsNullOrEmpty(model.Title))
|
|||
|
{
|
|||
|
throw new ArgumentNullException("Не задано название", nameof(model.Title));
|
|||
|
}
|
|||
|
if (string.IsNullOrEmpty(model.Description))
|
|||
|
{
|
|||
|
throw new ArgumentNullException("Не задан пароль", nameof(model.Description));
|
|||
|
}
|
|||
|
if (model.StudentId <=0)
|
|||
|
{
|
|||
|
throw new ArgumentNullException("Неверно задан идентификатор школьника", nameof(model.StudentId));
|
|||
|
}
|
|||
|
_logger.LogInformation("Interest. Titel:{Title}.Description{Description}.StudentId:{StudentId}. Id: {Id}", model.Title, model.Description, model.StudentId, model.Id);
|
|||
|
var element = _interestStorage.GetElement(new InterestSearchModel
|
|||
|
{
|
|||
|
Title = model.Title,
|
|||
|
StudentId = model.StudentId
|
|||
|
});
|
|||
|
if (element != null && element.Id != model.Id )
|
|||
|
{
|
|||
|
throw new InvalidOperationException("Интерес с таким названием уже есть");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|