using AsbCloudApp.Data;
using AsbCloudApp.Services;
using AsbCloudWebApi.SignalR;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.SignalR;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Threading;
using System.Threading.Tasks;
using AsbCloudApp.Requests;
using AsbCloudWebApi.SignalR.Clients;
namespace AsbCloudWebApi.Controllers;
///
/// Отчет (временная диаграмма с сообщениями)
///
[Route("api/well/{idWell}/report")]
[ApiController]
public class ReportController : ControllerBase
{
private readonly IReportService reportService;
private readonly IWellService wellService;
private readonly IHubContext reportsHubContext;
public ReportController(
IReportService reportService,
IWellService wellService,
IHubContext reportsHubContext)
{
this.reportService = reportService;
this.wellService = wellService;
this.reportsHubContext = reportsHubContext;
}
///
/// Создает отчет по скважине с указанными параметрами
///
/// Id скважины
/// Параметры запроса
/// Токен для отмены задачи
/// id фоновой задачи формирования отчета
[HttpPost]
[Permission]
[ProducesResponseType(typeof(int), (int)System.Net.HttpStatusCode.OK)]
public async Task CreateReportAsync([Required] int idWell,
[FromQuery] ReportParametersRequest request,
CancellationToken token)
{
var idCompany = User.GetCompanyId();
var idUser = User.GetUserId();
if ((idCompany is null) || (idUser is null))
return Forbid();
if (!await wellService.IsCompanyInvolvedInWellAsync((int)idCompany,
idWell, token).ConfigureAwait(false))
return Forbid();
void HandleReportProgressAsync(object progress, string id) =>
Task.Run(async() =>
{
await reportsHubContext.Clients.Group($"Report_{id}")
.GetReportProgress(progress, token);
}, token);
var id = reportService.EnqueueCreateReportWork(idWell, (int)idUser, request, HandleReportProgressAsync);
return Ok(id);
}
///
/// Возвращает имена всех отчетов по скважине
///
/// id скважины
/// Токен для отмены задачи
/// Список имен существующих отчетов (отчетов)
[HttpGet]
[Permission]
[ProducesResponseType(typeof(IEnumerable), (int)System.Net.HttpStatusCode.OK)]
public async Task GetAllReportsNamesByWellAsync(int idWell, CancellationToken token)
{
int? idCompany = User.GetCompanyId();
if (idCompany is null)
return Forbid();
if (!await wellService.IsCompanyInvolvedInWellAsync((int)idCompany,
idWell, token).ConfigureAwait(false))
return Forbid();
var reports = await reportService.GetAllReportsByWellAsync(idWell, token).ConfigureAwait(false);
return Ok(reports);
}
///
/// Возвращает прогнозируемое количество страниц будущего отчета
///
/// Id скважины
/// Параметры запроса
/// Токен для отмены задачи
/// прогнозируемое кол-во страниц отчета
[HttpGet("reportSize")]
[Permission]
[ProducesResponseType(typeof(string), (int)System.Net.HttpStatusCode.OK)]
public async Task GetReportSizeAsync([Required] int idWell,
[FromQuery] ReportParametersRequest request,
CancellationToken token)
{
int? idCompany = User.GetCompanyId();
if (idCompany is null)
return Forbid();
if (!await wellService.IsCompanyInvolvedInWellAsync((int)idCompany,
idWell, token).ConfigureAwait(false))
return Forbid();
int reportSize = reportService.GetReportPagesCount(idWell,
request.Begin, request.End, request.StepSeconds, request.Format);
return Ok(reportSize);
}
///
/// Возвращает даты самого старого и самого свежего отчетов в БД
///
/// id скважины
/// Токен для отмены задачи
/// Даты самого старого и самого свежего отчетов в БД
[HttpGet("datesRange")]
[Permission]
[ProducesResponseType(typeof(DatesRangeDto), (int)System.Net.HttpStatusCode.OK)]
[ProducesResponseType((int)System.Net.HttpStatusCode.NoContent)]
public async Task GetReportsDateRangeAsync(int idWell, CancellationToken token)
{
int? idCompany = User.GetCompanyId();
if (idCompany is null)
return Forbid();
if (!await wellService.IsCompanyInvolvedInWellAsync((int)idCompany,
idWell, token).ConfigureAwait(false))
return Forbid();
var wellReportsDatesRange = reportService.GetDatesRangeOrDefault(idWell);
if (wellReportsDatesRange is null)
return NoContent();
if (wellReportsDatesRange.From == wellReportsDatesRange.To)
return NoContent();
return Ok(wellReportsDatesRange);
}
}