forked from ddrilling/AsbCloudServer
64 lines
1.8 KiB
C#
64 lines
1.8 KiB
C#
using AsbCloudApp.Data;
|
|
using AsbCloudApp.Services;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace AsbCloudWebApi.Controllers
|
|
{
|
|
[Route("api/well")]
|
|
[ApiController]
|
|
[Authorize]
|
|
public class WellController : ControllerBase
|
|
{
|
|
private readonly IWellService wellService;
|
|
|
|
public WellController(IWellService wellService)
|
|
{
|
|
this.wellService = wellService;
|
|
}
|
|
|
|
[HttpGet]
|
|
[ProducesResponseType(typeof(IEnumerable<WellDto>), (int)System.Net.HttpStatusCode.OK)]
|
|
public async Task<IActionResult> GetWellsAsync(CancellationToken token = default)
|
|
{
|
|
var idCompany = User.GetCompanyId();
|
|
|
|
if (idCompany is null)
|
|
{
|
|
return NoContent();
|
|
}
|
|
|
|
var wells = await wellService.GetWellsByCompanyAsync((int)idCompany,
|
|
token).ConfigureAwait(false);
|
|
|
|
if (wells is null || !wells.Any())
|
|
return NoContent();
|
|
|
|
return Ok(wells);
|
|
}
|
|
|
|
[HttpGet("transmittingWells")]
|
|
[ProducesResponseType(typeof(IEnumerable<WellDto>), (int)System.Net.HttpStatusCode.OK)]
|
|
public async Task<IActionResult> GetTransmittingWellsAsync(CancellationToken token = default)
|
|
{
|
|
var idCompany = User.GetCompanyId();
|
|
|
|
if (idCompany is null)
|
|
return NoContent();
|
|
|
|
var transmittingWells = await wellService.GetTransmittingWellsAsync((int)idCompany,
|
|
token).ConfigureAwait(false);
|
|
|
|
if (transmittingWells is null || !transmittingWells.Any())
|
|
return NoContent();
|
|
|
|
return Ok(transmittingWells);
|
|
|
|
}
|
|
}
|
|
}
|