2018-03-10 08:05:56 +00:00
|
|
|
|
using Jackett.Common.Indexers.Abstract;
|
|
|
|
|
using Jackett.Common.Models;
|
|
|
|
|
using Jackett.Common.Services.Interfaces;
|
|
|
|
|
using Jackett.Common.Utils.Clients;
|
2017-10-29 06:21:18 +00:00
|
|
|
|
using NLog;
|
2017-05-20 15:08:10 +00:00
|
|
|
|
|
2018-03-10 08:05:56 +00:00
|
|
|
|
namespace Jackett.Common.Indexers
|
2017-05-20 15:08:10 +00:00
|
|
|
|
{
|
2017-07-03 05:15:47 +00:00
|
|
|
|
public class HDForever : GazelleTracker
|
2017-05-20 15:08:10 +00:00
|
|
|
|
{
|
2017-11-05 09:42:03 +00:00
|
|
|
|
public HDForever(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService)
|
2017-05-20 15:08:10 +00:00
|
|
|
|
: base(name: "HD-Forever",
|
2017-10-01 09:26:07 +00:00
|
|
|
|
desc: "HD-Forever (HD-F) is a FRENCH Private Torrent Tracker for HD MOVIES",
|
2017-05-20 15:08:10 +00:00
|
|
|
|
link: "https://hdf.world/",
|
2017-07-10 20:58:44 +00:00
|
|
|
|
configService: configService,
|
2017-05-20 15:08:10 +00:00
|
|
|
|
logger: logger,
|
|
|
|
|
protectionService: protectionService,
|
2017-12-05 15:44:47 +00:00
|
|
|
|
webClient: webClient,
|
|
|
|
|
supportsFreeleechTokens: true
|
2017-05-20 15:08:10 +00:00
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
Language = "fr-fr";
|
|
|
|
|
Type = "private";
|
|
|
|
|
|
|
|
|
|
AddCategoryMapping(1, TorznabCatType.MoviesHD, "Movies/HD");
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-10-01 09:26:07 +00:00
|
|
|
|
}
|