2018-03-10 08:05:56 +00:00
|
|
|
|
using Jackett.Common.Indexers.Abstract;
|
|
|
|
|
using Jackett.Common.Services.Interfaces;
|
|
|
|
|
using Jackett.Common.Utils.Clients;
|
2017-10-29 06:21:18 +00:00
|
|
|
|
using NLog;
|
2015-08-23 20:45:52 +00:00
|
|
|
|
|
2018-03-10 08:05:56 +00:00
|
|
|
|
namespace Jackett.Common.Indexers
|
2015-08-23 20:45:52 +00:00
|
|
|
|
{
|
2017-07-03 05:15:47 +00:00
|
|
|
|
public class CinemaZ : AvistazTracker
|
2015-08-23 20:45:52 +00:00
|
|
|
|
{
|
2017-11-05 09:42:03 +00:00
|
|
|
|
public CinemaZ(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService)
|
2016-09-11 17:52:51 +00:00
|
|
|
|
: base(name: "CinemaZ",
|
2015-08-23 20:45:52 +00:00
|
|
|
|
desc: "Part of the Avistaz network.",
|
2016-09-11 17:52:51 +00:00
|
|
|
|
link: "https://cinemaz.to/",
|
2017-07-10 20:58:44 +00:00
|
|
|
|
configService: configService,
|
2015-08-23 20:45:52 +00:00
|
|
|
|
logger: logger,
|
|
|
|
|
protectionService: protectionService,
|
|
|
|
|
webClient: webClient
|
|
|
|
|
)
|
|
|
|
|
{
|
2017-01-27 15:57:32 +00:00
|
|
|
|
Type = "private";
|
2015-08-23 20:45:52 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|