using AsbCloudApp.Data; using AsbCloudApp.Services; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using AsbCloudApp.Data.WellOperation; namespace AsbCloudWebApi.Controllers; /// /// Статистика по операциям (заведенным вручную) на скважине /// [ApiController] [Authorize] [Route("api")] public class OperationStatController : ControllerBase { private readonly IOperationsStatService operationsStatService; private readonly IWellOperationService wellOperationService; private readonly IWellService wellService; public OperationStatController( IOperationsStatService operationsStatService, IWellService wellService, IWellOperationService wellOperationService) { this.operationsStatService = operationsStatService; this.wellService = wellService; this.wellOperationService = wellOperationService; } /// /// Формирует данные по среднему и максимальному МСП на кусту по id скважины /// /// id скважины с данного куста (через нее будут получены данные) /// /// Возвращает данные по среднему и максимальному МСП на кусту [HttpGet("well/{idWell}/ropStat")] [Permission] [ProducesResponseType(typeof(ClusterRopStatDto), (int)System.Net.HttpStatusCode.OK)] public async Task GetClusterRopStatByIdWellAsync([FromRoute] int idWell, CancellationToken token) { if (!await CanUserAccessToWellAsync(idWell, token).ConfigureAwait(false)) return Forbid(); var result = await operationsStatService.GetOrDefaultRopStatAsync( idWell, token).ConfigureAwait(false); return Ok(result); } /// /// Формирует данные по среднему и максимальному МСП на кусту по uid панели /// /// id передающей данные панели /// /// Возвращает данные по среднему и максимальному МСП на кусту [HttpGet("telemetry/{uid}/ropStat")] [ProducesResponseType(typeof(ClusterRopStatDto), (int)System.Net.HttpStatusCode.OK)] [AllowAnonymous] public async Task GetClusterRopStatByUidAsync([FromRoute] string uid, CancellationToken token) { var idWell = wellService.TelemetryService.GetIdWellByTelemetryUid(uid); if (idWell is null) return NoContent(); var result = await operationsStatService.GetOrDefaultRopStatAsync( (int)idWell, token).ConfigureAwait(false); return Ok(result); } /// /// Получает статистику по скважинам куста /// /// id куста /// /// [HttpGet("cluster/{idCluster}/stat")] [Permission] [ProducesResponseType(typeof(StatClusterDto), (int)System.Net.HttpStatusCode.OK)] public async Task GetStatClusterAsync(int idCluster, CancellationToken token) { int? idCompany = User.GetCompanyId(); if (idCompany is null) return Forbid(); var result = await operationsStatService.GetOrDefaultStatClusterAsync(idCluster, idCompany.Value, token) .ConfigureAwait(false); return Ok(result); } /// /// Получает статистику по списку скважин /// /// список скважин /// /// [HttpGet("wellsStats")] [Permission] [ProducesResponseType(typeof(IEnumerable), (int)System.Net.HttpStatusCode.OK)] public async Task GetWellsStatAsync([FromQuery] IEnumerable idWells, CancellationToken token) { int? idCompany = User.GetCompanyId(); if (idCompany is null) return Forbid(); var allowedWells = await wellService.GetAsync(new() { IdCompany = idCompany }, token); var protectedIdWells = idWells.Where(id => allowedWells.Any(allowed => allowed.Id == id)); var result = await operationsStatService.GetWellsStatAsync(protectedIdWells, token) .ConfigureAwait(false); return Ok(result); } /// /// Получает статистику по скважине /// /// id скважины /// /// [HttpGet("well/{idWell}/stat")] [Permission] [ProducesResponseType(typeof(StatWellDto), (int)System.Net.HttpStatusCode.OK)] public async Task GetStatWellAsync(int idWell, CancellationToken token) { if (!await CanUserAccessToWellAsync(idWell, token).ConfigureAwait(false)) return Forbid(); var result = await operationsStatService.GetOrDefaultWellStatAsync(idWell, token) .ConfigureAwait(false); return Ok(result); } /// /// Получает данные для графика глубина-день /// /// /// /// [HttpGet("well/{idWell}/tvd")] [Permission] [ProducesResponseType(typeof(IEnumerable>), (int)System.Net.HttpStatusCode.OK)] public async Task GetTvdAsync(int idWell, CancellationToken token) { if (!await CanUserAccessToWellAsync(idWell, token).ConfigureAwait(false)) return Forbid(); var result = await wellOperationService.GetTvdAsync(idWell, token); return Ok(result); } private async Task CanUserAccessToWellAsync(int idWell, CancellationToken token) { int? idCompany = User.GetCompanyId(); return idCompany is not null && await wellService.IsCompanyInvolvedInWellAsync((int)idCompany, idWell, token).ConfigureAwait(false); } }