using AsbCloudApp.Data; using AsbCloudApp.Services; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using System.Collections.Generic; using System.Threading; using System.Threading.Tasks; namespace AsbCloudWebApi.Controllers { /// /// Контроллер для месторождений /// [Route("api/deposit")] [ApiController] [Authorize] public class DepositController : ControllerBase { private readonly IClusterService clusterService; public DepositController(IClusterService clusterService) { this.clusterService = clusterService; } /// /// Получает список доступных пользователю месторождений /// /// Токен отмены задачи /// [HttpGet] [ProducesResponseType(typeof(IEnumerable), (int)System.Net.HttpStatusCode.OK)] public async Task GetDepositsAsync(CancellationToken token = default) { int? idCompany = User.GetCompanyId(); if (idCompany is null) return Forbid(); var result = await clusterService.GetDepositsAsync((int)idCompany, token).ConfigureAwait(false); return Ok(result); } /// /// Получает список доступных пользователю месторождений (только скважины с параметрами бурения) /// /// Токен отмены задачи /// [HttpGet("drillParamsWells")] [ProducesResponseType(typeof(IEnumerable), (int)System.Net.HttpStatusCode.OK)] public async Task GetDepositsDrillParamsAsync(CancellationToken token = default) { int? idCompany = User.GetCompanyId(); if (idCompany is null) return Forbid(); var result = await clusterService.GetDepositsDrillParamsAsync((int)idCompany, token).ConfigureAwait(false); return Ok(result); } /// /// Получает список доступных пользователю кустов месторождения /// /// /// Токен отмены задачи /// [HttpGet("{depositId}")] [ProducesResponseType(typeof(IEnumerable), (int)System.Net.HttpStatusCode.OK)] public async Task GetClustersAsync(int depositId, CancellationToken token = default) { int? idCompany = User.GetCompanyId(); if (idCompany is null) return Forbid(); var result = await clusterService.GetClustersAsync((int)idCompany, depositId, token).ConfigureAwait(false); return Ok(result); } } }