using AsbCloudApp.Data; using AsbCloudApp.Services; using Microsoft.AspNetCore.Authorization; using Microsoft.AspNetCore.Mvc; using System.IO; using System.Threading; using System.Threading.Tasks; namespace AsbCloudWebApi.Controllers { [Route("api/well/{idWell}/drillingProgram")] [ApiController] [Authorize] public class DrillingProgramController : ControllerBase { private readonly IDrillingProgramService drillingProgramService; private readonly IFileService fileService; private readonly IWellService wellService; public DrillingProgramController(IDrillingProgramService drillingProgramService, IFileService fileService, IWellService wellService) { this.drillingProgramService = drillingProgramService; this.fileService = fileService; this.wellService = wellService; } /// /// Создает программу бурения /// /// id скважины /// Токен отмены задачи /// Возвращает файл программы бурения [HttpGet] [ProducesResponseType(typeof(FileResult), (int)System.Net.HttpStatusCode.OK)] public async Task GetAsync(int idWell, CancellationToken token = default) { var idCompany = User.GetCompanyId(); var fileChangerId = User.GetUserId(); if (idCompany is null || fileChangerId is null || !await wellService.IsCompanyInvolvedInWellAsync((int)idCompany, idWell, token).ConfigureAwait(false)) return Forbid(); var fileInfo = await drillingProgramService.GetAsync(idWell, (int)fileChangerId, token) .ConfigureAwait(false); if (fileInfo is null) return NoContent(); var relativePath = fileService.GetUrl(fileInfo); return PhysicalFile(Path.GetFullPath(relativePath), "application/octet-stream", fileInfo.Name); } /// /// Создает программу бурения /// /// id скважины /// Токен отмены задачи /// Возвращает ссылку на файл программы бурения в облаке [HttpGet("webUrl")] [ProducesResponseType(typeof(string), (int)System.Net.HttpStatusCode.OK)] public async Task GetFileWebLinkAsync(int idWell, CancellationToken token = default) { var idCompany = User.GetCompanyId(); var fileChangerId = User.GetUserId(); if (idCompany is null || fileChangerId is null || !await wellService.IsCompanyInvolvedInWellAsync((int)idCompany, idWell, token).ConfigureAwait(false)) return Forbid(); var fileInfo = await drillingProgramService.GetAsync(idWell, (int)fileChangerId, 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); } /// /// Регистрирует совершенные действия с частями программы бурения /// /// id скважины /// id действия /// id файла /// Комментарий /// Токен отмены задачи /// [HttpPost("fileMark")] [ProducesResponseType(typeof(FileMarkDto), (int)System.Net.HttpStatusCode.OK)] public async Task CreateFileMarkAsync(int idWell, int idMark, int idFile, string comment, CancellationToken token = default) { var idCompany = User.GetCompanyId(); var fileChangerId = User.GetUserId(); var fileChangerLogin = User.Identity?.Name ?? ""; if (idCompany is null || fileChangerId is null || !await wellService.IsCompanyInvolvedInWellAsync((int)idCompany, idWell, token).ConfigureAwait(false)) return Forbid(); var result = await fileService.CreateFileMarkAsync(idWell, idMark, idFile, comment, (int)fileChangerId, fileChangerLogin, token) .ConfigureAwait(false); return Ok(result); } /// /// Удаляет отметку о действии с файлом-частью программы бурения /// /// id скважины /// id действия /// Токен отмены задачи /// [HttpDelete("fileMark")] [ProducesResponseType(typeof(int), (int)System.Net.HttpStatusCode.OK)] public async Task DeleteFileMarkAsync(int idWell, int idFile, CancellationToken token = default) { var idCompany = User.GetCompanyId(); if (idCompany is null || !await wellService.IsCompanyInvolvedInWellAsync((int)idCompany, idWell, token).ConfigureAwait(false)) return Forbid(); var result = await fileService.MarkFileMarkAsDeletedAsync(idWell, idFile, token); return Ok(result); } } }