DD.WellWorkover.Cloud/AsbCloudWebApi/Controllers/DrillingProgramController.cs

69 lines
2.7 KiB
C#
Raw Normal View History

using AsbCloudApp.Services;
2021-08-29 17:25:16 +05:00
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using System.IO;
using System.Threading;
using System.Threading.Tasks;
namespace AsbCloudWebApi.Controllers
{
2021-08-29 17:29:24 +05:00
[Route("api/well/{idWell}/drillingProgram")]
2021-08-29 17:25:16 +05:00
[ApiController]
[Authorize]
public class DrillingProgramController : ControllerBase
{
private readonly IDrillingProgramService drillingProgramService;
private readonly IFileService fileService;
public DrillingProgramController(IDrillingProgramService drillingProgramService, IFileService fileService)
{
this.drillingProgramService = drillingProgramService;
this.fileService = fileService;
}
/// <summary>
/// Создает программу бурения
/// </summary>
/// <param name="idWell"> id скважины </param>
/// <param name="token"> Токен отмены задачи </param>
/// <returns> Возвращает файл программы бурения </returns>
2021-08-29 17:25:16 +05:00
[HttpGet]
[ProducesResponseType(typeof(FileResult), (int)System.Net.HttpStatusCode.OK)]
2021-08-29 17:25:16 +05:00
public async Task<IActionResult> GetAsync(int idWell, CancellationToken token = default)
{
var fileInfo = await drillingProgramService.GetAsync(idWell, token)
.ConfigureAwait(false);
if (fileInfo is null)
return NoContent();
var relativePath = fileService.GetUrl(fileInfo);
return PhysicalFile(Path.GetFullPath(relativePath), "application/octet-stream", fileInfo.Name);
}
/// <summary>
/// Создает программу бурения
/// </summary>
/// <param name="idWell"> id скважины </param>
/// <param name="token"> Токен отмены задачи </param>
/// <returns> Возвращает ссылку на файл программы бурения в облаке </returns>
[HttpGet("webUrl")]
[ProducesResponseType(typeof(string), (int)System.Net.HttpStatusCode.OK)]
public async Task<IActionResult> GetFileWebLinkAsync(int idWell, CancellationToken token = default)
{
var fileInfo = await drillingProgramService.GetAsync(idWell, token)
.ConfigureAwait(false);
if (fileInfo is null)
return NoContent();
var userLogin = User.Identity?.Name ?? "";
var fileWebUrl = await fileService.GetFileWebUrlAsync(fileInfo,
userLogin, token);
return Ok(fileWebUrl);
}
2021-08-29 17:25:16 +05:00
}
}