using System; using System.Linq; using System.Collections.Generic; using AsbCloudApp.Data; using AsbCloudApp.Services; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Authorization; namespace AsbCloudWebApi.Controllers { [Route("api/analytics")] [ApiController] [Authorize] public class AnalyticsController : ControllerBase { private readonly IAnalyticsService analyticsService; private readonly IWellService wellService; public AnalyticsController(IAnalyticsService analyticsService, IWellService wellService) { this.analyticsService = analyticsService; this.wellService = wellService; } /// /// Возвращает список операций на скважине за все время /// /// id скважины /// Список операций на скважине за все время [HttpGet] [Route("{wellId}/operations")] [ProducesResponseType(typeof(IEnumerable), (int)System.Net.HttpStatusCode.OK)] public IActionResult GetOperations(int wellId) { int? idCustomer = User.GetCustomerId(); if (idCustomer is null || !wellService.CheckWellOwnership((int)idCustomer, wellId)) return Forbid(); var analytics = analyticsService.GetOperations(wellId); if (analytics is null || !analytics.Any()) return NoContent(); return Ok(analytics); } /// /// Возвращает данные по скважине "глубина-день" /// /// id скважины /// Коллекцию данных по скважине "глубина-день" [HttpGet] [Route("{wellId}/wellDepthToDay")] [ProducesResponseType(typeof(IEnumerable), (int)System.Net.HttpStatusCode.OK)] public IActionResult GetWellDepthToDay(int wellId) { int? idCustomer = User.GetCustomerId(); if (idCustomer is null || !wellService.CheckWellOwnership((int)idCustomer, wellId)) return Forbid(); var wellDepthToDayData = analyticsService.GetWellDepthToDay(wellId); if (wellDepthToDayData is null || !wellDepthToDayData.Any()) return NoContent(); return Ok(wellDepthToDayData); } /// /// Возвращает данные по глубине скважины за период /// /// id скважины /// количество секунд в необходимом интервале времени /// количество секунд в времени начала смены /// Коллекцию данных по глубине скважины за период [HttpGet] [Route("{wellId}/wellDepthToInterval")] [ProducesResponseType(typeof(IEnumerable), (int)System.Net.HttpStatusCode.OK)] public IActionResult GetWellDepthToInterval(int wellId, int intervalSeconds, int workBeginSeconds) { int? idCustomer = User.GetCustomerId(); if (idCustomer is null || !wellService.CheckWellOwnership((int)idCustomer, wellId)) return Forbid(); var wellDepthToIntervalData = analyticsService.GetWellDepthToInterval(wellId, intervalSeconds, workBeginSeconds); if (wellDepthToIntervalData is null || !wellDepthToIntervalData.Any()) return NoContent(); return Ok(wellDepthToIntervalData); } /// /// Возвращает данные по операциям на скважине "операции-время" /// /// id скважины /// дата начала интервала /// дата окончания интервала /// Коллекцию операций на скважине [HttpGet] [Route("{wellId}/operationsSummary")] [ProducesResponseType(typeof(IEnumerable), (int)System.Net.HttpStatusCode.OK)] public IActionResult GetOperationsSummary(int wellId, DateTime begin = default, DateTime end = default) { int? idCustomer = User.GetCustomerId(); if (idCustomer is null || !wellService.CheckWellOwnership((int)idCustomer, wellId)) return Forbid(); var analytics = analyticsService.GetOperationsSummary(wellId, begin, end); if (analytics is null || !analytics.Any()) return NoContent(); return Ok(analytics); } /// /// Возвращает детальные данные по операциям на скважине за период /// /// id скважины /// количество секунд в необходимом интервале времени /// количество секунд в времени начала смены /// Коллекцию операций на скважине [HttpGet] [Route("{wellId}/operationsToInterval")] [ProducesResponseType(typeof(IEnumerable), (int)System.Net.HttpStatusCode.OK)] public IActionResult GetOperationsToInterval(int wellId, int intervalSeconds, int workBeginSeconds) { int? idCustomer = User.GetCustomerId(); if (idCustomer is null || !wellService.CheckWellOwnership((int)idCustomer, wellId)) return Forbid(); var analytics = analyticsService.GetOperationsToInterval(wellId, intervalSeconds, workBeginSeconds); if (analytics is null || !analytics.Any()) return NoContent(); return Ok(analytics); } } }