2024-04-21 19:12:38 +04:00
|
|
|
|
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
|
2024-04-25 17:00:45 +04:00
|
|
|
|
{
|
2024-04-21 19:12:38 +04:00
|
|
|
|
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)
|
|
|
|
|
{
|
2024-04-25 17:00:45 +04:00
|
|
|
|
_logger.LogInformation("ReadList.AttestationId:{Id} ",
|
|
|
|
|
model?.Id);
|
2024-04-21 19:12:38 +04:00
|
|
|
|
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));
|
|
|
|
|
}
|
2024-04-25 17:00:45 +04:00
|
|
|
|
_logger.LogInformation("ReadElement.Id:{Id}",
|
|
|
|
|
model.Id);
|
2024-04-21 19:12:38 +04:00
|
|
|
|
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;
|
|
|
|
|
}
|
2024-04-25 17:00:45 +04:00
|
|
|
|
public bool CreateAttestation(AttestationBindingModel model)
|
2024-04-21 19:12:38 +04:00
|
|
|
|
{
|
|
|
|
|
CheckModel(model);
|
|
|
|
|
|
|
|
|
|
if (_attestationStorage.Insert(model) == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Insert operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2024-04-29 19:06:11 +04:00
|
|
|
|
public bool DeleteAttestation(AttestationBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
CheckModel(model, false);
|
|
|
|
|
_logger.LogInformation("Delete. Id:{Id}", model.Id);
|
|
|
|
|
if (_attestationStorage.Delete(model) == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Delete attestation operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
public bool UpdateAttestation(AttestationBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
CheckModel(model, false);
|
|
|
|
|
_logger.LogInformation("Update. Id:{Id}", model.Id);
|
|
|
|
|
if (_attestationStorage.Update(model) == null)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogWarning("Update attestation operation failed");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2024-04-21 19:12:38 +04:00
|
|
|
|
|
2024-04-26 00:03:46 +04:00
|
|
|
|
private void CheckModel(AttestationBindingModel model, bool withParams = true)
|
2024-04-21 19:12:38 +04:00
|
|
|
|
{
|
|
|
|
|
if (model == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException(nameof(model));
|
|
|
|
|
}
|
|
|
|
|
if (!withParams)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
2024-04-26 00:03:46 +04:00
|
|
|
|
if (string.IsNullOrEmpty(model.FormOfEvaluation))
|
2024-04-21 19:12:38 +04:00
|
|
|
|
{
|
2024-04-26 00:03:46 +04:00
|
|
|
|
throw new ArgumentNullException("Не выбрана форма оценивания", nameof(model.FormOfEvaluation));
|
2024-04-21 19:12:38 +04:00
|
|
|
|
}
|
2024-04-29 15:37:19 +04:00
|
|
|
|
if (model.UserId < 0)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentNullException("Некорректный идентификатор пользователя", nameof(model.UserId));
|
|
|
|
|
}
|
2024-04-21 19:12:38 +04:00
|
|
|
|
|
2024-04-26 00:03:46 +04:00
|
|
|
|
if (model.StudentId <= 0)
|
2024-04-21 19:12:38 +04:00
|
|
|
|
{
|
2024-04-26 00:03:46 +04:00
|
|
|
|
throw new ArgumentNullException("Некорректный идентификатор студента", nameof(model.StudentId));
|
2024-04-21 19:12:38 +04:00
|
|
|
|
}
|
2024-04-29 15:37:19 +04:00
|
|
|
|
_logger.LogInformation("Attestation. AttestationId:{Id}.FormOfEvaluation:{FormOfEvaluation}. StudentId: {StudentId}. UserId: {UserId}",
|
|
|
|
|
model.Id, model.FormOfEvaluation, model.StudentId, model.UserId);
|
2024-04-21 19:12:38 +04:00
|
|
|
|
}
|
2024-04-25 17:00:45 +04:00
|
|
|
|
}
|
2024-04-21 19:12:38 +04:00
|
|
|
|
}
|