mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-05-08 23:03:13 -04:00
41 lines
1.3 KiB
C#
41 lines
1.3 KiB
C#
using System.Collections.Concurrent;
|
|
using System.Text.RegularExpressions;
|
|
using Common.Configuration.ContentBlocker;
|
|
using Common.Configuration.QueueCleaner;
|
|
using Infrastructure.Verticals.ContentBlocker;
|
|
using Infrastructure.Verticals.ItemStriker;
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.Extensions.Options;
|
|
|
|
namespace Infrastructure.Verticals.DownloadClient;
|
|
|
|
public sealed class DummyDownloadService : DownloadServiceBase
|
|
{
|
|
public DummyDownloadService(ILogger<DownloadServiceBase> logger, IOptions<QueueCleanerConfig> queueCleanerConfig, IOptions<ContentBlockerConfig> contentBlockerConfig, FilenameEvaluator filenameEvaluator, Striker striker) : base(logger, queueCleanerConfig, contentBlockerConfig, filenameEvaluator, striker)
|
|
{
|
|
}
|
|
|
|
public override void Dispose()
|
|
{
|
|
}
|
|
|
|
public override Task LoginAsync()
|
|
{
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
public override Task<StalledResult> ShouldRemoveFromArrQueueAsync(string hash)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override Task<BlockFilesResult> BlockUnwantedFilesAsync(string hash, BlocklistType blocklistType, ConcurrentBag<string> patterns, ConcurrentBag<Regex> regexes)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public override Task Delete(string hash)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |