2024-11-20 15:22:23 +05:00
|
|
|
using Microsoft.AspNetCore.Authorization;
|
2024-11-14 15:17:43 +05:00
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
using Persistence.Models;
|
|
|
|
using Persistence.Repositories;
|
|
|
|
|
|
|
|
namespace Persistence.API.Controllers;
|
|
|
|
[ApiController]
|
2024-11-20 15:22:23 +05:00
|
|
|
[Authorize]
|
2024-11-14 15:17:43 +05:00
|
|
|
[Route("api/[controller]")]
|
|
|
|
public class TimeSeriesController<TDto> : ControllerBase, ITimeSeriesDataApi<TDto>
|
|
|
|
where TDto : class, ITimeSeriesAbstractDto, new()
|
|
|
|
{
|
|
|
|
private ITimeSeriesDataRepository<TDto> timeSeriesDataRepository;
|
|
|
|
|
|
|
|
public TimeSeriesController(ITimeSeriesDataRepository<TDto> timeSeriesDataRepository)
|
|
|
|
{
|
|
|
|
this.timeSeriesDataRepository = timeSeriesDataRepository;
|
|
|
|
}
|
|
|
|
|
|
|
|
[HttpGet]
|
|
|
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
2024-11-21 17:02:36 +05:00
|
|
|
public async Task<IActionResult> Get(DateTimeOffset dateBegin, CancellationToken token)
|
2024-11-14 15:17:43 +05:00
|
|
|
{
|
2024-11-21 17:02:36 +05:00
|
|
|
var result = await this.timeSeriesDataRepository.GetGtDate(dateBegin, token);
|
2024-11-14 15:17:43 +05:00
|
|
|
return Ok(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
[HttpGet("datesRange")]
|
2024-11-21 17:02:36 +05:00
|
|
|
public async Task<IActionResult> GetDatesRange(CancellationToken token)
|
2024-11-14 15:17:43 +05:00
|
|
|
{
|
2024-11-21 17:02:36 +05:00
|
|
|
var result = await this.timeSeriesDataRepository.GetDatesRange(token);
|
2024-11-20 15:22:23 +05:00
|
|
|
return Ok(result);
|
2024-11-14 15:17:43 +05:00
|
|
|
}
|
|
|
|
|
2024-11-22 15:47:00 +05:00
|
|
|
[HttpGet("resampled")]
|
|
|
|
public async Task<IActionResult> GetResampledData(DateTimeOffset dateBegin, double intervalSec = 600d, int approxPointsCount = 1024)
|
2024-11-21 17:02:36 +05:00
|
|
|
{
|
2024-11-22 15:47:00 +05:00
|
|
|
var result = await this.timeSeriesDataRepository.GetResampledData(dateBegin, intervalSec, approxPointsCount);
|
|
|
|
return Ok(result);
|
2024-11-21 17:02:36 +05:00
|
|
|
}
|
|
|
|
|
2024-11-14 15:17:43 +05:00
|
|
|
[HttpPost]
|
2024-11-21 17:02:36 +05:00
|
|
|
public async Task<IActionResult> InsertRange(IEnumerable<TDto> dtos, CancellationToken token)
|
2024-11-14 15:17:43 +05:00
|
|
|
{
|
|
|
|
var result = await this.timeSeriesDataRepository.InsertRange(dtos, token);
|
|
|
|
return Ok(result);
|
|
|
|
}
|
2024-11-21 17:02:36 +05:00
|
|
|
|
|
|
|
|
2024-11-14 15:17:43 +05:00
|
|
|
}
|