2022-12-27 14:30:52 +05:00
|
|
|
|
using AsbCloudApp.Data.ProcessMap;
|
2023-02-02 12:04:50 +05:00
|
|
|
|
using AsbCloudApp.Repositories;
|
2022-04-11 18:00:34 +05:00
|
|
|
|
using AsbCloudApp.Services;
|
2023-05-29 17:50:20 +05:00
|
|
|
|
using AsbCloudWebApi.SignalR;
|
2022-04-11 18:00:34 +05:00
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
2023-05-29 17:50:20 +05:00
|
|
|
|
using Microsoft.AspNetCore.SignalR;
|
2021-10-14 10:18:43 +05:00
|
|
|
|
using System;
|
2021-10-13 17:34:32 +05:00
|
|
|
|
using System.Collections.Generic;
|
2023-06-30 17:31:11 +05:00
|
|
|
|
using System.Linq;
|
2021-10-13 17:34:32 +05:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudWebApi.Controllers
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2022-12-07 08:49:21 +05:00
|
|
|
|
/// РТК
|
2021-10-13 17:34:32 +05:00
|
|
|
|
/// </summary>
|
|
|
|
|
[ApiController]
|
2022-06-09 11:19:52 +05:00
|
|
|
|
[Route("api/[controller]")]
|
2021-10-14 16:16:35 +05:00
|
|
|
|
[Authorize]
|
2023-04-03 14:59:59 +05:00
|
|
|
|
public class ProcessMapController : CrudWellRelatedController<ProcessMapPlanDto, IProcessMapPlanRepository>
|
2021-10-13 17:34:32 +05:00
|
|
|
|
{
|
|
|
|
|
private readonly ITelemetryService telemetryService;
|
2023-05-29 17:50:20 +05:00
|
|
|
|
private readonly IHubContext<TelemetryHub> telemetryHubContext;
|
2023-04-03 14:59:59 +05:00
|
|
|
|
private readonly IProcessMapReportMakerService processMapReportService;
|
|
|
|
|
private readonly IProcessMapReportService processMapService;
|
2021-10-13 17:34:32 +05:00
|
|
|
|
|
2023-05-29 18:03:15 +05:00
|
|
|
|
private const string SirnalRMethodGetDataName = "UpdateProcessMap";
|
2023-05-29 17:50:20 +05:00
|
|
|
|
|
2023-02-08 10:42:54 +05:00
|
|
|
|
public ProcessMapController(
|
2023-02-08 15:46:16 +05:00
|
|
|
|
IWellService wellService,
|
2023-04-03 14:59:59 +05:00
|
|
|
|
IProcessMapPlanRepository repository,
|
|
|
|
|
IProcessMapReportMakerService processMapReportService,
|
|
|
|
|
IProcessMapReportService processMapService,
|
2023-05-29 17:50:20 +05:00
|
|
|
|
ITelemetryService telemetryService,
|
|
|
|
|
IHubContext<TelemetryHub> telemetryHubContext)
|
2022-12-14 08:41:19 +05:00
|
|
|
|
: base(wellService, repository)
|
2021-10-13 17:34:32 +05:00
|
|
|
|
{
|
|
|
|
|
this.telemetryService = telemetryService;
|
2023-05-29 17:50:20 +05:00
|
|
|
|
this.telemetryHubContext = telemetryHubContext;
|
2022-12-14 08:41:19 +05:00
|
|
|
|
this.processMapReportService = processMapReportService;
|
2023-02-08 10:42:54 +05:00
|
|
|
|
this.processMapService = processMapService;
|
|
|
|
|
|
2021-10-13 17:34:32 +05:00
|
|
|
|
}
|
2022-04-11 18:00:34 +05:00
|
|
|
|
|
2021-10-13 17:34:32 +05:00
|
|
|
|
/// <summary>
|
2022-01-05 17:50:45 +05:00
|
|
|
|
/// Возвращает все значения для коридоров бурения по uid панели
|
2021-10-13 17:34:32 +05:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="uid"> uid панели </param>
|
2021-10-14 10:18:43 +05:00
|
|
|
|
/// <param name="updateFrom"> Дата, с которой следует искать новые параметры </param>
|
2021-10-13 17:34:32 +05:00
|
|
|
|
/// <param name="token"> Токен отмены задачи </param>
|
2022-01-05 17:50:45 +05:00
|
|
|
|
/// <returns> Список параметров для коридоров бурения </returns>
|
2021-10-14 11:46:17 +05:00
|
|
|
|
[HttpGet]
|
2022-12-07 12:39:13 +05:00
|
|
|
|
[Obsolete("use GetByUidAsync(..) instead")]
|
2022-06-09 11:19:52 +05:00
|
|
|
|
[Route("/api/telemetry/{uid}/drillFlowChart")]
|
2021-10-14 16:16:35 +05:00
|
|
|
|
[AllowAnonymous]
|
2023-03-31 16:57:20 +05:00
|
|
|
|
[ProducesResponseType(typeof(IEnumerable<ProcessMapPlanDto>), (int)System.Net.HttpStatusCode.OK)]
|
2022-12-07 12:39:13 +05:00
|
|
|
|
public IActionResult GetByTelemetry(string uid, DateTime updateFrom, CancellationToken token)
|
|
|
|
|
{
|
|
|
|
|
var idWell = telemetryService.GetIdWellByTelemetryUid(uid);
|
|
|
|
|
if (idWell is null)
|
|
|
|
|
return BadRequest($"Wrong uid {uid}");
|
2023-06-30 17:31:11 +05:00
|
|
|
|
#warning implement Process map get method
|
|
|
|
|
return Ok(Enumerable.Empty<ProcessMapPlanDto>());
|
2022-12-07 12:39:13 +05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Возвращает РТК по uid телеметрии
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="uid"> uid телеметрии </param>
|
|
|
|
|
/// <param name="updateFrom"> Дата, с которой следует искать новые параметры </param>
|
|
|
|
|
/// <param name="token"> Токен отмены задачи </param>
|
|
|
|
|
/// <returns> Список параметров для коридоров бурения </returns>
|
|
|
|
|
[HttpGet]
|
|
|
|
|
[Route("/api/telemetry/{uid}/processMap")]
|
|
|
|
|
[AllowAnonymous]
|
2023-03-31 16:57:20 +05:00
|
|
|
|
[ProducesResponseType(typeof(IEnumerable<ProcessMapPlanDto>), (int)System.Net.HttpStatusCode.OK)]
|
2022-12-07 12:39:13 +05:00
|
|
|
|
public async Task<IActionResult> GetByUidAsync(string uid, DateTime updateFrom, CancellationToken token)
|
2021-10-13 17:34:32 +05:00
|
|
|
|
{
|
2021-12-07 18:27:52 +05:00
|
|
|
|
var idWell = telemetryService.GetIdWellByTelemetryUid(uid);
|
2021-10-14 16:16:35 +05:00
|
|
|
|
if (idWell is null)
|
|
|
|
|
return BadRequest($"Wrong uid {uid}");
|
2022-04-11 18:00:34 +05:00
|
|
|
|
|
2022-06-09 11:19:52 +05:00
|
|
|
|
var dto = await service.GetAllAsync((int)idWell,
|
2021-10-14 10:18:43 +05:00
|
|
|
|
updateFrom, token);
|
2022-04-11 18:00:34 +05:00
|
|
|
|
|
2021-10-13 17:34:32 +05:00
|
|
|
|
return Ok(dto);
|
|
|
|
|
}
|
2022-04-11 18:00:34 +05:00
|
|
|
|
|
2022-12-05 12:39:25 +05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Выгрузка расширенной РТК
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="wellId"></param>
|
2022-12-14 08:41:19 +05:00
|
|
|
|
/// /// <param name="token"></param>
|
2022-12-05 12:39:25 +05:00
|
|
|
|
/// <returns></returns>
|
|
|
|
|
/// <exception cref="NotImplementedException"></exception>
|
|
|
|
|
[HttpGet]
|
2022-12-07 12:57:28 +05:00
|
|
|
|
[Route("getReportFile/{wellId}")]
|
2022-12-07 10:57:23 +05:00
|
|
|
|
[ProducesResponseType(typeof(PhysicalFileResult), (int)System.Net.HttpStatusCode.OK)]
|
2022-12-14 08:41:19 +05:00
|
|
|
|
public async Task<IActionResult> GetReportFileAsync(int wellId, CancellationToken token)
|
2022-12-05 12:39:25 +05:00
|
|
|
|
{
|
2022-12-14 08:41:19 +05:00
|
|
|
|
var stream = await processMapReportService.MakeReportAsync(wellId, token);
|
|
|
|
|
if (stream != null)
|
|
|
|
|
{
|
|
|
|
|
var well = await wellService.GetOrDefaultAsync(wellId, token);
|
|
|
|
|
if (well is null)
|
|
|
|
|
return NoContent();
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
var fileName = $"РТК по скважине {well.Caption} куст {well.Cluster}.xlsx";
|
|
|
|
|
return File(stream, "application/octet-stream", fileName);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return NoContent();
|
2022-12-05 12:39:25 +05:00
|
|
|
|
}
|
2022-12-07 08:47:41 +05:00
|
|
|
|
|
2023-02-08 10:42:54 +05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Выгрузка режимной карты по бурению скважины
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="wellId"></param>
|
|
|
|
|
/// <param name="token"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
[HttpGet]
|
|
|
|
|
[Route("getDrillProcessMap/{wellId}")]
|
|
|
|
|
[ProducesResponseType(typeof(IEnumerable<ProcessMapReportDto>), (int)System.Net.HttpStatusCode.OK)]
|
|
|
|
|
public async Task<IActionResult> GetDrillProcessMap(int wellId, CancellationToken token)
|
|
|
|
|
{
|
2023-04-06 10:25:51 +05:00
|
|
|
|
var data = await processMapService.GetProcessMapReportAsync(wellId, token);
|
2023-02-08 15:46:16 +05:00
|
|
|
|
return Ok(data);
|
2023-02-08 10:42:54 +05:00
|
|
|
|
}
|
|
|
|
|
|
2022-12-07 08:47:41 +05:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Добавить запись
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="value"></param>
|
|
|
|
|
/// <param name="token"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
[HttpPost]
|
2023-03-31 16:57:20 +05:00
|
|
|
|
public override async Task<ActionResult<int>> InsertAsync([FromBody] ProcessMapPlanDto value, CancellationToken token)
|
2022-12-07 08:47:41 +05:00
|
|
|
|
{
|
|
|
|
|
value.IdUser = User.GetUserId() ?? -1;
|
2023-05-29 17:50:20 +05:00
|
|
|
|
var result = await base.InsertAsync(value, token);
|
2023-05-31 15:58:30 +05:00
|
|
|
|
await NotifyUsersBySignalR(value.IdWell, token);
|
2023-05-29 17:50:20 +05:00
|
|
|
|
return result;
|
2022-12-07 08:47:41 +05:00
|
|
|
|
}
|
|
|
|
|
|
2022-12-07 12:39:13 +05:00
|
|
|
|
/// <summary>
|
2022-12-07 08:47:41 +05:00
|
|
|
|
/// Редактировать запись по id
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="value">запись</param>
|
|
|
|
|
/// <param name="token"></param>
|
|
|
|
|
/// <returns>1 - успешно отредактировано, 0 - нет</returns>
|
|
|
|
|
[HttpPut]
|
2023-03-31 16:57:20 +05:00
|
|
|
|
public override async Task<ActionResult<int>> UpdateAsync([FromBody] ProcessMapPlanDto value, CancellationToken token)
|
2022-12-07 08:47:41 +05:00
|
|
|
|
{
|
|
|
|
|
value.IdUser = User.GetUserId() ?? -1;
|
2023-05-29 17:50:20 +05:00
|
|
|
|
var result = await base.UpdateAsync(value, token);
|
2023-05-31 15:58:30 +05:00
|
|
|
|
await NotifyUsersBySignalR(value.IdWell, token);
|
2023-05-29 17:50:20 +05:00
|
|
|
|
return result;
|
2022-12-07 08:47:41 +05:00
|
|
|
|
}
|
2023-05-19 16:51:41 +05:00
|
|
|
|
|
2023-05-29 17:50:20 +05:00
|
|
|
|
private async Task NotifyUsersBySignalR(int idWell, CancellationToken token)
|
|
|
|
|
{
|
|
|
|
|
var dtos = await service.GetAllAsync(idWell, null, token);
|
|
|
|
|
_ = Task.Run(() => telemetryHubContext.Clients.Group($"well_{idWell}")
|
|
|
|
|
.SendAsync(SirnalRMethodGetDataName, dtos), CancellationToken.None);
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-10-13 17:34:32 +05:00
|
|
|
|
}
|