using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Globalization; using System.Linq; using System.Net; using System.Text; using System.Threading.Tasks; using Jackett.Common.Models; using Jackett.Common.Models.IndexerConfig; using Jackett.Common.Services.Interfaces; using Jackett.Common.Utils; using Jackett.Common.Utils.Clients; using Newtonsoft.Json.Linq; using NLog; namespace Jackett.Common.Indexers { public class Rarbg : BaseWebIndexer { // API doc: https://torrentapi.org/apidocs_v2.txt private static readonly string defaultSiteLink = "https://torrentapi.org/"; private Uri BaseUri { get { return new Uri(configData.Url.Value); } set { configData.Url.Value = value.ToString(); } } private string ApiEndpoint { get { return BaseUri + "pubapi_v2.php"; } } private new ConfigurationDataUrl configData { get { return (ConfigurationDataUrl)base.configData; } set { base.configData = value; } } private DateTime lastTokenFetch; private string token; private string app_id; private bool provideTorrentLink = false; private readonly TimeSpan TOKEN_DURATION = TimeSpan.FromMinutes(10); private bool HasValidToken { get { return !string.IsNullOrEmpty(token) && lastTokenFetch > DateTime.Now - TOKEN_DURATION; } } public Rarbg(IIndexerConfigurationService configService, Utils.Clients.WebClient wc, Logger l, IProtectionService ps) : base(name: "RARBG", description: "RARBG is a Public torrent site for MOVIES / TV / GENERAL", link: "https://rarbg.to/", caps: new TorznabCapabilities(), configService: configService, client: wc, logger: l, p: ps, configData: new ConfigurationDataUrl(defaultSiteLink)) { Encoding = Encoding.GetEncoding("windows-1252"); Language = "en-us"; Type = "public"; var provideTorrentLinkItem = new ConfigurationData.BoolItem { Value = false }; provideTorrentLinkItem.Name = "Generate torrent download link additionally to magnet (not recommended due to DDoS protection)."; configData.AddDynamic("providetorrentlink", provideTorrentLinkItem); TorznabCaps.SupportsImdbSearch = true; webclient.requestDelay = 2.1; // The api has a 1req/2s limit. AddCategoryMapping(4, TorznabCatType.XXX, "XXX (18+)"); AddCategoryMapping(14, TorznabCatType.MoviesSD, "Movies/XVID"); AddCategoryMapping(48, TorznabCatType.MoviesHD, "Movies/XVID/720"); AddCategoryMapping(17, TorznabCatType.MoviesSD, "Movies/x264"); AddCategoryMapping(44, TorznabCatType.MoviesHD, "Movies/x264/1080"); AddCategoryMapping(45, TorznabCatType.MoviesHD, "Movies/x264/720"); AddCategoryMapping(47, TorznabCatType.Movies3D, "Movies/x264/3D"); AddCategoryMapping(50, TorznabCatType.MoviesHD, "Movies/x264/4k"); AddCategoryMapping(51, TorznabCatType.MoviesHD, "Movies/x265/4k"); AddCategoryMapping(52, TorznabCatType.MoviesHD, "Movs/x265/4k/HDR"); AddCategoryMapping(42, TorznabCatType.MoviesBluRay, "Movies/Full BD"); AddCategoryMapping(46, TorznabCatType.MoviesBluRay, "Movies/BD Remux"); AddCategoryMapping(18, TorznabCatType.TVSD, "TV Episodes"); AddCategoryMapping(41, TorznabCatType.TVHD, "TV HD Episodes"); AddCategoryMapping(49, TorznabCatType.TVHD, "TV UHD Episodes"); // torrentapi.org returns "Movies/TV-UHD-episodes" for some reason AddCategoryMapping(49, TorznabCatType.TVHD, "Movies/TV-UHD-episodes"); // possibly because thats what the category is called on the /top100.php page AddCategoryMapping(23, TorznabCatType.AudioMP3, "Music/MP3"); AddCategoryMapping(25, TorznabCatType.AudioLossless, "Music/FLAC"); AddCategoryMapping(27, TorznabCatType.PCGames, "Games/PC ISO"); AddCategoryMapping(28, TorznabCatType.PCGames, "Games/PC RIP"); AddCategoryMapping(40, TorznabCatType.ConsolePS3, "Games/PS3"); AddCategoryMapping(32, TorznabCatType.ConsoleXbox360, "Games/XBOX-360"); AddCategoryMapping(33, TorznabCatType.PCISO, "Software/PC ISO"); AddCategoryMapping(35, TorznabCatType.BooksEbook, "e-Books"); app_id = "jackett_v" + EnvironmentUtil.JackettVersion; } public override void LoadValuesFromJson(JToken jsonConfig, bool useProtectionService = false) { base.LoadValuesFromJson(jsonConfig, useProtectionService); var provideTorrentLinkItem = (ConfigurationData.BoolItem)configData.GetDynamic("providetorrentlink"); if (provideTorrentLinkItem != null) { provideTorrentLink = provideTorrentLinkItem.Value; } } private async Task CheckToken() { if (!HasValidToken) { var queryCollection = new NameValueCollection(); queryCollection.Add("get_token", "get_token"); queryCollection.Add("app_id", app_id); var tokenUrl = ApiEndpoint + "?" + queryCollection.GetQueryString(); var result = await RequestStringWithCookiesAndRetry(tokenUrl); var json = JObject.Parse(result.Content); token = json.Value("token"); lastTokenFetch = DateTime.Now; } } public override async Task ApplyConfiguration(JToken configJson) { LoadValuesFromJson(configJson); var releases = await PerformQuery(new TorznabQuery()); await ConfigureIfOK(string.Empty, releases.Count() > 0, () => { throw new Exception("Could not find releases from this URL"); }); return IndexerConfigurationStatus.Completed; } protected override async Task> PerformQuery(TorznabQuery query) { return await PerformQuery(query, 0); } public async Task> PerformQuery(TorznabQuery query, int attempts) { await CheckToken(); var releases = new List(); var searchString = query.GetQueryString(); var queryCollection = new NameValueCollection(); queryCollection.Add("token", token); queryCollection.Add("format", "json_extended"); queryCollection.Add("app_id", app_id); queryCollection.Add("limit", "100"); queryCollection.Add("ranked", "0"); if (query.ImdbID != null) { queryCollection.Add("mode", "search"); queryCollection.Add("search_imdb", query.ImdbID); } else if (query.RageID != null) { queryCollection.Add("mode", "search"); queryCollection.Add("search_tvrage", query.RageID.ToString()); } /*else if (query.TvdbID != null) { queryCollection.Add("mode", "search"); queryCollection.Add("search_tvdb", query.TvdbID); }*/ else if (!string.IsNullOrWhiteSpace(searchString)) { searchString = searchString.Replace("'", ""); // ignore ' (e.g. search for america's Next Top Model) queryCollection.Add("mode", "search"); queryCollection.Add("search_string", searchString); } else { queryCollection.Add("mode", "list"); } var querycats = MapTorznabCapsToTrackers(query); if (querycats.Count == 0) querycats = GetAllTrackerCategories(); // default to all, without specifing it some categories are missing (e.g. games), see #4146 var cats = string.Join(";", querycats); queryCollection.Add("category", cats); var searchUrl = ApiEndpoint + "?" + queryCollection.GetQueryString(); var response = await RequestStringWithCookiesAndRetry(searchUrl, string.Empty); try { var jsonContent = JObject.Parse(response.Content); int errorCode = jsonContent.Value("error_code"); if (errorCode == 20) // no results found { return releases.ToArray(); } // return empty results in case of invalid imdb ID, see issue #1486 if (errorCode == 10) // Cant find imdb in database. Are you sure this imdb exists? return releases; if (errorCode == 2 // Invalid token set! || errorCode == 4) // Invalid token. Use get_token for a new one! { token = null; if (attempts < 3) { return await PerformQuery(query, ++attempts); } else { throw new Exception("error " + errorCode.ToString() + " after " + attempts.ToString() + " attempts: " + jsonContent.Value("error")); } } if (errorCode > 0) // too many requests per seconds ??? { // we use the IwebClient rate limiter now, this shouldn't happen throw new Exception("error " + errorCode.ToString() + ": " + jsonContent.Value("error")); } foreach (var item in jsonContent.Value("torrent_results")) { var release = new ReleaseInfo(); release.Title = WebUtility.HtmlDecode(item.Value("title")); release.Category = MapTrackerCatDescToNewznab(item.Value("category")); release.MagnetUri = new Uri(item.Value("download")); release.InfoHash = release.MagnetUri.ToString().Split(':')[3].Split('&')[0]; release.Comments = new Uri(item.Value("info_page")); if (provideTorrentLink) release.Link = release.Comments; // in case of a torrent download we grab the link from the details page in Download() release.Guid = release.MagnetUri; var episode_info = item.Value("episode_info"); if (episode_info.HasValues) { var imdb = episode_info.Value("imdb"); release.Imdb = ParseUtil.GetImdbID(imdb); release.TVDBId = episode_info.Value("tvdb"); release.RageID = episode_info.Value("tvrage"); release.TMDb = episode_info.Value("themoviedb"); } // ex: 2015-08-16 21:25:08 +0000 var dateStr = item.Value("pubdate").Replace(" +0000", ""); var dateTime = DateTime.ParseExact(dateStr, "yyyy-MM-dd HH:mm:ss", CultureInfo.InvariantCulture); release.PublishDate = DateTime.SpecifyKind(dateTime, DateTimeKind.Utc).ToLocalTime(); release.Seeders = item.Value("seeders"); release.Peers = item.Value("leechers") + release.Seeders; release.Size = item.Value("size"); release.DownloadVolumeFactor = 0; release.UploadVolumeFactor = 1; releases.Add(release); } } catch (Exception ex) { OnParseError(response.Content, ex); } return releases; } public override async Task Download(Uri link) { // build download link from info redirect link var slink = link.ToString(); var response = await RequestStringWithCookies(slink); if (!response.IsRedirect && response.Content.Contains("Invalid token.")) { // get new token token = null; await CheckToken(); slink += "&token=" + token; response = await RequestStringWithCookies(slink); } if (!response.IsRedirect) throw new Exception("Downlaod Failed, expected redirect"); var targeturi = new Uri(response.RedirectingTo); var id = targeturi.Segments.Last(); var dluri = new Uri(targeturi, "/download.php?id=" + id + "&f=jackett.torrent"); return await base.Download(dluri, RequestType.GET); } } }