2023-08-14 18:30:31 +05:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using AsbCloudApp.Data;
|
|
|
|
|
using AsbCloudApp.Exceptions;
|
|
|
|
|
using AsbCloudApp.Requests;
|
2023-08-15 14:20:28 +05:00
|
|
|
|
using AsbCloudApp.Services;
|
2023-08-14 18:30:31 +05:00
|
|
|
|
using Microsoft.AspNetCore.Authorization;
|
2023-08-15 12:28:39 +05:00
|
|
|
|
using Microsoft.AspNetCore.Http;
|
2023-08-14 18:30:31 +05:00
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudWebApi.Controllers;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Ствол скважины
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Authorize]
|
|
|
|
|
[ApiController]
|
|
|
|
|
[Route("api/well/[controller]")]
|
|
|
|
|
public class WellboreController : ControllerBase
|
|
|
|
|
{
|
2023-08-15 14:20:28 +05:00
|
|
|
|
private readonly IWellboreService wellboreService;
|
2023-08-14 18:30:31 +05:00
|
|
|
|
|
2023-08-15 14:20:28 +05:00
|
|
|
|
public WellboreController(IWellboreService wellboreService)
|
2023-08-14 18:30:31 +05:00
|
|
|
|
{
|
2023-08-15 14:20:28 +05:00
|
|
|
|
this.wellboreService = wellboreService;
|
2023-08-14 18:30:31 +05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Получение ствола скважины
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="idWell">Id скважины</param>
|
2023-08-15 12:28:39 +05:00
|
|
|
|
/// <param name="idSection">Id типа секции скважины</param>
|
2023-08-14 18:30:31 +05:00
|
|
|
|
/// <param name="cancellationToken"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
|
2023-08-15 12:28:39 +05:00
|
|
|
|
[HttpGet("{idWell:int}/{idSection:int}")]
|
|
|
|
|
[ProducesResponseType(typeof(WellboreDto), StatusCodes.Status200OK)]
|
|
|
|
|
[ProducesResponseType(StatusCodes.Status204NoContent)]
|
|
|
|
|
public async Task<IActionResult> GetAsync(int idWell, int idSection, CancellationToken cancellationToken)
|
2023-08-14 18:30:31 +05:00
|
|
|
|
{
|
2023-08-15 14:20:28 +05:00
|
|
|
|
var wellbore = await wellboreService.GetWellboreAsync(idWell, idSection, cancellationToken);
|
2023-08-15 12:28:39 +05:00
|
|
|
|
|
|
|
|
|
if (wellbore is null)
|
|
|
|
|
return NoContent();
|
|
|
|
|
|
|
|
|
|
return Ok(wellbore);
|
2023-08-14 18:30:31 +05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Получение списка стволов скважин
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="ids">Пары идентификаторов скважины и секции</param>
|
|
|
|
|
/// <param name="skip">Опциональный параметр. Количество пропускаемых записей</param>
|
|
|
|
|
/// <param name="take">Опциональный параметр. Количество получаемых записей</param>
|
|
|
|
|
/// <param name="cancellationToken"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
[HttpGet]
|
2023-08-15 12:28:39 +05:00
|
|
|
|
[ProducesResponseType(typeof(IEnumerable<WellboreDto>), StatusCodes.Status200OK)]
|
2023-08-14 18:30:31 +05:00
|
|
|
|
public async Task<IActionResult> GetAllAsync([FromQuery] IEnumerable<string> ids,
|
|
|
|
|
int? skip,
|
|
|
|
|
int? take,
|
|
|
|
|
CancellationToken cancellationToken)
|
|
|
|
|
{
|
|
|
|
|
var request = new WellboreRequest
|
|
|
|
|
{
|
|
|
|
|
Ids = ParseIds(ids),
|
|
|
|
|
Skip = skip,
|
|
|
|
|
Take = take
|
|
|
|
|
};
|
|
|
|
|
|
2023-08-15 14:20:28 +05:00
|
|
|
|
return Ok(await wellboreService.GetWellboresAsync(request, cancellationToken));
|
2023-08-14 18:30:31 +05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static IEnumerable<(int, int?)> ParseIds(IEnumerable<string> ids)
|
|
|
|
|
{
|
|
|
|
|
var result = new List<(int, int?)>();
|
|
|
|
|
|
|
|
|
|
foreach (var id in ids)
|
|
|
|
|
{
|
|
|
|
|
var idPair = id.Split(',');
|
|
|
|
|
|
|
|
|
|
if (!int.TryParse(idPair[0], out var idWell))
|
|
|
|
|
throw new ArgumentInvalidException("Не удалось получить Id скважины", nameof(ids));
|
|
|
|
|
|
|
|
|
|
if (idPair.Length < 2 || !int.TryParse(idPair[1], out var idWellSectionType))
|
|
|
|
|
{
|
|
|
|
|
result.Add((idWell, null));
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
result.Add((idWell, idWellSectionType));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
}
|