* add ability to deep scan just a single tv show for Plex, Emby, and Jellyfin
Including "/api/libraries/{id:int}/scan-show" REST API endpoint to
trigger.
* restrict plex search results to the intended library
* restrict scanning to media server libraries that are marked to sync with etv
* fix previous commit
* also guard library scan api
* add scan buttons to show ui
* scan single plex show by id
* scan jellyfin and emby single shows by id
* update changelog
---------
Co-authored-by: Jeff Slutter <MrMustard@gmail.com>
Co-authored-by: Jason Dove <1695733+jasongdove@users.noreply.github.com>
88 lines
3.5 KiB
C#
88 lines
3.5 KiB
C#
using System.Threading.Channels;
|
|
using ErsatzTV.Application.Emby;
|
|
using ErsatzTV.Application.Jellyfin;
|
|
using ErsatzTV.Application.MediaSources;
|
|
using ErsatzTV.Application.Plex;
|
|
using ErsatzTV.Core.Domain;
|
|
using ErsatzTV.Core.Interfaces.Locking;
|
|
using ErsatzTV.Infrastructure.Data;
|
|
using ErsatzTV.Infrastructure.Extensions;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace ErsatzTV.Application.Libraries;
|
|
|
|
public class QueueLibraryScanByLibraryIdHandler(
|
|
IDbContextFactory<TvContext> dbContextFactory,
|
|
IEntityLocker locker,
|
|
ChannelWriter<IScannerBackgroundServiceRequest> scannerWorker,
|
|
ILogger<QueueLibraryScanByLibraryIdHandler> logger)
|
|
: IRequestHandler<QueueLibraryScanByLibraryId, bool>
|
|
{
|
|
public async Task<bool> Handle(QueueLibraryScanByLibraryId request, CancellationToken cancellationToken)
|
|
{
|
|
await using TvContext dbContext = await dbContextFactory.CreateDbContextAsync(cancellationToken);
|
|
|
|
Option<Library> maybeLibrary = await dbContext.Libraries
|
|
.AsNoTracking()
|
|
.SelectOneAsync(l => l.Id, l => l.Id == request.LibraryId);
|
|
|
|
foreach (Library library in maybeLibrary)
|
|
{
|
|
bool shouldSyncItems = library switch
|
|
{
|
|
PlexLibrary plexLibrary => plexLibrary.ShouldSyncItems,
|
|
JellyfinLibrary jellyfinLibrary => jellyfinLibrary.ShouldSyncItems,
|
|
EmbyLibrary embyLibrary => embyLibrary.ShouldSyncItems,
|
|
_ => true
|
|
};
|
|
|
|
if (!shouldSyncItems)
|
|
{
|
|
logger.LogWarning("Library sync is disabled for library id {Id}", library.Id);
|
|
return false;
|
|
}
|
|
|
|
if (locker.LockLibrary(library.Id))
|
|
{
|
|
logger.LogDebug("Queued library scan for library id {Id}", library.Id);
|
|
|
|
switch (library)
|
|
{
|
|
case LocalLibrary:
|
|
await scannerWorker.WriteAsync(new ForceScanLocalLibrary(library.Id), cancellationToken);
|
|
break;
|
|
case PlexLibrary:
|
|
await scannerWorker.WriteAsync(
|
|
new SynchronizePlexLibraries(library.MediaSourceId),
|
|
cancellationToken);
|
|
await scannerWorker.WriteAsync(
|
|
new ForceSynchronizePlexLibraryById(library.Id, false),
|
|
cancellationToken);
|
|
break;
|
|
case JellyfinLibrary:
|
|
await scannerWorker.WriteAsync(
|
|
new SynchronizeJellyfinLibraries(library.MediaSourceId),
|
|
cancellationToken);
|
|
await scannerWorker.WriteAsync(
|
|
new ForceSynchronizeJellyfinLibraryById(library.Id, false),
|
|
cancellationToken);
|
|
break;
|
|
case EmbyLibrary:
|
|
await scannerWorker.WriteAsync(
|
|
new SynchronizeEmbyLibraries(library.MediaSourceId),
|
|
cancellationToken);
|
|
await scannerWorker.WriteAsync(
|
|
new ForceSynchronizeEmbyLibraryById(library.Id, false),
|
|
cancellationToken);
|
|
break;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
}
|