forked from ddrilling/AsbCloudServer
121 lines
4.3 KiB
C#
121 lines
4.3 KiB
C#
|
using AsbCloudApp.Data;
|
|||
|
using AsbCloudApp.Requests;
|
|||
|
using AsbCloudApp.Services;
|
|||
|
using AsbCloudDb;
|
|||
|
using AsbCloudDb.Model;
|
|||
|
using Mapster;
|
|||
|
using Microsoft.EntityFrameworkCore;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Threading;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace AsbCloudInfrastructure.Services.DetectOperations
|
|||
|
{
|
|||
|
public class DetectedOperationService: IDetectedOperationService
|
|||
|
{
|
|||
|
private readonly IAsbCloudDbContext db;
|
|||
|
private readonly IWellService wellService;
|
|||
|
|
|||
|
public DetectedOperationService(IAsbCloudDbContext db, IWellService wellService)
|
|||
|
{
|
|||
|
this.db = db;
|
|||
|
this.wellService = wellService;
|
|||
|
}
|
|||
|
|
|||
|
public async Task<IEnumerable<DetectedOperationDto>> GetAsync(int idWell, DetectedOperationRequest request, CancellationToken token)
|
|||
|
{
|
|||
|
var well = await wellService.GetAsync(idWell, token);
|
|||
|
if (well?.IdTelemetry is null || well.Timezone is null)
|
|||
|
return null;
|
|||
|
|
|||
|
var query = BuildQuery(well, request)
|
|||
|
.AsNoTracking();
|
|||
|
|
|||
|
var data = await query.ToListAsync(token);
|
|||
|
var dtos = data.Select(o => Convert(o, well));
|
|||
|
return dtos;
|
|||
|
}
|
|||
|
|
|||
|
public async Task<int> DeleteAsync(int idWell, DetectedOperationRequest request, CancellationToken token)
|
|||
|
{
|
|||
|
var well = await wellService.GetAsync(idWell, token);
|
|||
|
if (well?.IdTelemetry is null || well.Timezone is null)
|
|||
|
return 0;
|
|||
|
|
|||
|
var query = BuildQuery(well, request);
|
|||
|
db.DetectedOperations.RemoveRange(query);
|
|||
|
return await db.SaveChangesAsync(token);
|
|||
|
}
|
|||
|
|
|||
|
private IQueryable<DetectedOperation> BuildQuery(WellDto well, DetectedOperationRequest request)
|
|||
|
{
|
|||
|
if (well?.IdTelemetry is null || well.Timezone is null)
|
|||
|
return null;
|
|||
|
|
|||
|
var query = db.Set<DetectedOperation>()
|
|||
|
.Include(o => o.OperationCategory)
|
|||
|
.Where(o => o.IdTelemetry == well.IdTelemetry);
|
|||
|
|
|||
|
if (request is not null)
|
|||
|
{
|
|||
|
if (request.CategoryIds is not null)
|
|||
|
query = query.Where(o => request.CategoryIds.Contains(o.IdCategory));
|
|||
|
|
|||
|
if (request.GtDate is not null)
|
|||
|
query = query.Where(o => o.DateStart >= request.GtDate.Value.ToUtcDateTimeOffset(well.Timezone.Hours));
|
|||
|
|
|||
|
if (request.LtDate is not null)
|
|||
|
query = query.Where(o => o.DateStart <= request.LtDate.Value.ToUtcDateTimeOffset(well.Timezone.Hours));
|
|||
|
|
|||
|
if (request.GtDepth is not null)
|
|||
|
query = query.Where(o => o.DepthStart >= request.GtDepth);
|
|||
|
|
|||
|
if (request.LtDepth is not null)
|
|||
|
query = query.Where(o => o.DepthStart <= request.LtDepth);
|
|||
|
|
|||
|
if (request.EqIdTelemetryUser is not null)
|
|||
|
query = query.Where(o => o.IdUsersAtStart == request.EqIdTelemetryUser);
|
|||
|
}
|
|||
|
|
|||
|
if (request?.SortFields?.Any() == true)
|
|||
|
{
|
|||
|
query = query.SortBy(request.SortFields);
|
|||
|
}
|
|||
|
else
|
|||
|
query = query
|
|||
|
.OrderBy(o => o.DateStart)
|
|||
|
.ThenBy(o => o.DepthStart);
|
|||
|
|
|||
|
if (request?.Skip > 0)
|
|||
|
query = query.Skip((int)request.Skip);
|
|||
|
|
|||
|
if (request?.Take > 0)
|
|||
|
query = query.Take((int)request.Take);
|
|||
|
|
|||
|
return query;
|
|||
|
}
|
|||
|
|
|||
|
private static DetectedOperationDto Convert(DetectedOperation operation, WellDto well)
|
|||
|
{
|
|||
|
var dto = operation.Adapt<DetectedOperationDto>();
|
|||
|
dto.IdWell = well.Id;
|
|||
|
dto.DateStart = operation.DateStart.ToRemoteDateTime(well.Timezone.Hours);
|
|||
|
dto.DateEnd = operation.DateEnd.ToRemoteDateTime(well.Timezone.Hours);
|
|||
|
return dto;
|
|||
|
}
|
|||
|
|
|||
|
public async Task<IEnumerable<WellOperationCategoryDto>> GetCategoriesAsync(CancellationToken token)
|
|||
|
{
|
|||
|
var result = await db.WellOperationCategories
|
|||
|
.Where(c => c.Id < 1000)
|
|||
|
.Select(c => c.Adapt<WellOperationCategoryDto>())
|
|||
|
.ToArrayAsync(token);
|
|||
|
|
|||
|
return result;
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
}
|