mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-03-09 17:57:21 -04:00
* fixed unwanted deletion of torrents in downloading metadata state * refactored jobs code * updated arr test data * updated gitignore * updated test configuration and removed dispensable files
68 lines
2.3 KiB
C#
68 lines
2.3 KiB
C#
using Common.Configuration;
|
|
using Domain.Arr.Queue;
|
|
using Domain.Enums;
|
|
using Infrastructure.Verticals.Arr;
|
|
using Infrastructure.Verticals.DownloadClient;
|
|
using Infrastructure.Verticals.Jobs;
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.Extensions.Options;
|
|
|
|
namespace Infrastructure.Verticals.ContentBlocker;
|
|
|
|
public sealed class ContentBlocker : GenericHandler
|
|
{
|
|
private readonly BlocklistProvider _blocklistProvider;
|
|
|
|
public ContentBlocker(
|
|
ILogger<ContentBlocker> logger,
|
|
IOptions<SonarrConfig> sonarrConfig,
|
|
IOptions<RadarrConfig> radarrConfig,
|
|
SonarrClient sonarrClient,
|
|
RadarrClient radarrClient,
|
|
ArrQueueIterator arrArrQueueIterator,
|
|
BlocklistProvider blocklistProvider,
|
|
DownloadServiceFactory downloadServiceFactory
|
|
) : base(logger, sonarrConfig.Value, radarrConfig.Value, sonarrClient, radarrClient, arrArrQueueIterator, downloadServiceFactory)
|
|
{
|
|
_blocklistProvider = blocklistProvider;
|
|
}
|
|
|
|
public override async Task ExecuteAsync()
|
|
{
|
|
await _blocklistProvider.LoadBlocklistAsync();
|
|
await base.ExecuteAsync();
|
|
}
|
|
|
|
protected override async Task ProcessInstanceAsync(ArrInstance instance, InstanceType instanceType)
|
|
{
|
|
ArrClient arrClient = GetClient(instanceType);
|
|
|
|
await _arrArrQueueIterator.Iterate(arrClient, instance, async items =>
|
|
{
|
|
foreach (QueueRecord record in items)
|
|
{
|
|
if (record.Protocol is not "torrent")
|
|
{
|
|
continue;
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(record.DownloadId))
|
|
{
|
|
_logger.LogDebug("skip | download id is null for {title}", record.Title);
|
|
continue;
|
|
}
|
|
|
|
_logger.LogDebug("searching unwanted files for {title}", record.Title);
|
|
await _downloadService.BlockUnwantedFilesAsync(record.DownloadId);
|
|
}
|
|
});
|
|
}
|
|
|
|
private ArrClient GetClient(InstanceType type) =>
|
|
type switch
|
|
{
|
|
InstanceType.Sonarr => _sonarrClient,
|
|
InstanceType.Radarr => _radarrClient,
|
|
_ => throw new NotImplementedException($"instance type {type} is not yet supported")
|
|
};
|
|
} |