Jackett/src/Jackett.Common/Indexers/MoreThanTV.cs

311 lines
14 KiB
C#
Raw Normal View History

2020-02-09 02:35:16 +00:00
using System;
2015-04-19 02:05:38 +00:00
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Globalization;
2015-04-19 02:05:38 +00:00
using System.Linq;
using System.Text;
using System.Text.RegularExpressions;
2015-04-19 02:05:38 +00:00
using System.Threading.Tasks;
using AngleSharp.Dom;
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.Linq;
using NLog;
namespace Jackett.Common.Indexers
2015-04-19 02:05:38 +00:00
{
public class MoreThanTV : BaseWebIndexer
2015-04-19 02:05:38 +00:00
{
private string LoginUrl => SiteLink + "login.php";
private string SearchUrl => SiteLink + "ajax.php?action=browse&searchstr=";
private string DownloadUrl => SiteLink + "torrents.php?action=download&id=";
private string CommentsUrl => SiteLink + "torrents.php?torrentid=";
2015-04-19 02:05:38 +00:00
private ConfigurationDataBasicLogin ConfigData => (ConfigurationDataBasicLogin)configData;
public MoreThanTV(IIndexerConfigurationService configService, Utils.Clients.WebClient c, Logger l, IProtectionService ps)
: base(name: "MoreThanTV",
description: "Private torrent tracker for TV / MOVIES, and the internal tracker for the release group DRACULA.",
link: "https://www.morethan.tv/",
caps: new TorznabCapabilities(
TorznabCatType.Movies,
TorznabCatType.TV,
TorznabCatType.Other),
configService: configService,
client: c,
logger: l,
2015-08-07 19:09:13 +00:00
p: ps,
configData: new ConfigurationDataBasicLogin())
2015-04-19 02:05:38 +00:00
{
Encoding = Encoding.UTF8;
2016-12-09 17:20:58 +00:00
Language = "en-us";
Type = "private";
TorznabCaps.SupportsImdbMovieSearch = true;
2015-04-19 02:05:38 +00:00
}
public override async Task<IndexerConfigurationStatus> ApplyConfiguration(JToken configJson)
2015-04-19 02:05:38 +00:00
{
LoadValuesFromJson(configJson);
var pairs = new Dictionary<string, string> {
{ "username", ConfigData.Username.Value },
{ "password", ConfigData.Password.Value },
{ "login", "Log in" },
{ "keeplogged", "1" }
};
2015-04-19 02:05:38 +00:00
2015-10-12 18:58:40 +00:00
var preRequest = await RequestStringWithCookiesAndRetry(LoginUrl, string.Empty);
var result = await RequestLoginAndFollowRedirect(LoginUrl, pairs, preRequest.Cookies, true, SearchUrl, SiteLink);
2015-10-12 18:58:40 +00:00
await ConfigureIfOK(result.Cookies, result.Content != null && result.Content.Contains("status\":\"success\""), () =>
2015-04-19 02:05:38 +00:00
{
2018-03-14 14:16:20 +00:00
if (result.Content.Contains("Your IP address has been banned."))
throw new ExceptionWithConfigData("Your IP address has been banned.", ConfigData);
var parser = new HtmlParser();
var dom = parser.ParseDocument(result.Content);
foreach (var element in dom.QuerySelectorAll("#loginform > table"))
element.Remove();
var errorMessage = dom.QuerySelector("#loginform").TextContent.Trim().Replace("\n\t", " ");
throw new ExceptionWithConfigData(errorMessage, ConfigData);
});
return IndexerConfigurationStatus.RequiresTesting;
2015-04-19 02:05:38 +00:00
}
protected override async Task<IEnumerable<ReleaseInfo>> PerformQuery(TorznabQuery query)
2015-04-19 02:05:38 +00:00
{
var releases = new List<ReleaseInfo>();
if (!string.IsNullOrWhiteSpace(query.ImdbID))
await GetReleases(releases, query, query.GetQueryString());
else
2015-08-13 22:41:21 +00:00
{
var searchQuery = query.GetQueryString();
searchQuery = searchQuery.Replace("Marvels", "Marvel"); // strip 's for better results
var newSearchQuery = Regex.Replace(searchQuery, @"(S\d{2})$", "$1*"); // If we're just seaching for a season (no episode) append an * to include all episodes of that season.
await GetReleases(releases, query, newSearchQuery);
// Always search for torrent groups (complete seasons) too
var seasonMatch = new Regex(@".*\s[Ss]{1}\d{2}([Ee]{1}\d{2,3})?$").Match(searchQuery);
if (seasonMatch.Success)
{
newSearchQuery = Regex.Replace(searchQuery, @"[Ss]{1}\d{2}([Ee]{1}\d{2,3})?", $"Season {query.Season}");
await GetReleases(releases, query, newSearchQuery);
}
2015-08-13 22:41:21 +00:00
}
return releases;
2015-04-19 02:05:38 +00:00
}
private string GetTorrentSearchUrl(TorznabQuery query, string searchQuery)
2015-04-19 02:05:38 +00:00
{
var qc = new NameValueCollection
{
{ "tags_type", "1" },
{ "order_by", "time" },
{ "order_way", "desc" },
{ "group_results", "1" },
{ "action", "basic" },
{ "searchsubmit", "1" }
};
if (!string.IsNullOrWhiteSpace(query.ImdbID))
qc.Add("description", query.ImdbID);
else
qc.Add("searchstr", searchQuery);
if (query.Categories.Contains(TorznabCatType.Movies.ID))
qc.Add("filter_cat[1]", "1");
if (query.Categories.Contains(TorznabCatType.TV.ID))
qc.Add("filter_cat[2]", "1");
if (query.Categories.Contains(TorznabCatType.Other.ID))
qc.Add("filter_cat[3]", "1");
return SiteLink + "torrents.php?" + qc.GetQueryString();
}
private async Task GetReleases(ICollection<ReleaseInfo> releases, TorznabQuery query, string searchQuery)
{
var searchUrl = GetTorrentSearchUrl(query, searchQuery);
var response = await RequestStringWithCookiesAndRetry(searchUrl);
if (response.IsRedirect)
{
// re login
await ApplyConfiguration(null);
response = await RequestStringWithCookiesAndRetry(searchUrl);
2017-03-03 17:52:19 +00:00
}
2015-04-19 02:05:38 +00:00
try
{
var parser = new HtmlParser();
var document = parser.ParseDocument(response.Content);
var groups = document.QuerySelectorAll(".torrent_table > tbody > tr.group");
var torrents = document.QuerySelectorAll(".torrent_table > tbody > tr.torrent");
// Loop through all torrent (season) groups
foreach (var group in groups)
{
var showName = group.QuerySelector(".tp-showname a").InnerHtml.Replace("(", "").Replace(")", "").Replace(' ', '.');
var season = group.QuerySelector(".big_info a").InnerHtml;
2017-10-17 17:10:53 +00:00
var seasonNumber = SeasonToNumber(season);
if (seasonNumber != null && query.Season > 0 && seasonNumber != query.Season) // filter unwanted seasons
continue;
var seasonTag = SeasonNumberToShortSeason(seasonNumber) ?? season;
// Loop through all group items
var previousElement = group;
var qualityEdition = string.Empty;
while (true)
2015-04-19 02:05:38 +00:00
{
var groupItem = previousElement.NextElementSibling;
2015-05-04 04:12:14 +00:00
2020-02-09 02:35:16 +00:00
if (groupItem == null)
break;
2015-05-04 04:12:14 +00:00
if (!groupItem.ClassList[0].Equals("group_torrent") ||
2020-02-09 02:35:16 +00:00
!groupItem.ClassList[1].StartsWith("groupid_"))
break;
// Found a new edition
if (groupItem.ClassList[2].Equals("edition"))
qualityEdition = groupItem.QuerySelector(".edition_info strong").TextContent.Split('/')[1].Trim();
else if (groupItem.ClassList[2].StartsWith("edition_"))
{
2020-02-09 02:35:16 +00:00
if (qualityEdition.Equals(string.Empty))
break;
// Parse required data
var downloadAnchor = groupItem.QuerySelectorAll("td a").Last();
var qualityData = downloadAnchor.InnerHtml.Split('/');
switch (qualityData.Length)
{
case 0:
Array.Resize(ref qualityData, 2);
qualityData[0] = " ";
qualityData[1] = " ";
break;
case 1:
Array.Resize(ref qualityData, 2);
qualityData[1] = " ";
break;
}
// Replace 4K quality tag with 2160p, so Sonarr etc. can properly parse it
qualityData[1] = qualityData[1].Replace("4K", "2160p");
// Build title
var title = string.Join(".", new List<string>
{
showName,
2017-10-17 17:10:53 +00:00
seasonTag,
qualityData[1].Trim(),
qualityEdition, // Audio quality should be after this one. Unobtainable at the moment.
$"{qualityData[0].Trim()}-MTV"
});
releases.Add(GetReleaseInfo(groupItem, downloadAnchor, title, TorznabCatType.TV.ID));
}
else
break;
previousElement = groupItem;
}
}
// Loop through all torrents
foreach (var torrent in torrents)
{
// Parse required data
var downloadAnchor = torrent.QuerySelector(".big_info > .group_info > a");
var title = downloadAnchor.TextContent;
int category;
var categories = torrent.QuerySelector(".cats_col div").ClassList;
if (categories.Contains("cats_tv"))
category = TorznabCatType.TV.ID;
else if (categories.Contains("cats_movies"))
category = TorznabCatType.Movies.ID;
2017-04-17 04:22:00 +00:00
else if (categories.Contains("cats_other"))
category = TorznabCatType.Other.ID;
else
throw new Exception("Couldn't find category.");
releases.Add(GetReleaseInfo(torrent, downloadAnchor, title, category));
2015-05-04 04:12:14 +00:00
}
}
catch (Exception ex)
{
OnParseError(response.Content, ex);
2015-04-19 02:05:38 +00:00
}
}
2015-04-19 02:05:38 +00:00
private ReleaseInfo GetReleaseInfo(IElement row, IElement downloadAnchor, string title, int category)
{
var downloadAnchorHref = downloadAnchor.Attributes["href"].Value;
var torrentId = downloadAnchorHref.Substring(downloadAnchorHref.LastIndexOf('=') + 1);
if (torrentId.Contains('#'))
torrentId = torrentId.Split('#')[0];
var qFiles = row.QuerySelector("td:nth-last-child(6)");
var files = ParseUtil.CoerceLong(qFiles.TextContent);
var qPublishDate = row.QuerySelector(".time.tooltip").Attributes["title"].Value;
var publishDate = DateTime.ParseExact(qPublishDate, "MMM dd yyyy, HH:mm", CultureInfo.InvariantCulture, DateTimeStyles.AssumeUniversal).ToLocalTime();
var qBanner = row.QuerySelector("div.tp-banner img")?.GetAttribute("src");
var banner = (qBanner != null && !qBanner.Contains("/static/styles/")) ? new Uri(qBanner) : null;
var description = row.QuerySelector("div.tags")?.TextContent.Trim();
var torrentData = row.QuerySelectorAll(".number_column");
if (torrentData.Length != 4) // Size (xx.xx GB[ (Max)]) Snatches (xx) Seeders (xx) Leechers (xx)
throw new Exception($"We expected 4 torrent datas, instead we have {torrentData.Length}.");
2016-12-08 06:31:31 +00:00
var size = ReleaseInfo.GetBytes(torrentData[0].TextContent);
var grabs = int.Parse(torrentData[1].TextContent, NumberStyles.AllowThousands, CultureInfo.InvariantCulture);
var seeders = int.Parse(torrentData[2].TextContent, NumberStyles.AllowThousands, CultureInfo.InvariantCulture);
var leechers = int.Parse(torrentData[3].TextContent, NumberStyles.AllowThousands, CultureInfo.InvariantCulture);
var comments = new Uri(CommentsUrl + torrentId);
var link = new Uri(DownloadUrl + torrentId);
return new ReleaseInfo
{
Title = title,
Category = new List<int> { category }, // Who seasons movies right
Link = link,
PublishDate = publishDate,
BannerUrl = banner,
Description = description,
Seeders = seeders,
Peers = seeders + leechers,
Files = files,
Size = size,
Grabs = grabs,
Guid = comments,
Comments = comments,
DownloadVolumeFactor = 0, // ratioless tracker
UploadVolumeFactor = 1
};
}
2017-10-17 17:10:53 +00:00
// Changes "Season 1" to "1"
private static int? SeasonToNumber(string season)
{
var seasonMatch = new Regex(@"Season (?<seasonNumber>\d{1,2})").Match(season);
if (seasonMatch.Success)
2017-10-17 17:10:53 +00:00
return int.Parse(seasonMatch.Groups["seasonNumber"].Value);
2017-10-17 17:10:53 +00:00
return null;
}
// Changes "1" to "S01"
private static string SeasonNumberToShortSeason(int? season)
{
if (season == null)
return null;
return $"S{season:00}";
}
2015-04-19 02:05:38 +00:00
}
}