2024-05-01 18:02:04 +04:00
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
using ComputerHardwareStoreContracts.BindingModels;
|
|
|
|
|
using ComputerHardwareStoreContracts.SearchModels;
|
|
|
|
|
using ComputerHardwareStoreContracts.StorageContracts;
|
2024-05-28 15:27:44 +04:00
|
|
|
|
using ComputerHardwareStoreContracts.BusinessLogicsContracts;
|
|
|
|
|
using ComputerHardwareStoreContracts.ViewModels;
|
2024-05-01 18:02:04 +04:00
|
|
|
|
|
|
|
|
|
namespace ComputerHardwareStoreREST.Controllers
|
|
|
|
|
{
|
2024-05-28 15:27:44 +04:00
|
|
|
|
[Route("api/[controller]/[action]")]
|
|
|
|
|
[ApiController]
|
|
|
|
|
public class StoreKeeperController : Controller
|
2024-05-01 18:02:04 +04:00
|
|
|
|
{
|
2024-05-28 15:27:44 +04:00
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
private readonly IStoreKeeperLogic _logic;
|
|
|
|
|
private readonly IMessageInfoLogic _mailLogic;
|
|
|
|
|
public StoreKeeperController(IStoreKeeperLogic logic, IMessageInfoLogic mailLogic, ILogger<StoreKeeperController> logger)
|
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
|
|
|
|
_logic = logic;
|
|
|
|
|
_mailLogic = mailLogic;
|
|
|
|
|
}
|
|
|
|
|
[HttpGet]
|
|
|
|
|
public StoreKeeperViewModel? Login(string login, string password)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
return _logic.ReadElement(new StoreKeeperSearchModel
|
|
|
|
|
{
|
|
|
|
|
Login = login,
|
|
|
|
|
Password = password
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка входа в систему");
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
[HttpPost]
|
|
|
|
|
public void Register(StoreKeeperBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_logic.Create(model);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка регистрации");
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
[HttpPost]
|
|
|
|
|
public void UpdateData(StoreKeeperBindingModel model)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_logic.Update(model);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка обновления данных");
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
[HttpGet]
|
|
|
|
|
public List<MessageInfoViewModel>? GetMessages(int clientId)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
return _mailLogic.ReadList(new MessageInfoSearchModel
|
|
|
|
|
{
|
|
|
|
|
ClientId = clientId
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.LogError(ex, "Ошибка получения писем клиента");
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-01 18:02:04 +04:00
|
|
|
|
}
|