forked from ddrilling/AsbCloudServer
54 lines
2.2 KiB
C#
54 lines
2.2 KiB
C#
using AsbCloudApp.Data.Trajectory;
|
||
using AsbCloudApp.Repositories;
|
||
using AsbCloudApp.Services;
|
||
using AsbCloudInfrastructure.Services.Trajectory;
|
||
using AsbCloudInfrastructure.Services.Trajectory.Export;
|
||
using Microsoft.AspNetCore.Mvc;
|
||
using System.Collections.Generic;
|
||
using System.Threading;
|
||
using System.Threading.Tasks;
|
||
using AsbCloudInfrastructure.Services.Trajectory.Parser;
|
||
|
||
namespace AsbCloudWebApi.Controllers.Trajectory;
|
||
|
||
/// <summary>
|
||
/// Плановая траектория (загрузка и хранение)
|
||
/// </summary>
|
||
[Route("api/well/{idWell}/[controller]")]
|
||
[ApiController]
|
||
public class TrajectoryPlanController : TrajectoryEditableController<TrajectoryGeoPlanDto>
|
||
{
|
||
private readonly TrajectoryService trajectoryVisualizationService;
|
||
|
||
protected override string TemplateFileName => "ЕЦП_шаблон_файла_плановая_траектория.xlsx";
|
||
|
||
public TrajectoryPlanController(IWellService wellService,
|
||
TrajectoryPlanParser parserService,
|
||
TrajectoryPlanExportService trajectoryExportService,
|
||
ITrajectoryEditableRepository<TrajectoryGeoPlanDto> trajectoryRepository,
|
||
TrajectoryService trajectoryVisualizationService)
|
||
: base(wellService, parserService, trajectoryExportService, trajectoryRepository)
|
||
{
|
||
this.trajectoryVisualizationService = trajectoryVisualizationService;
|
||
}
|
||
|
||
/// <summary>
|
||
/// Получение координат для визуализации траектории (плановой и фактической)
|
||
/// </summary>
|
||
/// <param name="idWell"></param>
|
||
/// <param name="token"></param>
|
||
/// <returns></returns>
|
||
[HttpGet("trajectoryCartesianPlanFact")]
|
||
[ProducesResponseType(
|
||
typeof(TrajectoryPlanFactDto<IEnumerable<TrajectoryCartesianPlanDto>, IEnumerable<TrajectoryCartesianFactDto>>),
|
||
(int)System.Net.HttpStatusCode.OK)]
|
||
public async Task<IActionResult> GetTrajectoryCartesianPlanFactAsync(int idWell, CancellationToken token)
|
||
{
|
||
if (!await CanUserAccessToWellAsync(idWell,
|
||
token).ConfigureAwait(false))
|
||
return Forbid();
|
||
|
||
var result = await trajectoryVisualizationService.GetTrajectoryCartesianAsync(idWell, token);
|
||
return Ok(result);
|
||
}
|
||
} |