Jackett/src/Jackett.Common/Indexers/HDTorrents.cs

229 lines
11 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Globalization;
using System.Text;
using System.Threading.Tasks;
using CsQuery;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Jackett.Common.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
namespace Jackett.Common.Indexers
2015-07-11 19:27:57 +00:00
{
public class HDTorrents : BaseWebIndexer
2015-07-11 19:27:57 +00:00
{
private string SearchUrl => SiteLink + "torrents.php?";
private string LoginUrl => SiteLink + "login.php";
2015-07-12 15:48:37 +00:00
private const int MAXPAGES = 3;
2017-08-31 08:50:47 +00:00
public override 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
private new ConfigurationDataBasicLogin configData
{
get => (ConfigurationDataBasicLogin)base.configData;
set => base.configData = value;
}
public HDTorrents(IIndexerConfigurationService configService, WebClient w, Logger l, 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
configService: configService,
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.UTF8;
2016-12-09 17:20:58 +00:00
Language = "en-us";
Type = "private";
2019-05-11 03:27:25 +00:00
TorznabCaps.SupportsImdbMovieSearch = true;
TorznabCaps.Categories.Clear();
// Movie
2018-01-02 18:12:08 +00:00
AddCategoryMapping("70", TorznabCatType.MoviesUHD, "Movie/UHD/Blu-Ray");
AddCategoryMapping("1", TorznabCatType.MoviesHD, "Movie/Blu-Ray");
2018-01-02 18:12:08 +00:00
AddCategoryMapping("71", TorznabCatType.MoviesUHD, "Movie/UHD/Remux");
AddCategoryMapping("2", TorznabCatType.MoviesHD, "Movie/Remux");
AddCategoryMapping("5", TorznabCatType.MoviesHD, "Movie/1080p/i");
AddCategoryMapping("3", TorznabCatType.MoviesHD, "Movie/720p");
2018-01-02 18:12:08 +00:00
AddCategoryMapping("64", TorznabCatType.MoviesUHD, "Movie/2160p");
AddCategoryMapping("63", TorznabCatType.Audio, "Movie/Audio Track");
// TV Show
2018-01-02 18:00:32 +00:00
2018-01-02 18:12:08 +00:00
AddCategoryMapping("72", TorznabCatType.TVUHD, "TV Show/UHD/Blu-ray");
AddCategoryMapping("59", TorznabCatType.TVHD, "TV Show/Blu-ray");
2018-01-02 18:12:08 +00:00
AddCategoryMapping("73", TorznabCatType.TVUHD, "TV Show/UHD/Remux");
AddCategoryMapping("60", TorznabCatType.TVHD, "TV Show/Remux");
AddCategoryMapping("30", TorznabCatType.TVHD, "TV Show/1080p/i");
AddCategoryMapping("38", TorznabCatType.TVHD, "TV Show/720p");
2018-01-02 18:12:08 +00:00
AddCategoryMapping("65", TorznabCatType.TVUHD, "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");
2018-01-02 18:00:32 +00:00
AddCategoryMapping("74", TorznabCatType.XXX, "XXX/UHD/Blu-ray");
AddCategoryMapping("48", TorznabCatType.XXX, "XXX/1080p/i");
AddCategoryMapping("47", TorznabCatType.XXX, "XXX/720p");
AddCategoryMapping("67", TorznabCatType.XXX, "XXX/2160p");
2015-07-11 19:27:57 +00:00
}
public override 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?.Contains("If your browser doesn't have javascript enabled") == true,
() => throw new ExceptionWithConfigData("Couldn't login", configData));
return IndexerConfigurationStatus.RequiresTesting;
2015-07-11 19:27:57 +00:00
}
protected override 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);
}
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 userInfo = dom[".mainmenu > table > tbody > tr:has(td[title=\"Active-Torrents\"])"][0].Cq();
var rank = userInfo.Find("td:nth-child(2)").Text().Substring(6);
var freeleechRanks = new HashSet<string>(StringComparer.OrdinalIgnoreCase);
freeleechRanks.Add("VIP");
freeleechRanks.Add("Uploader");
freeleechRanks.Add("HD Internal");
freeleechRanks.Add("Moderator");
freeleechRanks.Add("Administrator");
freeleechRanks.Add("Owner");
var hasFreeleech = freeleechRanks.Contains(rank);
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
{
var 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
release.MinimumRatio = 1;
release.MinimumSeedTime = 172800; // 48 hours
2020-02-09 02:35:16 +00:00
var tdIndex = 0;
2020-02-09 02:35:16 +00:00
if (qRow.Find("td:nth-last-child(1)").Text() == "Edit")
tdIndex = 1;
// moderators get additional delete, recomend and like links
2020-02-09 02:35:16 +00:00
if (qRow.Find("td:nth-last-child(4)").Text() == "Edit")
tdIndex = 4;
2015-07-12 15:48:37 +00:00
2017-09-05 16:37:25 +00:00
// Sometimes the uploader column is missing
if (ParseUtil.TryCoerceInt(qRow.Find($"td:nth-last-child({tdIndex + 3})").Text(), out var seeders))
2015-07-28 19:22:23 +00:00
{
release.Seeders = seeders;
if (ParseUtil.TryCoerceInt(qRow.Find($"td:nth-last-child({tdIndex + 2})").Text(), out var 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
// Sometimes the grabs column is missing
if (ParseUtil.TryCoerceLong(qRow.Find($"td:nth-last-child({tdIndex + 1})").Text(), out var grabs))
{
release.Grabs = grabs;
}
var fullSize = qRow.Find("td.mainblockcontent").Get(6).InnerText;
2015-07-28 19:22:23 +00:00
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
var dateSplit = qRow.Find("td.mainblockcontent").Get(5).InnerHTML.Split(',');
var dateString = dateSplit[1].Substring(0, dateSplit[1].IndexOf('>')).Trim();
2017-03-13 12:36:05 +00:00
release.PublishDate = DateTime.ParseExact(dateString, "dd MMM yyyy HH:mm:ss zz00", CultureInfo.InvariantCulture).ToLocalTime();
var category = qRow.Find("td:eq(0) a").Attr("href").Replace("torrents.php?category=", "");
2015-08-19 21:51:16 +00:00
release.Category = MapTrackerCatToNewznab(category);
release.UploadVolumeFactor = 1;
if (qRow.Find("img[alt=\"Free Torrent\"]").Length >= 1)
{
release.DownloadVolumeFactor = 0;
release.UploadVolumeFactor = 0;
}
2020-02-09 02:35:16 +00:00
else if (hasFreeleech)
release.DownloadVolumeFactor = 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;
var imdblink = qRow.Find("a[href*=\"www.imdb.com/title/\"]").Attr("href");
release.Imdb = ParseUtil.GetLongFromString(imdblink);
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
}
}
}