mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
115 lines
4.0 KiB
115 lines
4.0 KiB
using System.Globalization; |
|
using ErsatzTV.Application.Libraries; |
|
using ErsatzTV.Core; |
|
using ErsatzTV.Core.Errors; |
|
using ErsatzTV.Core.Interfaces.Metadata; |
|
using ErsatzTV.Core.Interfaces.Repositories; |
|
using ErsatzTV.Core.Metadata; |
|
using ErsatzTV.FFmpeg.Runtime; |
|
using ErsatzTV.Infrastructure.Data; |
|
using ErsatzTV.Infrastructure.Extensions; |
|
using Microsoft.EntityFrameworkCore; |
|
using Microsoft.Extensions.Logging; |
|
|
|
namespace ErsatzTV.Application.Plex; |
|
|
|
public class CallPlexCollectionScannerHandler : CallLibraryScannerHandler<SynchronizePlexCollections>, |
|
IRequestHandler<SynchronizePlexCollections, Either<BaseError, Unit>> |
|
{ |
|
private readonly IScannerProxyService _scannerProxyService; |
|
|
|
public CallPlexCollectionScannerHandler( |
|
IDbContextFactory<TvContext> dbContextFactory, |
|
IConfigElementRepository configElementRepository, |
|
IScannerProxyService scannerProxyService, |
|
IRuntimeInfo runtimeInfo, |
|
ILogger<CallPlexCollectionScannerHandler> logger) : base( |
|
dbContextFactory, |
|
configElementRepository, |
|
runtimeInfo, |
|
logger) |
|
{ |
|
_scannerProxyService = scannerProxyService; |
|
} |
|
|
|
public async Task<Either<BaseError, Unit>> |
|
Handle(SynchronizePlexCollections request, CancellationToken cancellationToken) |
|
{ |
|
Validation<BaseError, ScanParameters> validation = await Validate(request, cancellationToken); |
|
return await validation.Match( |
|
parameters => PerformScan(parameters, request, cancellationToken), |
|
error => |
|
{ |
|
foreach (ScanIsNotRequired scanIsNotRequired in error.OfType<ScanIsNotRequired>()) |
|
{ |
|
return Task.FromResult<Either<BaseError, Unit>>(scanIsNotRequired); |
|
} |
|
|
|
return Task.FromResult<Either<BaseError, Unit>>(error.Join()); |
|
}); |
|
} |
|
|
|
protected override async Task<Tuple<string, DateTimeOffset>> GetLastScan( |
|
TvContext dbContext, |
|
SynchronizePlexCollections request, |
|
CancellationToken cancellationToken) |
|
{ |
|
DateTime minDateTime = await dbContext.PlexMediaSources |
|
.SelectOneAsync(l => l.Id, l => l.Id == request.PlexMediaSourceId, cancellationToken) |
|
.Match(l => l.LastCollectionsScan ?? SystemTime.MinValueUtc, () => SystemTime.MaxValueUtc); |
|
|
|
return new Tuple<string, DateTimeOffset>(string.Empty, new DateTimeOffset(minDateTime, TimeSpan.Zero)); |
|
} |
|
|
|
protected override bool ScanIsRequired( |
|
DateTimeOffset lastScan, |
|
int libraryRefreshInterval, |
|
SynchronizePlexCollections request) |
|
{ |
|
if (lastScan == SystemTime.MaxValueUtc) |
|
{ |
|
return false; |
|
} |
|
|
|
DateTimeOffset nextScan = lastScan + TimeSpan.FromHours(libraryRefreshInterval); |
|
return request.ForceScan || libraryRefreshInterval > 0 && nextScan < DateTimeOffset.Now; |
|
} |
|
|
|
private async Task<Either<BaseError, Unit>> PerformScan( |
|
ScanParameters parameters, |
|
SynchronizePlexCollections request, |
|
CancellationToken cancellationToken) |
|
{ |
|
Option<Guid> maybeScanId = _scannerProxyService.StartScan(FakeLibraryId.PlexCollections); |
|
foreach (var scanId in maybeScanId) |
|
{ |
|
try |
|
{ |
|
var arguments = new List<string> |
|
{ |
|
"scan-plex-collections", |
|
request.PlexMediaSourceId.ToString(CultureInfo.InvariantCulture), |
|
GetBaseUrl(scanId) |
|
}; |
|
|
|
if (request.ForceScan) |
|
{ |
|
arguments.Add("--force"); |
|
} |
|
|
|
if (request.DeepScan) |
|
{ |
|
arguments.Add("--deep"); |
|
} |
|
|
|
return await base.PerformScan(parameters, arguments, cancellationToken).MapT(_ => Unit.Default); |
|
} |
|
finally |
|
{ |
|
_scannerProxyService.EndScan(scanId); |
|
} |
|
} |
|
|
|
return BaseError.New("Plex collections are already scanning"); |
|
} |
|
}
|
|
|