140 lines
4.9 KiB
C#
140 lines
4.9 KiB
C#
using Microsoft.Extensions.Logging;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using System.Threading.Tasks;
|
||
using UniversityContracts.BindingModels;
|
||
using UniversityContracts.BusinessLogicsContracts;
|
||
using UniversityContracts.SearchModels;
|
||
using UniversityContracts.StorageContracts;
|
||
using UniversityContracts.ViewModels;
|
||
using UniversityDataModels.Enums;
|
||
|
||
namespace UniversityBusinessLogic.BusinessLogics
|
||
{
|
||
public class AttestationLogic : IAttestationLogic
|
||
{
|
||
private readonly ILogger _logger;
|
||
private readonly IAttestationStorage _attestationStorage;
|
||
public AttestationLogic(ILogger<AttestationLogic> logger, IAttestationStorage
|
||
attestationStorage)
|
||
{
|
||
_logger = logger;
|
||
_attestationStorage = attestationStorage;
|
||
}
|
||
public List<AttestationViewModel>? ReadList(AttestationSearchModel? model)
|
||
{
|
||
_logger.LogInformation("ReadList.AttestationId:{Id} ",
|
||
model?.Id);
|
||
var list = model == null ? _attestationStorage.GetFullList() :
|
||
_attestationStorage.GetFilteredList(model);
|
||
if (list == null)
|
||
{
|
||
_logger.LogWarning("ReadList return null list");
|
||
return null;
|
||
}
|
||
_logger.LogInformation("ReadList. Count:{Count}", list.Count);
|
||
return list;
|
||
}
|
||
public AttestationViewModel? ReadElement(AttestationSearchModel model)
|
||
{
|
||
if (model == null)
|
||
{
|
||
throw new ArgumentNullException(nameof(model));
|
||
}
|
||
_logger.LogInformation("ReadElement.Id:{Id}",
|
||
model.Id);
|
||
var element = _attestationStorage.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 CreateAttestation(AttestationBindingModel model)
|
||
{
|
||
CheckModel(model);
|
||
|
||
model.Score = AttestationScore.Неявка;
|
||
|
||
if (_attestationStorage.Insert(model) == null)
|
||
{
|
||
_logger.LogWarning("Insert operation failed");
|
||
return false;
|
||
}
|
||
return true;
|
||
}
|
||
public bool ScoreUpdate(AttestationBindingModel model, AttestationScore newScore)
|
||
{
|
||
CheckModel(model);
|
||
|
||
if (!Enum.IsDefined(typeof(AttestationScore), newScore))
|
||
{
|
||
_logger.LogWarning("Score update to " + newScore.ToString() + " operation failed. Attestation status incorrect.");
|
||
return false;
|
||
}
|
||
|
||
if (_attestationStorage.Update(model) == null)
|
||
{
|
||
_logger.LogWarning("Update operation failed");
|
||
return false;
|
||
}
|
||
|
||
model.Score = newScore;
|
||
return true;
|
||
}
|
||
public bool SetPass(AttestationBindingModel model)
|
||
{
|
||
return ScoreUpdate(model, AttestationScore.Зачёт);
|
||
}
|
||
|
||
public bool SetNotPass(AttestationBindingModel model)
|
||
{
|
||
return ScoreUpdate(model, AttestationScore.Незачёт);
|
||
}
|
||
|
||
public bool SetTwo(AttestationBindingModel model)
|
||
{
|
||
return ScoreUpdate(model, AttestationScore.Неудовлетворительно);
|
||
}
|
||
public bool SetThree(AttestationBindingModel model)
|
||
{
|
||
return ScoreUpdate(model, AttestationScore.Удовлетворительно);
|
||
}
|
||
public bool SetFour(AttestationBindingModel model)
|
||
{
|
||
return ScoreUpdate(model, AttestationScore.Хорошо);
|
||
}
|
||
public bool SetFive(AttestationBindingModel model)
|
||
{
|
||
return ScoreUpdate(model, AttestationScore.Отлично);
|
||
}
|
||
|
||
private void CheckModel(AttestationBindingModel model, bool withParams = true)
|
||
{
|
||
if (model == null)
|
||
{
|
||
throw new ArgumentNullException(nameof(model));
|
||
}
|
||
if (!withParams)
|
||
{
|
||
return;
|
||
}
|
||
if (string.IsNullOrEmpty(model.FormOfEvaluation))
|
||
{
|
||
throw new ArgumentNullException("Не выбрана форма оценивания", nameof(model.FormOfEvaluation));
|
||
}
|
||
|
||
if (model.StudentId <= 0)
|
||
{
|
||
throw new ArgumentNullException("Некорректный идентификатор студента", nameof(model.StudentId));
|
||
}
|
||
_logger.LogInformation("Attestation. AttestationId:{Id}.FormOfEvaluation:{FormOfEvaluation}. StudentId: { StudentId}",
|
||
model.Id, model.FormOfEvaluation, model.StudentId);
|
||
}
|
||
}
|
||
}
|