2020-02-09 02:35:16 +00:00
|
|
|
using System.Collections.Generic;
|
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;
|
2018-01-03 18:46:12 +00:00
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
using NLog;
|
|
|
|
|
2018-03-10 08:05:56 +00:00
|
|
|
namespace Jackett.Common.Indexers
|
2018-01-03 18:46:12 +00:00
|
|
|
{
|
|
|
|
public class SecretCinema : GazelleTracker
|
|
|
|
{
|
2020-04-04 06:56:51 +00:00
|
|
|
public SecretCinema(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
|
|
|
|
: base("Secret Cinema",
|
|
|
|
description: "A tracker for rare movies.",
|
|
|
|
link: "https://secret-cinema.pw/",
|
|
|
|
caps: new TorznabCapabilities
|
|
|
|
{
|
|
|
|
SupportsImdbMovieSearch = true,
|
|
|
|
SupportedMusicSearchParamsList = new List<string> { "q", "album", "artist", "label", "year" }
|
|
|
|
},
|
|
|
|
configService: configService,
|
|
|
|
client: wc,
|
|
|
|
logger: l,
|
|
|
|
p: ps,
|
|
|
|
supportsFreeleechTokens: false) // ratioless tracker
|
2018-01-03 18:46:12 +00:00
|
|
|
{
|
|
|
|
Language = "en-us";
|
|
|
|
Type = "private";
|
|
|
|
|
|
|
|
AddCategoryMapping(1, TorznabCatType.Movies, "Movies");
|
|
|
|
AddCategoryMapping(2, TorznabCatType.Audio, "Music");
|
|
|
|
AddCategoryMapping(3, TorznabCatType.Books, "E-Books");
|
|
|
|
}
|
|
|
|
|
|
|
|
protected override bool ReleaseInfoPostParse(ReleaseInfo release, JObject torrent, JObject result)
|
|
|
|
{
|
|
|
|
var media = (string)torrent["media"];
|
|
|
|
if (!string.IsNullOrEmpty(media))
|
|
|
|
{
|
|
|
|
switch (media)
|
|
|
|
{
|
|
|
|
case "SD":
|
|
|
|
release.Category.Remove(TorznabCatType.Movies.ID);
|
|
|
|
release.Category.Add(TorznabCatType.MoviesSD.ID);
|
|
|
|
break;
|
|
|
|
case "720p":
|
|
|
|
case "1080p":
|
|
|
|
case "4k": // not verified
|
|
|
|
release.Category.Remove(TorznabCatType.Movies.ID);
|
|
|
|
release.Category.Add(TorznabCatType.MoviesHD.ID);
|
|
|
|
break;
|
|
|
|
case "DVD-R":
|
|
|
|
release.Category.Remove(TorznabCatType.Movies.ID);
|
|
|
|
release.Category.Add(TorznabCatType.MoviesDVD.ID);
|
|
|
|
break;
|
|
|
|
case "BDMV":
|
|
|
|
release.Category.Remove(TorznabCatType.Movies.ID);
|
|
|
|
release.Category.Add(TorznabCatType.MoviesBluRay.ID);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2020-02-09 02:35:16 +00:00
|
|
|
}
|