using AsbCloudApp.Data.DailyReport;
using AsbCloudApp.Exceptions;
using AsbCloudApp.Repositories;
using AsbCloudApp.Services;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Threading;
using System.Threading.Tasks;
namespace AsbCloudWebApi.Controllers
{
///
/// Суточный рапорт
///
[Route("api/well/{idWell}/[controller]")]
[ApiController]
[Authorize]
public class DailyReportController : ControllerBase
{
private readonly IDailyReportService dailyReportService;
private readonly IWellService wellService;
private readonly IWellOperationRepository operationRepository;
public DailyReportController(
IDailyReportService dailyReportService,
IWellService wellService,
IWellOperationRepository operationRepository)
{
this.dailyReportService = dailyReportService;
this.wellService = wellService;
this.operationRepository = operationRepository;
}
///
/// Список наборов данных для формирования рапорта
///
///
///
///
///
///
[HttpGet]
//[Permission]
[ProducesResponseType(typeof(IEnumerable), (int)System.Net.HttpStatusCode.OK)]
public async Task GetListAsync(int idWell, DateTime? begin = null, DateTime? end = null, CancellationToken token = default)
{
var result = await dailyReportService.GetListAsync(idWell, begin, end, token);
return Ok(result);
}
///
/// Создание суточного рапорта
///
///
///
///
///
[HttpPost]
//[Permission]
[ProducesResponseType(typeof(int), (int)System.Net.HttpStatusCode.OK)]
public async Task AddAsync(int idWell, [Required] DateTime startDate, CancellationToken token = default)
{
var idUser = User.GetUserId();
if (idUser is null)
return Forbid();
try
{
var result = await dailyReportService.AddAsync(idWell, startDate, (int)idUser, token);
return Ok(result);
}
catch (ArgumentInvalidException ex)
{
return BadRequest(ex.Message);
}
}
///
/// Сохранение изменений набора данных для формирования рапорта (заголовок)
///
///
/// Дата без учета времени
///
///
///
[HttpPut("{date}/head")]
[ProducesResponseType(typeof(int), (int)System.Net.HttpStatusCode.OK)]
public async Task UpdateHeadAsync(int idWell, [Required] DateTime date, [Required] HeadDto dto, CancellationToken token = default)
{
return await UpdateReportBlockAsync(idWell, date, dto, token);
}
///
/// Сохранение изменений набора данных для формирования рапорта (блок КНБК)
///
///
/// Дата без учета времени
///
///
///
[HttpPut("{date}/bha")]
[ProducesResponseType(typeof(int), (int)System.Net.HttpStatusCode.OK)]
public async Task UpdateBhaAsync(int idWell, [Required] DateTime date, [Required] BhaDto dto, CancellationToken token = default)
{
return await UpdateReportBlockAsync(idWell, date, dto, token);
}
///
/// Сохранение изменений набора данных для формирования рапорта (безметражные работы)
///
///
/// Дата без учета времени
///
///
///
[HttpPut("{date}/noDrilling")]
[ProducesResponseType(typeof(int), (int)System.Net.HttpStatusCode.OK)]
public async Task UpdateNoDrillingAsync(int idWell, [Required] DateTime date, [Required] NoDrillingDto dto, CancellationToken token = default)
{
return await UpdateReportBlockAsync(idWell, date, dto, token);
}
///
/// Сохранение изменений набора данных для формирования рапорта (САУБ)
///
///
/// Дата без учета времени
///
///
///
[HttpPut("{date}/saub")]
[ProducesResponseType(typeof(int), (int)System.Net.HttpStatusCode.OK)]
public async Task UpdateSaubAsync(int idWell, [Required] DateTime date, [Required] SaubDto dto, CancellationToken token = default)
{
return await UpdateReportBlockAsync(idWell, date, dto, token);
}
///
/// Сохранение изменений набора данных для формирования рапорта (подпись)
///
///
/// Дата без учета времени
///
///
///
[HttpPut("{date}/sign")]
[ProducesResponseType(typeof(int), (int)System.Net.HttpStatusCode.OK)]
public async Task UpdateSignAsync(int idWell, [Required] DateTime date, [Required] SignDto dto, CancellationToken token = default)
{
return await UpdateReportBlockAsync(idWell, date, dto, token);
}
///
/// Обновление блока суточного рапорта
///
/// ключ скважины
/// дата суточного рапорта
///
///
///
private async Task UpdateReportBlockAsync(int idWell, DateTime date, ItemInfoDto dto, CancellationToken token)
{
if (!SetEditorIdToDailyReportBlock(dto))
return Forbid();
var result = await dailyReportService.UpdateBlockAsync(idWell, date, dto, token);
return Ok(result);
}
///
/// Записать ключ пользователя, вносящего изменения в блок суточного рапорта
///
///
///
private bool SetEditorIdToDailyReportBlock(ItemInfoDto dto)
{
var idUser = User.GetUserId();
if (idUser is null)
return false;
else
dto.IdUser = idUser;
return true;
}
///
/// Сформировать и скачать рапорт в формате excel
///
///
///
///
///
[HttpGet("{date}/excel")]
//[Permission]
[ProducesResponseType(typeof(PhysicalFileResult), (int)System.Net.HttpStatusCode.OK)]
public async Task DownloadAsync(int idWell, DateTime date, CancellationToken token = default)
{
var well = await wellService.GetOrDefaultAsync(idWell, token);
var stream = await dailyReportService.MakeReportAsync(idWell, date, token);
if (stream != null)
{
var fileName = $"Суточный рапорт по скважине {well.Caption} куст {well.Cluster}.xlsx";
return File(stream, "application/octet-stream", fileName);
}
else
return NoContent();
}
}
}