using System.Collections.Concurrent; using System.Text.RegularExpressions; using Common.Configuration.ContentBlocker; using Common.Configuration.DownloadCleaner; using Common.Configuration.QueueCleaner; using Infrastructure.Interceptors; using Infrastructure.Verticals.ContentBlocker; using Infrastructure.Verticals.Files; using Infrastructure.Verticals.ItemStriker; using Infrastructure.Verticals.Notifications; using Microsoft.Extensions.Caching.Memory; using Microsoft.Extensions.Logging; using Microsoft.Extensions.Options; namespace Infrastructure.Verticals.DownloadClient; public class DummyDownloadService : DownloadService { public DummyDownloadService( ILogger logger, IOptions queueCleanerConfig, IOptions contentBlockerConfig, IOptions downloadCleanerConfig, IMemoryCache cache, IFilenameEvaluator filenameEvaluator, IStriker striker, INotificationPublisher notifier, IDryRunInterceptor dryRunInterceptor, IHardLinkFileService hardLinkFileService ) : base( logger, queueCleanerConfig, contentBlockerConfig, downloadCleanerConfig, cache, filenameEvaluator, striker, notifier, dryRunInterceptor, hardLinkFileService ) { } public override void Dispose() { } public override Task LoginAsync() { return Task.CompletedTask; } public override Task ShouldRemoveFromArrQueueAsync(string hash, IReadOnlyList ignoredDownloads) { throw new NotImplementedException(); } public override Task BlockUnwantedFilesAsync(string hash, BlocklistType blocklistType, ConcurrentBag patterns, ConcurrentBag regexes, IReadOnlyList ignoredDownloads) { throw new NotImplementedException(); } public override Task?> GetSeedingDownloads() { throw new NotImplementedException(); } public override List? FilterDownloadsToBeCleanedAsync(List? downloads, List categories) { throw new NotImplementedException(); } public override List? FilterDownloadsToChangeCategoryAsync(List? downloads, List categories) { throw new NotImplementedException(); } public override Task CleanDownloadsAsync(List? downloads, List categoriesToClean, HashSet excludedHashes, IReadOnlyList ignoredDownloads) { throw new NotImplementedException(); } public override Task ChangeCategoryForNoHardLinksAsync(List? downloads, HashSet excludedHashes, IReadOnlyList ignoredDownloads) { throw new NotImplementedException(); } public override Task CreateCategoryAsync(string name) { throw new NotImplementedException(); } public override Task DeleteDownload(string hash) { throw new NotImplementedException(); } }