forked from ddrilling/AsbCloudServer
97 lines
2.9 KiB
C#
97 lines
2.9 KiB
C#
using System.Collections.Generic;
|
||
using System.Threading;
|
||
using System.Threading.Tasks;
|
||
using AsbCloudApp.Data;
|
||
using AsbCloudApp.Exceptions;
|
||
using AsbCloudApp.Requests;
|
||
using AsbCloudApp.Services;
|
||
using Microsoft.AspNetCore.Authorization;
|
||
using Microsoft.AspNetCore.Http;
|
||
using Microsoft.AspNetCore.Mvc;
|
||
|
||
namespace AsbCloudWebApi.Controllers;
|
||
|
||
/// <summary>
|
||
/// Ствол скважины
|
||
/// </summary>
|
||
[Authorize]
|
||
[ApiController]
|
||
[Route("api/well/[controller]")]
|
||
public class WellboreController : ControllerBase
|
||
{
|
||
private readonly IWellboreService wellboreService;
|
||
|
||
public WellboreController(IWellboreService wellboreService)
|
||
{
|
||
this.wellboreService = wellboreService;
|
||
}
|
||
|
||
/// <summary>
|
||
/// Получение ствола скважины
|
||
/// </summary>
|
||
/// <param name="idWell">Id скважины</param>
|
||
/// <param name="idSection">Id типа секции скважины</param>
|
||
/// <param name="cancellationToken"></param>
|
||
/// <returns></returns>
|
||
|
||
[HttpGet("{idWell:int}/{idSection:int}")]
|
||
[ProducesResponseType(typeof(WellboreDto), StatusCodes.Status200OK)]
|
||
[ProducesResponseType(StatusCodes.Status204NoContent)]
|
||
public async Task<IActionResult> GetAsync(int idWell, int idSection, CancellationToken cancellationToken)
|
||
{
|
||
var wellbore = await wellboreService.GetWellboreAsync(idWell, idSection, cancellationToken);
|
||
|
||
if (wellbore is null)
|
||
return NoContent();
|
||
|
||
return Ok(wellbore);
|
||
}
|
||
|
||
/// <summary>
|
||
/// Получение списка стволов скважин
|
||
/// </summary>
|
||
/// <param name="ids">Пары идентификаторов скважины и секции</param>
|
||
/// <param name="skip">Опциональный параметр. Количество пропускаемых записей</param>
|
||
/// <param name="take">Опциональный параметр. Количество получаемых записей</param>
|
||
/// <param name="cancellationToken"></param>
|
||
/// <returns></returns>
|
||
[HttpGet]
|
||
[ProducesResponseType(typeof(IEnumerable<WellboreDto>), StatusCodes.Status200OK)]
|
||
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
|
||
};
|
||
|
||
return Ok(await wellboreService.GetWellboresAsync(request, cancellationToken));
|
||
}
|
||
|
||
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;
|
||
}
|
||
} |