mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-01-15 09:19:01 -05:00
255 lines
9.7 KiB
C#
255 lines
9.7 KiB
C#
using Cleanuparr.Domain.Entities.Arr;
|
|
using Cleanuparr.Domain.Entities.Arr.Queue;
|
|
using Cleanuparr.Domain.Enums;
|
|
using Cleanuparr.Infrastructure.Events.Interfaces;
|
|
using Cleanuparr.Infrastructure.Features.Arr.Interfaces;
|
|
using Cleanuparr.Infrastructure.Features.Context;
|
|
using Cleanuparr.Infrastructure.Features.DownloadClient;
|
|
using Cleanuparr.Infrastructure.Features.DownloadRemover.Models;
|
|
using Cleanuparr.Persistence;
|
|
using Cleanuparr.Persistence.Models.Configuration;
|
|
using Cleanuparr.Persistence.Models.Configuration.Arr;
|
|
using Cleanuparr.Persistence.Models.Configuration.DownloadCleaner;
|
|
using Cleanuparr.Persistence.Models.Configuration.General;
|
|
using Cleanuparr.Persistence.Models.Configuration.MalwareBlocker;
|
|
using Cleanuparr.Persistence.Models.Configuration.QueueCleaner;
|
|
using Data.Models.Arr;
|
|
using MassTransit;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.Extensions.Caching.Memory;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace Cleanuparr.Infrastructure.Features.Jobs;
|
|
|
|
public abstract class GenericHandler : IHandler
|
|
{
|
|
protected readonly ILogger<GenericHandler> _logger;
|
|
protected readonly DataContext _dataContext;
|
|
protected readonly IMemoryCache _cache;
|
|
protected readonly IBus _messageBus;
|
|
protected readonly IArrClientFactory _arrClientFactory;
|
|
protected readonly IArrQueueIterator _arrArrQueueIterator;
|
|
protected readonly IDownloadServiceFactory _downloadServiceFactory;
|
|
private readonly IEventPublisher _eventPublisher;
|
|
|
|
protected GenericHandler(
|
|
ILogger<GenericHandler> logger,
|
|
DataContext dataContext,
|
|
IMemoryCache cache,
|
|
IBus messageBus,
|
|
IArrClientFactory arrClientFactory,
|
|
IArrQueueIterator arrArrQueueIterator,
|
|
IDownloadServiceFactory downloadServiceFactory,
|
|
IEventPublisher eventPublisher
|
|
)
|
|
{
|
|
_logger = logger;
|
|
_cache = cache;
|
|
_messageBus = messageBus;
|
|
_arrClientFactory = arrClientFactory;
|
|
_arrArrQueueIterator = arrArrQueueIterator;
|
|
_downloadServiceFactory = downloadServiceFactory;
|
|
_eventPublisher = eventPublisher;
|
|
_dataContext = dataContext;
|
|
}
|
|
|
|
public async Task ExecuteAsync()
|
|
{
|
|
await DataContext.Lock.WaitAsync();
|
|
|
|
try
|
|
{
|
|
ContextProvider.Set(nameof(GeneralConfig), await _dataContext.GeneralConfigs.AsNoTracking().FirstAsync());
|
|
ContextProvider.Set(nameof(InstanceType.Sonarr), await _dataContext.ArrConfigs.AsNoTracking()
|
|
.Include(x => x.Instances)
|
|
.FirstAsync(x => x.Type == InstanceType.Sonarr));
|
|
ContextProvider.Set(nameof(InstanceType.Radarr), await _dataContext.ArrConfigs.AsNoTracking()
|
|
.Include(x => x.Instances)
|
|
.FirstAsync(x => x.Type == InstanceType.Radarr));
|
|
ContextProvider.Set(nameof(InstanceType.Lidarr), await _dataContext.ArrConfigs.AsNoTracking()
|
|
.Include(x => x.Instances)
|
|
.FirstAsync(x => x.Type == InstanceType.Lidarr));
|
|
ContextProvider.Set(nameof(InstanceType.Readarr), await _dataContext.ArrConfigs.AsNoTracking()
|
|
.Include(x => x.Instances)
|
|
.FirstAsync(x => x.Type == InstanceType.Readarr));
|
|
ContextProvider.Set(nameof(InstanceType.Whisparr), await _dataContext.ArrConfigs.AsNoTracking()
|
|
.Include(x => x.Instances)
|
|
.FirstAsync(x => x.Type == InstanceType.Whisparr));
|
|
ContextProvider.Set(nameof(QueueCleanerConfig), await _dataContext.QueueCleanerConfigs.AsNoTracking().FirstAsync());
|
|
ContextProvider.Set(nameof(ContentBlockerConfig), await _dataContext.ContentBlockerConfigs.AsNoTracking().FirstAsync());
|
|
ContextProvider.Set(nameof(DownloadCleanerConfig), await _dataContext.DownloadCleanerConfigs.Include(x => x.Categories).AsNoTracking().FirstAsync());
|
|
ContextProvider.Set(nameof(DownloadClientConfig), await _dataContext.DownloadClients.AsNoTracking()
|
|
.Where(x => x.Enabled)
|
|
.ToListAsync());
|
|
}
|
|
finally
|
|
{
|
|
DataContext.Lock.Release();
|
|
}
|
|
|
|
await ExecuteInternalAsync();
|
|
}
|
|
|
|
protected abstract Task ExecuteInternalAsync();
|
|
|
|
protected abstract Task ProcessInstanceAsync(ArrInstance instance);
|
|
|
|
protected async Task ProcessArrConfigAsync(ArrConfig config, bool throwOnFailure = false)
|
|
{
|
|
var enabledInstances = config.Instances
|
|
.Where(x => x.Enabled)
|
|
.ToList();
|
|
|
|
if (enabledInstances.Count is 0)
|
|
{
|
|
_logger.LogDebug($"Skip processing {config.Type}. No enabled instances found");
|
|
return;
|
|
}
|
|
|
|
foreach (ArrInstance arrInstance in config.Instances)
|
|
{
|
|
try
|
|
{
|
|
await ProcessInstanceAsync(arrInstance);
|
|
}
|
|
catch (Exception exception)
|
|
{
|
|
_logger.LogError(exception, "failed to process {type} instance | {url}", config.Type, arrInstance.Url);
|
|
|
|
if (throwOnFailure)
|
|
{
|
|
throw;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
protected async Task PublishQueueItemRemoveRequest(
|
|
string downloadRemovalKey,
|
|
InstanceType instanceType,
|
|
ArrInstance instance,
|
|
QueueRecord record,
|
|
bool isPack,
|
|
bool removeFromClient,
|
|
DeleteReason deleteReason
|
|
)
|
|
{
|
|
if (_cache.TryGetValue(downloadRemovalKey, out bool _))
|
|
{
|
|
_logger.LogDebug("skip removal request | already marked for removal | {title}", record.Title);
|
|
return;
|
|
}
|
|
|
|
if (instanceType is InstanceType.Sonarr || (instanceType is InstanceType.Whisparr && instance.Version is 2))
|
|
{
|
|
QueueItemRemoveRequest<SeriesSearchItem> removeRequest = new()
|
|
{
|
|
InstanceType = instanceType,
|
|
Instance = instance,
|
|
Record = record,
|
|
SearchItem = (SeriesSearchItem)GetRecordSearchItem(instanceType, instance.Version, record, isPack),
|
|
RemoveFromClient = removeFromClient,
|
|
DeleteReason = deleteReason
|
|
};
|
|
|
|
await _messageBus.Publish(removeRequest);
|
|
}
|
|
else
|
|
{
|
|
QueueItemRemoveRequest<SearchItem> removeRequest = new()
|
|
{
|
|
InstanceType = instanceType,
|
|
Instance = instance,
|
|
Record = record,
|
|
SearchItem = GetRecordSearchItem(instanceType, instance.Version, record, isPack),
|
|
RemoveFromClient = removeFromClient,
|
|
DeleteReason = deleteReason
|
|
};
|
|
|
|
await _messageBus.Publish(removeRequest);
|
|
}
|
|
|
|
_logger.LogInformation("item marked for removal | {title} | {url}", record.Title, instance.Url);
|
|
await _eventPublisher.PublishAsync(EventType.DownloadMarkedForDeletion, "Download marked for deletion", EventSeverity.Important);
|
|
}
|
|
|
|
protected SearchItem GetRecordSearchItem(InstanceType type, float version, QueueRecord record, bool isPack = false)
|
|
{
|
|
return type switch
|
|
{
|
|
InstanceType.Sonarr when !isPack => new SeriesSearchItem
|
|
{
|
|
Id = record.EpisodeId,
|
|
SeriesId = record.SeriesId,
|
|
SearchType = SeriesSearchType.Episode
|
|
},
|
|
InstanceType.Sonarr when isPack => new SeriesSearchItem
|
|
{
|
|
Id = record.SeasonNumber,
|
|
SeriesId = record.SeriesId,
|
|
SearchType = SeriesSearchType.Season
|
|
},
|
|
InstanceType.Radarr => new SearchItem
|
|
{
|
|
Id = record.MovieId
|
|
},
|
|
InstanceType.Lidarr => new SearchItem
|
|
{
|
|
Id = record.AlbumId
|
|
},
|
|
InstanceType.Readarr => new SearchItem
|
|
{
|
|
Id = record.BookId
|
|
},
|
|
InstanceType.Whisparr when version is 2 && !isPack => new SeriesSearchItem
|
|
{
|
|
Id = record.EpisodeId,
|
|
SeriesId = record.SeriesId,
|
|
SearchType = SeriesSearchType.Episode
|
|
},
|
|
InstanceType.Whisparr when version is 2 && isPack => new SeriesSearchItem
|
|
{
|
|
Id = record.SeasonNumber,
|
|
SeriesId = record.SeriesId,
|
|
SearchType = SeriesSearchType.Season
|
|
},
|
|
InstanceType.Whisparr when version is 3 => new SearchItem
|
|
{
|
|
Id = record.MovieId
|
|
},
|
|
_ => throw new NotImplementedException($"instance type {type} is not yet supported")
|
|
};
|
|
}
|
|
|
|
protected async Task<IReadOnlyList<IDownloadService>> GetInitializedDownloadServicesAsync()
|
|
{
|
|
var downloadClientConfigs = ContextProvider.Get<List<DownloadClientConfig>>(nameof(DownloadClientConfig));
|
|
List<IDownloadService> downloadServices = [];
|
|
|
|
foreach (var config in downloadClientConfigs)
|
|
{
|
|
try
|
|
{
|
|
var downloadService = _downloadServiceFactory.GetDownloadService(config);
|
|
await downloadService.LoginAsync();
|
|
downloadServices.Add(downloadService);
|
|
_logger.LogDebug("Created download service for {name}", config.Name);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.LogError(ex, "Error creating download service for {name}", config.Name);
|
|
}
|
|
}
|
|
|
|
if (downloadServices.Count is 0)
|
|
{
|
|
_logger.LogDebug("No valid download clients found");
|
|
}
|
|
else
|
|
{
|
|
_logger.LogDebug("Initialized {count} download clients", downloadServices.Count);
|
|
}
|
|
|
|
return downloadServices;
|
|
}
|
|
} |