2020-02-09 02:35:16 +00:00
|
|
|
using Jackett.Common.Indexers.Abstract;
|
2020-04-04 06:56:51 +00:00
|
|
|
using Jackett.Common.Models;
|
2018-03-10 08:05:56 +00:00
|
|
|
using Jackett.Common.Services.Interfaces;
|
|
|
|
using Jackett.Common.Utils.Clients;
|
2017-10-29 06:50:47 +00:00
|
|
|
using NLog;
|
2017-04-15 08:45:10 +00:00
|
|
|
|
2018-03-10 08:05:56 +00:00
|
|
|
namespace Jackett.Common.Indexers
|
2017-04-15 08:45:10 +00:00
|
|
|
{
|
2020-04-04 06:56:51 +00:00
|
|
|
public class PrivateHD : AvistazTracker
|
2017-04-15 08:45:10 +00:00
|
|
|
{
|
2020-04-04 06:56:51 +00:00
|
|
|
public PrivateHD(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
|
|
|
|
: base("PrivateHD",
|
|
|
|
description: "BitTorrent site for High Quality, High Definition (HD) movies and TV Shows",
|
|
|
|
link: "https://privatehd.to/",
|
|
|
|
caps: new TorznabCapabilities
|
|
|
|
{
|
|
|
|
SupportsImdbMovieSearch = true
|
|
|
|
},
|
|
|
|
configService: configService,
|
|
|
|
client: wc,
|
|
|
|
logger: l,
|
|
|
|
p: ps)
|
2020-02-25 16:08:03 +00:00
|
|
|
=> Type = "private";
|
2017-04-15 08:45:10 +00:00
|
|
|
}
|
|
|
|
}
|