119 lines
4.3 KiB
C#
119 lines
4.3 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 LessonLogic : ILessonLogic
|
||
{
|
||
private readonly ILogger _logger;
|
||
private readonly ILessonStorage _lessonStorage;
|
||
public LessonLogic(ILogger<LessonLogic> logger, ILessonStorage lessonStorage)
|
||
{
|
||
_logger = logger;
|
||
_lessonStorage = lessonStorage;
|
||
}
|
||
public List<LessonViewModel>? ReadList(LessonSearchModel? model)
|
||
{
|
||
_logger.LogInformation("ReadList. Title:{Title}.Id:{ Id}", model?.Title, model?.Id);
|
||
var list = model == null ? _lessonStorage.GetFullList() : _lessonStorage.GetFilteredList(model);
|
||
if (list == null)
|
||
{
|
||
_logger.LogWarning("ReadList return null list");
|
||
return null;
|
||
}
|
||
_logger.LogInformation("ReadList. Count:{Count}", list.Count);
|
||
return list;
|
||
}
|
||
public LessonViewModel? ReadElement(LessonSearchModel model)
|
||
{
|
||
if (model == null)
|
||
{
|
||
throw new ArgumentNullException(nameof(model));
|
||
}
|
||
_logger.LogInformation("ReadElement. Title:{Title}. Id:{ Id}", model.Title, model.Id);
|
||
var element = _lessonStorage.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(LessonBindingModel model)
|
||
{
|
||
CheckModel(model);
|
||
if (_lessonStorage.Insert(model) == null)
|
||
{
|
||
_logger.LogWarning("Insert operation failed");
|
||
return false;
|
||
}
|
||
return true;
|
||
}
|
||
public bool Update(LessonBindingModel model)
|
||
{
|
||
CheckModel(model);
|
||
if (_lessonStorage.Update(model) == null)
|
||
{
|
||
_logger.LogWarning("Update operation failed");
|
||
return false;
|
||
}
|
||
return true;
|
||
}
|
||
public bool Delete(LessonBindingModel model)
|
||
{
|
||
CheckModel(model, false);
|
||
_logger.LogInformation("Delete. Id:{Id}", model.Id);
|
||
if (_lessonStorage.Delete(model) == null)
|
||
{
|
||
_logger.LogWarning("Delete operation failed");
|
||
return false;
|
||
}
|
||
return true;
|
||
}
|
||
private void CheckModel(LessonBindingModel 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 (model.TeacherId <= 0)
|
||
{
|
||
throw new ArgumentNullException("Неверно задан идентификатор учителя", nameof(model.TeacherId));
|
||
}
|
||
if (model.ProductId <= 0)
|
||
{
|
||
throw new ArgumentNullException("Неверно задан идентификатор изделия", nameof(model.ProductId));
|
||
}
|
||
_logger.LogInformation("Lesson. Titel:{Title}.ProductId{ProductId}.TeacherId:{TeacherId}. Id: {Id}", model.Title, model.ProductId, model.TeacherId, model.Id);
|
||
var element = _lessonStorage.GetElement(new LessonSearchModel
|
||
{
|
||
Title = model.Title,
|
||
TeacherId = model.TeacherId
|
||
});
|
||
if (element != null && element.Id != model.Id)
|
||
{
|
||
throw new InvalidOperationException("Занятие с таким названием уже есть");
|
||
}
|
||
}
|
||
}
|
||
}
|