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: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
|
|
|
{
|
2020-04-04 06:56:51 +00:00
|
|
|
public CinemaZ(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
|
|
|
|
: base("CinemaZ",
|
|
|
|
description: "Part of the Avistaz network.",
|
|
|
|
link: "https://cinemaz.to/",
|
|
|
|
caps: new TorznabCapabilities
|
|
|
|
{
|
|
|
|
SupportsImdbMovieSearch = true
|
|
|
|
},
|
|
|
|
configService: configService,
|
|
|
|
client: wc,
|
|
|
|
logger: l,
|
|
|
|
p: ps)
|
2020-02-25 16:08:03 +00:00
|
|
|
=> Type = "private";
|
2015-08-23 20:45:52 +00:00
|
|
|
}
|
2020-02-09 02:35:16 +00:00
|
|
|
}
|