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