Jackett/src/Jackett/Indexers/HDTorrents.cs

220 lines
9.5 KiB
C#
Raw Normal View History

2015-07-11 19:27:57 +00:00
using CsQuery;
2015-07-19 00:27:41 +00:00
using Jackett.Models;
2015-07-19 17:18:54 +00:00
using Jackett.Services;
2015-07-19 00:27:41 +00:00
using Jackett.Utils;
using Jackett.Utils.Clients;
2015-07-11 19:27:57 +00:00
using Newtonsoft.Json.Linq;
2015-07-19 00:27:41 +00:00
using NLog;
2015-07-11 19:27:57 +00:00
using System;
using System.Collections.Generic;
2015-07-12 15:48:37 +00:00
using System.Globalization;
2015-07-11 19:27:57 +00:00
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Text;
using System.Threading.Tasks;
2015-07-12 15:48:37 +00:00
using System.Web;
using Jackett.Models.IndexerConfig;
2015-08-19 21:51:16 +00:00
using System.Collections.Specialized;
2015-07-11 19:27:57 +00:00
namespace Jackett.Indexers
{
2015-07-19 17:18:54 +00:00
public class HDTorrents : BaseIndexer, IIndexer
2015-07-11 19:27:57 +00:00
{
private string SearchUrl { get { return SiteLink + "torrents.php?"; } }
private string LoginUrl { get { return SiteLink + "login.php"; } }
2015-07-12 15:48:37 +00:00
private const int MAXPAGES = 3;
public new string[] AlternativeSiteLinks { get; protected set; } = new string[] { "https://hdts.ru/", "https://hd-torrents.org/", "https://hd-torrents.net/", "https://hd-torrents.me/" };
2015-07-12 15:48:37 +00:00
new ConfigurationDataBasicLogin configData
{
get { return (ConfigurationDataBasicLogin)base.configData; }
set { base.configData = value; }
}
2015-08-07 19:09:13 +00:00
public HDTorrents(IIndexerManagerService i, Logger l, IWebClient w, IProtectionService ps)
: base(name: "HD-Torrents",
description: "HD-Torrents is a private torrent website with HD torrents and strict rules on their content.",
2016-12-20 18:45:57 +00:00
link: "https://hdts.ru/",// Of the accessible domains the .ru seems the most reliable. https://hdts.ru | https://hd-torrents.org | https://hd-torrents.net | https://hd-torrents.me
manager: i,
client: w,
logger: l,
2015-08-07 19:09:13 +00:00
p: ps,
configData: new ConfigurationDataBasicLogin())
2015-07-11 19:27:57 +00:00
{
Encoding = Encoding.GetEncoding("UTF-8");
2016-12-09 17:20:58 +00:00
Language = "en-us";
Type = "private";
TorznabCaps.SupportsImdbSearch = true;
TorznabCaps.Categories.Clear();
// Movie
2017-01-25 13:17:38 +00:00
AddCategoryMapping("1", TorznabCatType.MoviesHD, "Movie/Blu-Ray");
AddCategoryMapping("2", TorznabCatType.MoviesHD, "Movie/Remux");
AddCategoryMapping("5", TorznabCatType.MoviesHD, "Movie/1080p/i");
AddCategoryMapping("3", TorznabCatType.MoviesHD, "Movie/720p");
AddCategoryMapping("64", TorznabCatType.MoviesHD, "Movie/2160p");
AddCategoryMapping("63", TorznabCatType.Audio, "Movie/Audio Track");
// TV Show
AddCategoryMapping("59", TorznabCatType.TVHD, "TV Show/Blu-ray");
AddCategoryMapping("60", TorznabCatType.TVHD, "TV Show/Remux");
AddCategoryMapping("30", TorznabCatType.TVHD, "TV Show/1080p/i");
AddCategoryMapping("38", TorznabCatType.TVHD, "TV Show/720p");
AddCategoryMapping("65", TorznabCatType.TVHD, "TV Show/2160p");
// Music
AddCategoryMapping("44", TorznabCatType.Audio, "Music/Album");
AddCategoryMapping("61", TorznabCatType.AudioVideo, "Music/Blu-Ray");
AddCategoryMapping("62", TorznabCatType.AudioVideo, "Music/Remux");
AddCategoryMapping("57", TorznabCatType.AudioVideo, "Music/1080p/i");
AddCategoryMapping("45", TorznabCatType.AudioVideo, "Music/720p");
AddCategoryMapping("66", TorznabCatType.AudioVideo, "Music/2160p");
// XXX
AddCategoryMapping("58", TorznabCatType.XXX, "XXX/Blu-ray");
AddCategoryMapping("48", TorznabCatType.XXX, "XXX/1080p/i");
AddCategoryMapping("47", TorznabCatType.XXX, "XXX/720p");
AddCategoryMapping("67", TorznabCatType.XXX, "XXX/2160p");
// 3D
AddCategoryMapping("67", TorznabCatType.Movies3D, "3D");
2015-07-11 19:27:57 +00:00
}
public async Task<IndexerConfigurationStatus> ApplyConfiguration(JToken configJson)
2015-07-11 19:27:57 +00:00
{
LoadValuesFromJson(configJson);
2016-12-20 18:45:57 +00:00
2015-07-28 19:22:23 +00:00
var loginPage = await RequestStringWithCookies(LoginUrl, string.Empty);
2015-07-12 15:48:37 +00:00
2015-07-11 19:27:57 +00:00
var pairs = new Dictionary<string, string> {
{ "uid", configData.Username.Value },
{ "pwd", configData.Password.Value }
};
2015-07-11 19:27:57 +00:00
var result = await RequestLoginAndFollowRedirect(LoginUrl, pairs, loginPage.Cookies, true, null, LoginUrl);
2015-07-11 19:27:57 +00:00
await ConfigureIfOK(result.Cookies, result.Content != null && result.Content.Contains("If your browser doesn't have javascript enabled"), () =>
2015-07-11 19:27:57 +00:00
{
2015-07-12 15:48:37 +00:00
var errorMessage = "Couldn't login";
throw new ExceptionWithConfigData(errorMessage, configData);
});
return IndexerConfigurationStatus.RequiresTesting;
2015-07-11 19:27:57 +00:00
}
public async Task<IEnumerable<ReleaseInfo>> PerformQuery(TorznabQuery query)
2015-07-11 19:27:57 +00:00
{
var releases = new List<ReleaseInfo>();
var searchurls = new List<string>();
2015-08-19 21:51:16 +00:00
var searchUrl = SearchUrl;// string.Format(SearchUrl, HttpUtility.UrlEncode()));
var queryCollection = new NameValueCollection();
var searchString = query.GetQueryString();
foreach (var cat in MapTorznabCapsToTrackers(query))
{
searchUrl += "category%5B%5D=" + cat + "&";
}
if (query.ImdbID != null)
{
queryCollection.Add("search", query.ImdbID);
}
else if (!string.IsNullOrWhiteSpace(searchString))
2015-08-19 21:51:16 +00:00
{
queryCollection.Add("search", searchString);
}
2015-08-19 21:51:16 +00:00
queryCollection.Add("active", "0");
2015-08-19 21:51:16 +00:00
queryCollection.Add("options", "0");
searchUrl += queryCollection.GetQueryString().Replace("(", "%28").Replace(")", "%29"); // maually url encode brackets to prevent "hacking" detection
2015-08-19 21:51:16 +00:00
var results = await RequestStringWithCookiesAndRetry(searchUrl);
2015-07-28 19:22:23 +00:00
try
2015-07-12 15:48:37 +00:00
{
2015-07-28 19:22:23 +00:00
CQ dom = results.Content;
ReleaseInfo release;
2015-07-12 15:48:37 +00:00
var rows = dom[".mainblockcontenttt > tbody > tr:has(a[href^=\"details.php?id=\"])"];
2015-07-28 19:22:23 +00:00
foreach (var row in rows)
2015-07-12 15:48:37 +00:00
{
2015-07-28 19:22:23 +00:00
CQ qRow = row.Cq();
2015-07-12 15:48:37 +00:00
2015-07-28 19:22:23 +00:00
release = new ReleaseInfo();
2015-07-12 15:48:37 +00:00
2015-07-28 19:22:23 +00:00
release.Title = qRow.Find("td.mainblockcontent b a").Text();
release.Description = qRow.Find("td:nth-child(3) > span").Text();
2015-07-12 15:48:37 +00:00
2015-07-28 19:22:23 +00:00
if (0 != qRow.Find("td.mainblockcontent u").Length)
{
var imdbStr = qRow.Find("td.mainblockcontent u").Parent().First().Attr("href").Replace("http://www.imdb.com/title/tt", "").Replace("/", "");
long imdb;
if (ParseUtil.TryCoerceLong(imdbStr, out imdb))
2015-07-12 19:50:24 +00:00
{
2015-07-28 19:22:23 +00:00
release.Imdb = imdb;
2015-07-12 19:50:24 +00:00
}
2015-07-28 19:22:23 +00:00
}
2015-07-12 15:48:37 +00:00
2015-07-28 19:22:23 +00:00
release.MinimumRatio = 1;
release.MinimumSeedTime = 172800;
2015-07-12 15:48:37 +00:00
2015-07-12 15:48:37 +00:00
2015-07-28 19:22:23 +00:00
int seeders, peers;
if (ParseUtil.TryCoerceInt(qRow.Find("td").Get(9).FirstChild.FirstChild.InnerText, out seeders))
{
release.Seeders = seeders;
if (ParseUtil.TryCoerceInt(qRow.Find("td").Get(10).FirstChild.FirstChild.InnerText, out peers))
2015-07-12 19:50:24 +00:00
{
2015-07-28 19:22:23 +00:00
release.Peers = peers + release.Seeders;
2015-07-12 19:50:24 +00:00
}
2015-07-28 19:22:23 +00:00
}
2015-07-12 15:48:37 +00:00
release.Grabs = ParseUtil.CoerceLong(qRow.Find("td:nth-child(12)").Text());
2015-07-28 19:22:23 +00:00
string fullSize = qRow.Find("td.mainblockcontent").Get(6).InnerText;
release.Size = ReleaseInfo.GetBytes(fullSize);
2015-07-12 15:48:37 +00:00
2015-08-19 21:51:16 +00:00
release.Guid = new Uri(SiteLink + qRow.Find("td.mainblockcontent b a").Attr("href"));
release.Link = new Uri(SiteLink + qRow.Find("td.mainblockcontent").Get(3).FirstChild.GetAttribute("href"));
release.Comments = new Uri(SiteLink + qRow.Find("td.mainblockcontent b a").Attr("href"));
2015-07-12 15:48:37 +00:00
2015-07-28 19:22:23 +00:00
string[] dateSplit = qRow.Find("td.mainblockcontent").Get(5).InnerHTML.Split(',');
2017-03-13 12:36:05 +00:00
string dateString = dateSplit[1].Substring(0, dateSplit[1].IndexOf('>')).Trim();
release.PublishDate = DateTime.ParseExact(dateString, "dd MMM yyyy HH:mm:ss zz00", CultureInfo.InvariantCulture).ToLocalTime();
2015-08-19 21:51:16 +00:00
string category = qRow.Find("td:eq(0) a").Attr("href").Replace("torrents.php?category=", "");
release.Category = MapTrackerCatToNewznab(category);
release.UploadVolumeFactor = 1;
if (qRow.Find("img[alt=\"Free Torrent\"]").Length >= 1)
{
release.DownloadVolumeFactor = 0;
release.UploadVolumeFactor = 0;
}
else if (qRow.Find("img[alt=\"Silver Torrent\"]").Length >= 1)
release.DownloadVolumeFactor = 0.5;
else if (qRow.Find("img[alt=\"Bronze Torrent\"]").Length >= 1)
release.DownloadVolumeFactor = 0.75;
else if (qRow.Find("img[alt=\"Blue Torrent\"]").Length >= 1)
release.DownloadVolumeFactor = 0.25;
else
release.DownloadVolumeFactor = 1;
2015-07-28 19:22:23 +00:00
releases.Add(release);
2015-07-12 15:48:37 +00:00
}
}
2015-07-28 19:22:23 +00:00
catch (Exception ex)
{
OnParseError(results.Content, ex);
}
2015-07-11 19:27:57 +00:00
return releases;
2015-07-11 19:27:57 +00:00
}
}
}