Jackett/src/Jackett.Common/Indexers/SpeedCD.cs

198 lines
9.1 KiB
C#
Raw Normal View History

2020-02-09 02:35:16 +00:00
using System;
2015-07-19 02:19:09 +00:00
using System.Collections.Generic;
2017-10-29 06:50:47 +00:00
using System.Collections.Specialized;
2015-07-19 02:19:09 +00:00
using System.Globalization;
2016-12-09 17:20:58 +00:00
using System.Text;
2015-07-19 02:19:09 +00:00
using System.Threading.Tasks;
2020-02-29 20:29:51 +00:00
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 Jackett.Common.Utils.Clients;
2017-10-29 06:50:47 +00:00
using Newtonsoft.Json.Linq;
using NLog;
2015-07-19 02:19:09 +00:00
namespace Jackett.Common.Indexers
2015-07-19 02:19:09 +00:00
{
public class SpeedCD : BaseWebIndexer
2015-07-19 02:19:09 +00:00
{
private string LoginUrl => SiteLink + "take_login.php";
private string SearchUrl => SiteLink + "browse.php";
2017-10-29 06:50:47 +00:00
private new ConfigurationDataBasicLogin configData
{
get => (ConfigurationDataBasicLogin)base.configData;
set => base.configData = value;
}
public SpeedCD(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
: base(name: "Speed.cd",
description: "Your home now!",
link: "https://speed.cd/",
caps: new TorznabCapabilities(),
configService: configService,
client: wc,
logger: l,
2015-08-07 19:09:13 +00:00
p: ps,
configData: new ConfigurationDataBasicLogin(@"Speed.Cd have increased their security. If you are having problems please check the security tab in your Speed.Cd profile.
eg. Geo Locking, your seedbox may be in a different country to the one where you login via your web browser"))
2015-07-19 02:19:09 +00:00
{
2016-12-09 17:20:58 +00:00
Encoding = Encoding.UTF8;
Language = "en-us";
Type = "private";
2016-12-09 17:20:58 +00:00
2019-05-11 03:27:25 +00:00
TorznabCaps.SupportsImdbMovieSearch = true;
2017-02-24 18:13:55 +00:00
AddCategoryMapping(1, TorznabCatType.MoviesOther, "Movies/XviD");
AddCategoryMapping(42, TorznabCatType.Movies, "Movies/Packs");
AddCategoryMapping(32, TorznabCatType.Movies, "Movies/Kids");
AddCategoryMapping(43, TorznabCatType.MoviesHD, "Movies/HD");
AddCategoryMapping(47, TorznabCatType.Movies, "Movies/DiVERSiTY");
AddCategoryMapping(28, TorznabCatType.MoviesBluRay, "Movies/B-Ray");
AddCategoryMapping(48, TorznabCatType.Movies3D, "Movies/3D");
AddCategoryMapping(40, TorznabCatType.MoviesDVD, "Movies/DVD-R");
AddCategoryMapping(56, TorznabCatType.Movies, "Movies/Anime");
AddCategoryMapping(50, TorznabCatType.TVSport, "TV/Sports");
AddCategoryMapping(52, TorznabCatType.TVHD, "TV/B-Ray");
AddCategoryMapping(53, TorznabCatType.TVSD, "TV/DVD-R");
AddCategoryMapping(41, TorznabCatType.TV, "TV/Packs");
AddCategoryMapping(55, TorznabCatType.TV, "TV/Kids");
AddCategoryMapping(57, TorznabCatType.TV, "TV/DiVERSiTY");
AddCategoryMapping(49, TorznabCatType.TVHD, "TV/HD");
AddCategoryMapping(2, TorznabCatType.TVSD, "TV/Episodes");
AddCategoryMapping(30, TorznabCatType.TVAnime, "TV/Anime");
AddCategoryMapping(25, TorznabCatType.PCISO, "Games/PC ISO");
AddCategoryMapping(39, TorznabCatType.ConsoleWii, "Games/Wii");
AddCategoryMapping(45, TorznabCatType.ConsolePS3, "Games/PS3");
AddCategoryMapping(35, TorznabCatType.Console, "Games/Nintendo");
AddCategoryMapping(33, TorznabCatType.ConsoleXbox360, "Games/XboX360");
AddCategoryMapping(46, TorznabCatType.PCPhoneOther, "Mobile");
AddCategoryMapping(24, TorznabCatType.PC0day, "Apps/0DAY");
AddCategoryMapping(51, TorznabCatType.PCMac, "Mac");
AddCategoryMapping(54, TorznabCatType.Books, "Educational");
AddCategoryMapping(27, TorznabCatType.Books, "Books-Mags");
AddCategoryMapping(26, TorznabCatType.Audio, "Music/Audio");
AddCategoryMapping(44, TorznabCatType.Audio, "Music/Pack");
AddCategoryMapping(29, TorznabCatType.AudioVideo, "Music/Video");
2015-07-19 02:19:09 +00:00
}
public override async Task<IndexerConfigurationStatus> ApplyConfiguration(JToken configJson)
2015-07-19 02:19:09 +00:00
{
LoadValuesFromJson(configJson);
await DoLogin();
return IndexerConfigurationStatus.RequiresTesting;
}
private async Task DoLogin()
{
2015-07-19 02:19:09 +00:00
var pairs = new Dictionary<string, string> {
{ "username", configData.Username.Value },
{ "password", configData.Password.Value },
};
2015-07-19 02:19:09 +00:00
2015-08-02 18:14:21 +00:00
var result = await RequestLoginAndFollowRedirect(LoginUrl, pairs, null, true, null, SiteLink);
await ConfigureIfOK(result.Cookies, result.Content != null && result.Content.Contains("/browse.php"), () =>
2015-07-19 02:19:09 +00:00
{
2020-02-29 20:29:51 +00:00
var parser = new HtmlParser();
var dom = parser.ParseDocument(result.Content);
var errorMessage = dom.Text();
2019-01-16 11:26:43 +00:00
if (errorMessage.Contains("Wrong Captcha!"))
errorMessage = "Captcha requiered due to a failed login attempt. Login via a browser to whitelist your IP and then reconfigure jackett.";
throw new ExceptionWithConfigData(errorMessage, configData);
});
2015-07-19 02:19:09 +00:00
}
protected override async Task<IEnumerable<ReleaseInfo>> PerformQuery(TorznabQuery query)
2015-07-19 02:19:09 +00:00
{
var releases = new List<ReleaseInfo>();
var qParams = new NameValueCollection();
2017-02-24 18:13:55 +00:00
if (!string.IsNullOrWhiteSpace(query.ImdbID))
{
qParams.Add("search", query.ImdbID);
qParams.Add("d", "on");
}
else if (!string.IsNullOrEmpty(query.GetQueryString()))
{
qParams.Add("search", query.GetQueryString());
}
var catList = MapTorznabCapsToTrackers(query);
foreach (var cat in catList)
{
qParams.Add("c" + cat, "1");
}
var urlSearch = SearchUrl;
if (qParams.Count > 0)
2015-07-19 02:19:09 +00:00
{
urlSearch += $"?{qParams.GetQueryString()}";
}
2015-07-19 02:19:09 +00:00
var response = await RequestStringWithCookiesAndRetry(urlSearch);
2017-02-24 18:13:55 +00:00
if (!response.Content.Contains("/logout.php"))
{
//Cookie appears to expire after a period of time or logging in to the site via browser
await DoLogin();
response = await RequestStringWithCookiesAndRetry(urlSearch);
}
2015-07-19 02:19:09 +00:00
try
{
2020-02-29 20:29:51 +00:00
var parser = new HtmlParser();
var dom = parser.ParseDocument(response.Content);
var rows = dom.QuerySelectorAll("div[id='torrentTable'] > div[class^='box torrentBox'] > div[class='boxContent'] > table > tbody > tr");
2015-07-19 02:19:09 +00:00
foreach (var row in rows)
{
2020-02-29 20:29:51 +00:00
var cells = row.QuerySelectorAll("td");
2020-02-29 20:29:51 +00:00
var title = row.QuerySelector("td[class='lft'] > div > a").TextContent.Trim();
var link = new Uri(SiteLink + row.QuerySelector("img[title='Download']").ParentElement.GetAttribute("href").Trim());
var comments = new Uri(SiteLink + row.QuerySelector("td[class='lft'] > div > a").GetAttribute("href").Trim().Remove(0, 1));
var size = ReleaseInfo.GetBytes(cells[4].TextContent);
var grabs = ParseUtil.CoerceInt(cells[5].TextContent);
var seeders = ParseUtil.CoerceInt(cells[6].TextContent);
var leechers = ParseUtil.CoerceInt(cells[7].TextContent);
2020-02-29 20:29:51 +00:00
var pubDateStr = row.QuerySelector("span[class^='elapsedDate']").GetAttribute("title").Trim().Replace(" at", "");
var publishDate = DateTime.ParseExact(pubDateStr, "dddd, MMMM d, yyyy h:mmtt", CultureInfo.InvariantCulture, DateTimeStyles.AssumeUniversal).ToLocalTime();
2020-02-29 20:29:51 +00:00
var cat = row.QuerySelector("img[class^='Tcat']").ParentElement.GetAttribute("href").Trim().Remove(0, 5);
long.TryParse(cat, out var category);
var downloadVolumeFactor = row.QuerySelector("span:contains(\"[Freeleech]\")") != null ? 0 : 1;
var release = new ReleaseInfo
{
Title = title,
Guid = link,
Link = link,
PublishDate = publishDate,
Size = size,
Grabs = grabs,
Seeders = seeders,
Peers = seeders + leechers,
MinimumRatio = 1,
MinimumSeedTime = 172800, // 48 hours
Category = MapTrackerCatToNewznab(category.ToString()),
Comments = comments,
DownloadVolumeFactor = downloadVolumeFactor,
UploadVolumeFactor = 1
};
2015-07-19 02:19:09 +00:00
releases.Add(release);
}
}
catch (Exception ex)
{
OnParseError(response.Content, ex);
2015-07-19 02:19:09 +00:00
}
return releases;
2015-07-19 02:19:09 +00:00
}
}
}