diff --git a/README.md b/README.md index 101ec1c49..e6bb732b5 100644 --- a/README.md +++ b/README.md @@ -257,7 +257,6 @@ A third-party Golang SDK for Jackett is available from [webtor-io/go-jackett](ht * Araba Fenice (Phoenix) [![(invite needed)][inviteneeded]](#) * ArabP2P * ArabTorrents [![(invite needed)][inviteneeded]](#) - * aro.lol * AsianCinema * AsianDVDClub * Audiences diff --git a/src/Jackett.Common/Indexers/Aro.cs b/src/Jackett.Common/Indexers/Aro.cs deleted file mode 100644 index 01856f83f..000000000 --- a/src/Jackett.Common/Indexers/Aro.cs +++ /dev/null @@ -1,58 +0,0 @@ -using System.Collections.Generic; -using System.Diagnostics.CodeAnalysis; -using Jackett.Common.Indexers.Abstract; -using Jackett.Common.Models; -using Jackett.Common.Services.Interfaces; -using Jackett.Common.Utils.Clients; -using NLog; - -namespace Jackett.Common.Indexers -{ - [ExcludeFromCodeCoverage] - public class Aro : GazelleTracker - { - public override string Id => "aro"; - public override string Name => "aro.lol"; - public override string Description => "aro.lol is a SERBIAN/ENGLISH Private Torrent Tracker for ANIME"; - public override string SiteLink { get; protected set; } = "https://aro.lol/"; - public override string Language => "en-US"; - public override string Type => "private"; - - public override TorznabCapabilities TorznabCaps => SetCapabilities(); - - public Aro(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps, - ICacheService cs) - : base(configService: configService, - client: wc, - logger: l, - p: ps, - cs: cs, - has2Fa: true, - supportsFreeleechTokens: true) - { - } - - private TorznabCapabilities SetCapabilities() - { - var caps = new TorznabCapabilities - { - TvSearchParams = new List - { - TvSearchParam.Q - }, - MovieSearchParams = new List - { - MovieSearchParam.Q - } - }; - - caps.Categories.AddCategoryMapping(1, TorznabCatType.Movies, "Movies"); - caps.Categories.AddCategoryMapping(2, TorznabCatType.TVAnime, "Anime"); - caps.Categories.AddCategoryMapping(3, TorznabCatType.Books, "Manga"); - caps.Categories.AddCategoryMapping(4, TorznabCatType.Console, "Games"); - caps.Categories.AddCategoryMapping(5, TorznabCatType.Other, "Other"); - - return caps; - } - } -}