2024-11-26 12:27:52 +05:00
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
2024-11-25 13:49:07 +05:00
|
|
|
|
using Persistence.Models;
|
|
|
|
|
using Persistence.Repositories;
|
|
|
|
|
|
|
|
|
|
namespace Persistence.API.Controllers
|
|
|
|
|
{
|
|
|
|
|
[ApiController]
|
2024-11-26 12:27:52 +05:00
|
|
|
|
[Authorize]
|
2024-11-25 13:49:07 +05:00
|
|
|
|
[Route("api/[controller]")]
|
|
|
|
|
public class TechMessagesController : ControllerBase, ITechMessages
|
|
|
|
|
{
|
|
|
|
|
private readonly ITechMessagesRepository techMessagesRepository;
|
|
|
|
|
|
|
|
|
|
public TechMessagesController(ITechMessagesRepository techMessagesRepository)
|
|
|
|
|
{
|
|
|
|
|
this.techMessagesRepository = techMessagesRepository;
|
|
|
|
|
}
|
|
|
|
|
|
2024-11-26 10:23:48 +05:00
|
|
|
|
[HttpGet]
|
|
|
|
|
public async Task<ActionResult<PaginationContainer<TechMessageDto>>> GetPage([FromQuery] RequestDto request, CancellationToken token)
|
2024-11-25 13:49:07 +05:00
|
|
|
|
{
|
2024-11-26 10:23:48 +05:00
|
|
|
|
var result = await techMessagesRepository.GetPage(request, token);
|
|
|
|
|
|
|
|
|
|
return Ok(result);
|
2024-11-25 13:49:07 +05:00
|
|
|
|
}
|
|
|
|
|
|
2024-11-26 10:23:48 +05:00
|
|
|
|
[HttpGet("statistics")]
|
2024-11-25 13:49:07 +05:00
|
|
|
|
public async Task<ActionResult<int>> GetStatistics(int importantId, string autoDrillingSystem, CancellationToken token)
|
|
|
|
|
{
|
|
|
|
|
var result = await techMessagesRepository.GetStatistics(importantId, autoDrillingSystem, token);
|
|
|
|
|
|
|
|
|
|
return Ok(result);
|
|
|
|
|
}
|
|
|
|
|
|
2024-11-26 10:23:48 +05:00
|
|
|
|
[HttpGet("systems")]
|
2024-11-25 13:49:07 +05:00
|
|
|
|
public async Task<ActionResult<IEnumerable<string>>> GetSystems(CancellationToken token)
|
|
|
|
|
{
|
|
|
|
|
var result = await techMessagesRepository.GetSystems(token);
|
|
|
|
|
|
|
|
|
|
return Ok(result);
|
|
|
|
|
}
|
|
|
|
|
|
2024-11-26 10:23:48 +05:00
|
|
|
|
[HttpPost]
|
|
|
|
|
public async Task<ActionResult<int>> InsertRange([FromBody] IEnumerable<TechMessageDto> dtos, CancellationToken token)
|
2024-11-25 13:49:07 +05:00
|
|
|
|
{
|
|
|
|
|
var result = await techMessagesRepository.InsertRange(dtos, token);
|
|
|
|
|
|
2024-11-26 12:27:52 +05:00
|
|
|
|
return CreatedAtAction(nameof(InsertRange), result);
|
2024-11-25 13:49:07 +05:00
|
|
|
|
}
|
2024-11-26 14:07:36 +05:00
|
|
|
|
|
|
|
|
|
[HttpGet("categories")]
|
|
|
|
|
public ActionResult<Dictionary<int, string>> GetImportantCategories()
|
|
|
|
|
{
|
|
|
|
|
var result = new Dictionary<int, string>()
|
|
|
|
|
{
|
|
|
|
|
{ 0, "System" },
|
|
|
|
|
{ 1, "Авария" },
|
|
|
|
|
{ 2, "Предупреждение" },
|
|
|
|
|
{ 3, "Инфо" },
|
|
|
|
|
{ 4, "Прочее" }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return Ok(result);
|
|
|
|
|
}
|
2024-11-25 13:49:07 +05:00
|
|
|
|
}
|
|
|
|
|
}
|