Jackett/src/Jackett.Common/Indexers/Redacted.cs

38 lines
1.5 KiB
C#
Raw Normal View History

2020-02-09 02:35:16 +00:00
using System.Collections.Generic;
using Jackett.Common.Indexers.Abstract;
using Jackett.Common.Models;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils.Clients;
2017-10-29 06:50:47 +00:00
using NLog;
namespace Jackett.Common.Indexers
2016-12-17 15:49:52 +00:00
{
public class PassTheHeadphones : GazelleTracker
2016-12-17 15:49:52 +00:00
{
public PassTheHeadphones(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService)
2017-02-20 14:42:44 +00:00
: base(name: "Redacted",
2016-12-17 15:49:52 +00:00
desc: "A music tracker",
2017-02-20 14:42:44 +00:00
link: "https://redacted.ch/",
configService: configService,
2016-12-17 15:49:52 +00:00
logger: logger,
protectionService: protectionService,
webClient: webClient,
supportsFreeleechTokens: true,
has2Fa: true
2016-12-17 15:49:52 +00:00
)
{
Language = "en-us";
Type = "private";
2017-10-29 06:50:47 +00:00
TorznabCaps.SupportedMusicSearchParamsList = new List<string>() { "q", "album", "artist", "label", "year" };
2016-12-17 15:49:52 +00:00
AddCategoryMapping(1, TorznabCatType.Audio, "Music");
AddCategoryMapping(2, TorznabCatType.PC, "Applications");
AddCategoryMapping(3, TorznabCatType.Books, "E-Books");
AddCategoryMapping(4, TorznabCatType.AudioAudiobook, "Audiobooks");
AddCategoryMapping(5, TorznabCatType.Movies, "E-Learning Videos");
AddCategoryMapping(6, TorznabCatType.TV, "Comedy");
AddCategoryMapping(7, TorznabCatType.Books, "Comics");
2016-12-17 15:49:52 +00:00
}
}
2020-02-09 02:35:16 +00:00
}