DD.WellWorkover.Cloud/AsbCloudWebApi/Controllers/DataController.cs

87 lines
3.5 KiB
C#
Raw Normal View History

2021-04-07 18:01:56 +05:00
using AsbCloudApp.Data;
using AsbCloudApp.Services;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
2021-04-07 18:01:56 +05:00
namespace AsbCloudWebApi.Controllers
{
/// <summary>
/// Контроллер сбора данных от буровых
/// </summary>
[Route("api/well")]
[ApiController]
[Authorize]
public class DataController : ControllerBase
{
2021-04-23 10:21:25 +05:00
private readonly IDataService telemetryDataService;
private readonly IWellService wellService;
2021-04-07 18:01:56 +05:00
public DataController(IDataService telemetryDataService, IWellService wellService)
2021-04-07 18:01:56 +05:00
{
this.telemetryDataService = telemetryDataService;
this.wellService = wellService;
2021-04-07 18:01:56 +05:00
}
/// <summary>
/// Возвращает данные САУБ по скважине.
/// По умолчанию за последние 10 минут.
2021-04-07 18:01:56 +05:00
/// </summary>
2021-07-27 14:43:30 +05:00
/// <param name="idWell">id скважины</param>
/// <param name="begin">дата начала выборки. По умолчанию: текущее время - intervalSec</param>
/// <param name="intervalSec">интервал времени даты начала выборки, секунды</param>
/// <param name="approxPointsCount">желаемое количество точек. Если в выборке точек будет больше, то выборка будет прорежена.</param>
/// <param name="token">Токен завершения задачи</param>
2021-04-07 18:01:56 +05:00
/// <returns></returns>
[HttpGet]
2021-07-27 14:43:30 +05:00
[Route("{idWell}/data")]
2021-04-07 18:01:56 +05:00
[ProducesResponseType(typeof(IEnumerable<DataSaubBaseDto>), (int)System.Net.HttpStatusCode.OK)]
public async Task<IActionResult> GetDataAsync(int idWell, DateTime begin = default,
int intervalSec = 600, int approxPointsCount = 1024, CancellationToken token = default)
2021-04-07 18:01:56 +05:00
{
2021-04-23 10:21:25 +05:00
if (begin == default)
begin = DateTime.Now.AddSeconds(-intervalSec);
var content = await telemetryDataService.GetAsync(idWell, begin,
intervalSec, approxPointsCount, token);
if (content is null || !content.Any())
return NoContent();
return Ok(content);
2021-04-07 18:01:56 +05:00
}
/// <summary>
/// Возвращает диапазон дат сохраненных данных.
/// </summary>
/// <param name="idWell">id скважины</param>
/// <param name="token">Токен завершения задачи</param>
/// <returns></returns>
[HttpGet]
2021-07-27 14:43:30 +05:00
[Route("{idWell}/dataDatesRange")]
[ProducesResponseType(typeof(DatesRangeDto), (int)System.Net.HttpStatusCode.OK)]
public async Task<IActionResult> GetDataDatesRangeAsync(int idWell,
CancellationToken token = default)
{
2021-07-21 15:22:58 +05:00
int? idCompany = User.GetCompanyId();
2021-07-21 15:22:58 +05:00
if (idCompany is null)
return Forbid();
bool isCompanyOwnsWell = await wellService.IsCompanyInvolvedInWellAsync((int)idCompany,
idWell, token);
2021-07-21 15:22:58 +05:00
if (!isCompanyOwnsWell)
return Forbid();
DatesRangeDto dataDatesRange = await telemetryDataService.GetDataDatesRangeAsync(idWell,
token);
return Ok(dataDatesRange);
}
2021-04-07 18:01:56 +05:00
}
}