Jackett/src/Jackett.Common/Indexers/TorrentLeech.cs

258 lines
12 KiB
C#
Raw Normal View History

2020-02-09 02:35:16 +00:00
using System;
2015-04-26 02:32:03 +00:00
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
2015-04-26 02:32:03 +00:00
using System.Globalization;
2018-04-17 11:55:18 +00:00
using System.Linq;
using System.Net;
2015-04-26 02:32:03 +00:00
using System.Text;
using System.Text.RegularExpressions;
2015-04-26 02:32:03 +00:00
using System.Threading.Tasks;
using AngleSharp.Html.Parser;
using Jackett.Common.Models;
using Jackett.Common.Models.IndexerConfig;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils;
using Newtonsoft.Json;
2017-10-29 06:50:47 +00:00
using Newtonsoft.Json.Linq;
using NLog;
2015-04-26 02:32:03 +00:00
namespace Jackett.Common.Indexers
2015-04-26 02:32:03 +00:00
{
[ExcludeFromCodeCoverage]
public class TorrentLeech : BaseWebIndexer
2015-04-26 02:32:03 +00:00
{
private string LoginUrl => SiteLink + "user/account/login/";
private string SearchUrl => SiteLink + "torrents/browse/list/";
private new ConfigurationDataRecaptchaLogin configData => (ConfigurationDataRecaptchaLogin)base.configData;
2015-04-26 02:32:03 +00:00
public override string[] LegacySiteLinks { get; protected set; } =
{
"https://v4.torrentleech.org/",
};
public TorrentLeech(IIndexerConfigurationService configService, Utils.Clients.WebClient wc, Logger l, IProtectionService ps)
: base("TorrentLeech",
description: "This is what happens when you seed",
link: "https://www.torrentleech.org/",
caps: new TorznabCapabilities
{
SupportsImdbMovieSearch = true
// SupportsImdbTVSearch = true (supported by the site but disabled due to #8107)
},
configService: configService,
client: wc,
logger: l,
p: ps,
configData: new ConfigurationDataRecaptchaLogin(
"For best results, change the 'Default Number of Torrents per Page' setting to 100 in your Profile."))
2015-04-26 02:32:03 +00:00
{
Encoding = Encoding.UTF8;
2016-12-09 17:20:58 +00:00
Language = "en-us";
Type = "private";
AddCategoryMapping(1, TorznabCatType.Movies, "Movies");
AddCategoryMapping(8, TorznabCatType.MoviesSD, "Movies Cam");
AddCategoryMapping(9, TorznabCatType.MoviesSD, "Movies TS/TC");
AddCategoryMapping(11, TorznabCatType.MoviesSD, "Movies DVDRip/DVDScreener");
AddCategoryMapping(12, TorznabCatType.MoviesDVD, "Movies DVD-R");
AddCategoryMapping(13, TorznabCatType.MoviesBluRay, "Movies Bluray");
AddCategoryMapping(14, TorznabCatType.MoviesHD, "Movies BlurayRip");
AddCategoryMapping(15, TorznabCatType.Movies, "Movies Boxsets");
AddCategoryMapping(29, TorznabCatType.TVDocumentary, "Documentaries");
AddCategoryMapping(47, TorznabCatType.MoviesUHD, "Movies 4K");
AddCategoryMapping(36, TorznabCatType.MoviesForeign, "Movies Foreign");
AddCategoryMapping(37, TorznabCatType.MoviesWEBDL, "Movies WEBRip");
AddCategoryMapping(43, TorznabCatType.MoviesHD, "Movies HDRip");
AddCategoryMapping(2, TorznabCatType.TV, "TV");
AddCategoryMapping(26, TorznabCatType.TVSD, "TV Episodes");
AddCategoryMapping(27, TorznabCatType.TV, "TV Boxsets");
AddCategoryMapping(32, TorznabCatType.TVHD, "TV Episodes HD");
AddCategoryMapping(44, TorznabCatType.TVFOREIGN, "TV Foreign");
AddCategoryMapping(3, TorznabCatType.PCGames, "Games");
AddCategoryMapping(17, TorznabCatType.PCGames, "Games PC");
AddCategoryMapping(18, TorznabCatType.ConsoleXbox, "Games XBOX");
AddCategoryMapping(19, TorznabCatType.ConsoleXbox360, "Games XBOX360");
AddCategoryMapping(40, TorznabCatType.ConsoleXboxOne, "Games XBOXONE");
AddCategoryMapping(20, TorznabCatType.ConsolePS3, "Games PS2");
AddCategoryMapping(21, TorznabCatType.ConsolePS3, "Games Mac");
AddCategoryMapping(22, TorznabCatType.ConsolePSP, "Games PSP");
AddCategoryMapping(28, TorznabCatType.ConsoleWii, "Games Wii");
AddCategoryMapping(30, TorznabCatType.ConsoleNDS, "Games Nintendo DS");
AddCategoryMapping(39, TorznabCatType.ConsolePS4, "Games PS4");
AddCategoryMapping(42, TorznabCatType.PCMac, "Games Mac");
AddCategoryMapping(48, TorznabCatType.ConsoleOther, "Games Nintendo Switch");
AddCategoryMapping(4, TorznabCatType.Audio, "Music");
AddCategoryMapping(16, TorznabCatType.AudioVideo, "Music videos");
AddCategoryMapping(31, TorznabCatType.Audio, "Audio");
AddCategoryMapping(7, TorznabCatType.TV, "Animation");
AddCategoryMapping(34, TorznabCatType.TVAnime, "TV Anime");
AddCategoryMapping(35, TorznabCatType.TV, "TV Cartoons");
AddCategoryMapping(5, TorznabCatType.Books, "Books");
AddCategoryMapping(45, TorznabCatType.BooksEbook, "Books EBooks");
AddCategoryMapping(46, TorznabCatType.BooksComics, "Books Comics");
AddCategoryMapping(6, TorznabCatType.PC, "Apps");
AddCategoryMapping(23, TorznabCatType.PCISO, "PC ISO");
AddCategoryMapping(24, TorznabCatType.PCMac, "PC Mac");
AddCategoryMapping(25, TorznabCatType.PCPhoneOther, "PC Mobile");
AddCategoryMapping(33, TorznabCatType.PC0day, "PC 0-day");
AddCategoryMapping(38, TorznabCatType.Other, "Education");
2015-04-26 02:32:03 +00:00
}
2018-04-17 11:55:18 +00:00
public override async Task<ConfigurationData> GetConfigurationForSetup()
{
var loginPage = await RequestStringWithCookies(LoginUrl, string.Empty);
var parser = new HtmlParser();
var dom = parser.ParseDocument(loginPage.Content);
var captcha = dom.QuerySelector(".g-recaptcha");
if (captcha != null)
2018-04-17 11:55:18 +00:00
{
var result = configData;
2018-04-17 11:55:18 +00:00
result.CookieHeader.Value = loginPage.Cookies;
result.Captcha.SiteKey = captcha.GetAttribute("data-sitekey");
2018-04-17 11:55:18 +00:00
result.Captcha.Version = "2";
return result;
}
else
{
var result = new ConfigurationDataBasicLogin
{
SiteLink = { Value = configData.SiteLink.Value },
Instructions = { Value = configData.Instructions.Value },
Username = { Value = configData.Username.Value },
Password = { Value = configData.Password.Value },
CookieHeader = { Value = loginPage.Cookies }
};
2018-04-17 11:55:18 +00:00
return result;
}
}
public override async Task<IndexerConfigurationStatus> ApplyConfiguration(JToken configJson)
2015-04-26 02:32:03 +00:00
{
LoadValuesFromJson(configJson);
2018-04-17 11:55:18 +00:00
if (!string.IsNullOrWhiteSpace(configData.Captcha.Cookie))
{
CookieHeader = configData.Captcha.Cookie;
try
{
var results = await PerformQuery(new TorznabQuery());
if (!results.Any())
throw new Exception("Found 0 results in the tracker");
2018-04-17 11:55:18 +00:00
IsConfigured = true;
SaveConfig();
return IndexerConfigurationStatus.Completed;
}
catch (Exception e)
{
IsConfigured = false;
throw new Exception("Your cookie did not work: " + e.Message);
}
}
await DoLogin();
return IndexerConfigurationStatus.RequiresTesting;
}
private async Task DoLogin()
{
2015-04-26 02:32:03 +00:00
var pairs = new Dictionary<string, string> {
{ "username", configData.Username.Value },
{ "password", configData.Password.Value }
};
2015-04-26 02:32:03 +00:00
var result = await RequestLoginAndFollowRedirect(LoginUrl, pairs, null, true, null, LoginUrl);
await ConfigureIfOK(result.Cookies, result.Content != null && result.Content.Contains("/user/account/logout"), () =>
2015-04-26 02:32:03 +00:00
{
var parser = new HtmlParser();
var dom = parser.ParseDocument(result.Content);
var errorMessage = dom.QuerySelector("p.text-danger:contains(\"Error:\")").TextContent.Trim();
throw new ExceptionWithConfigData(errorMessage, configData);
});
2015-04-26 02:32:03 +00:00
}
protected override async Task<IEnumerable<ReleaseInfo>> PerformQuery(TorznabQuery query)
2015-04-26 02:32:03 +00:00
{
var releases = new List<ReleaseInfo>();
// remove dashes at the beginning of keywords as they exclude search strings (see issue #3096)
var searchString = query.GetQueryString();
searchString = Regex.Replace(searchString, @"(^|\s)-", " ");
var searchUrl = SearchUrl;
if (query.IsImdbQuery)
searchUrl += "imdbID/" + query.ImdbID + "/";
else if (!string.IsNullOrWhiteSpace(searchString))
searchUrl += "query/" + WebUtility.UrlEncode(searchString) + "/";
var cats = MapTorznabCapsToTrackers(query);
if (cats.Count > 0)
searchUrl += "categories/" + string.Join(",", cats);
else
searchUrl += "newfilter/2"; // include 0day and music
var results = await RequestStringWithCookiesAndRetry(searchUrl);
if (results.Content.Contains("/user/account/login")) // re-login
{
await DoLogin();
results = await RequestStringWithCookiesAndRetry(searchUrl);
}
try
2015-04-26 02:32:03 +00:00
{
var rows = (JArray)((JObject)JsonConvert.DeserializeObject(results.Content))["torrentList"];
foreach (var row in rows)
{
var title = row["name"].ToString();
if (!query.MatchQueryStringAND(title))
2016-12-29 11:01:42 +00:00
continue;
2015-04-26 02:32:03 +00:00
var torrentId = row["fid"].ToString();
var comments = new Uri(SiteLink + "torrent/" + torrentId);
var link = new Uri(SiteLink + "download/" + torrentId + "/" + row["filename"]);
var publishDate = DateTime.ParseExact(row["addedTimestamp"].ToString(), "yyyy-MM-dd HH:mm:ss", CultureInfo.InvariantCulture);
var seeders = (int)row["seeders"];
// freeleech #6579 #6624 #7367
var dlMultiplier = row["download_multiplier"].ToString();
var dlVolumeFactor = string.IsNullOrEmpty(dlMultiplier) ? 1 : ParseUtil.CoerceInt(dlMultiplier);
var release = new ReleaseInfo
{
Title = title,
Comments = comments,
Guid = comments,
Link = link,
PublishDate = publishDate,
Category = MapTrackerCatToNewznab(row["categoryID"].ToString()),
Size = (long)row["size"],
Grabs = (int)row["completed"],
Seeders = seeders,
Peers = seeders + (int)row["leechers"],
Imdb = ParseUtil.GetImdbID(row["imdbID"].ToString()),
UploadVolumeFactor = 1,
DownloadVolumeFactor = dlVolumeFactor,
MinimumRatio = 1,
MinimumSeedTime = 172800 // 48 hours
};
releases.Add(release);
2015-04-26 02:32:03 +00:00
}
}
catch (Exception ex)
{
OnParseError(results.Content, ex);
}
2015-05-04 04:12:14 +00:00
return releases;
2015-04-26 02:32:03 +00:00
}
}
}