diff --git a/README.md b/README.md
index 8bee0ae11..fce4d802c 100644
--- a/README.md
+++ b/README.md
@@ -207,6 +207,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
* NCore
* Nebulance
* New Real World
+ * NordicBits
* Norbits
* notwhat.cd
* Ourbits
diff --git a/src/Jackett.Common/Indexers/Nordicbits.cs b/src/Jackett.Common/Indexers/Nordicbits.cs
new file mode 100644
index 000000000..29878b7fa
--- /dev/null
+++ b/src/Jackett.Common/Indexers/Nordicbits.cs
@@ -0,0 +1,917 @@
+using System;
+using System.Collections.Generic;
+using System.Collections.Specialized;
+using System.Globalization;
+using System.IO;
+using System.Linq;
+using System.Reflection;
+using System.Text;
+using System.Text.RegularExpressions;
+using System.Threading.Tasks;
+using CsQuery;
+using Jackett.Common.Helpers;
+using Jackett.Common.Models;
+using Jackett.Common.Models.IndexerConfig.Bespoke;
+using Jackett.Common.Services.Interfaces;
+using Jackett.Common.Utils;
+using Jackett.Common.Utils.Clients;
+using Newtonsoft.Json;
+using Newtonsoft.Json.Linq;
+using NLog;
+
+namespace Jackett.Common.Indexers
+{
+ /// s
+ /// Provider for Nordicbits Private Tracker
+ ///
+ public class Nordicbits : BaseCachingWebIndexer
+ {
+ private string LoginUrl => SiteLink + "login.php";
+ private string LoginCheckUrl => SiteLink + "takelogin.php";
+ private string SearchUrl => SiteLink + "browse.php";
+ private string TorrentCommentUrl => SiteLink + "details.php?id={id}&comonly=1#page1";
+ private string TorrentDescriptionUrl => SiteLink + "details.php?id={id}";
+ private string TorrentDownloadUrl => SiteLink + "download.php?torrent={id}&torrent_pass={passkey}";
+ private bool Latency => ConfigData.Latency.Value;
+ private bool DevMode => ConfigData.DevMode.Value;
+ private bool CacheMode => ConfigData.HardDriveCache.Value;
+ private static string Directory => Path.Combine(Path.GetTempPath(), "Jackett", MethodBase.GetCurrentMethod().DeclaringType?.Name);
+
+ private readonly Dictionary _emulatedBrowserHeaders = new Dictionary();
+ private CQ _fDom;
+ private ConfigurationDataNordicbits ConfigData => (ConfigurationDataNordicbits)configData;
+
+ public Nordicbits(IIndexerConfigurationService configService, Utils.Clients.WebClient w, Logger l, IProtectionService ps)
+ : base(
+ name: "Nordicbits",
+ description: "Nordicbits is a Danish Private site for MOVIES / TV / GENERAL",
+ link: "https://nordicb.org/",
+ caps: new TorznabCapabilities(),
+ configService: configService,
+ client: w,
+ logger: l,
+ p: ps,
+ configData: new ConfigurationDataNordicbits())
+ {
+ Encoding = Encoding.GetEncoding("iso-8859-1");
+ Language = "da-dk";
+ Type = "private";
+
+ TorznabCaps.SupportsImdbSearch = false;
+
+ // Apps
+ AddCategoryMapping("cat=63", TorznabCatType.PCPhoneAndroid, "APPS - Android");
+ AddCategoryMapping("cat=17", TorznabCatType.PC, "APPS - MAC");
+ AddCategoryMapping("cat=12", TorznabCatType.PCMac, "APPS - Windows");
+ AddCategoryMapping("cat=62", TorznabCatType.PCPhoneIOS, "APPS - IOS");
+ AddCategoryMapping("cat=64", TorznabCatType.PC, "APPS - Linux");
+
+ // Books
+ AddCategoryMapping("cat=54", TorznabCatType.AudioAudiobook, "Books - Audiobooks");
+ AddCategoryMapping("cat=9", TorznabCatType.BooksEbook, "Books - E-Books");
+
+ // Games
+ AddCategoryMapping("cat=24", TorznabCatType.PCGames, "Games - PC");
+ AddCategoryMapping("cat=53", TorznabCatType.Console, "Games - Nintendo");
+ AddCategoryMapping("cat=49", TorznabCatType.ConsolePS4, "Games - Playstation");
+ AddCategoryMapping("cat=51", TorznabCatType.ConsoleXbox, "Games - XBOX");
+
+ // Movies
+ AddCategoryMapping("cat=35", TorznabCatType.Movies3D, "Movies - 3D");
+ AddCategoryMapping("cat=42", TorznabCatType.MoviesUHD, "Movies - 4K/2160p");
+ AddCategoryMapping("cat=47", TorznabCatType.MoviesUHD, "Movies - 4k/2160p Boxset");
+ AddCategoryMapping("cat=15", TorznabCatType.MoviesBluRay, "Movies - BluRay");
+ AddCategoryMapping("cat=5", TorznabCatType.MoviesHD, "Movies - Remux");
+ AddCategoryMapping("cat=16", TorznabCatType.MoviesDVD, "Movies - DVD Boxset");
+ AddCategoryMapping("cat=6", TorznabCatType.MoviesDVD, "Movies - DVD");
+ AddCategoryMapping("cat=21", TorznabCatType.MoviesHD, "Movies - HD-1080p");
+ AddCategoryMapping("cat=19", TorznabCatType.MoviesHD, "Movies - HD-1080p Boxset");
+ AddCategoryMapping("cat=22", TorznabCatType.MoviesHD, "Movies - HD-720p");
+ AddCategoryMapping("cat=20", TorznabCatType.MoviesHD, "Movies - HD-720p Boxset");
+ AddCategoryMapping("cat=25", TorznabCatType.MoviesHD, "Movies - Kids");
+ AddCategoryMapping("cat=10", TorznabCatType.MoviesSD, "Movies - SD");
+ AddCategoryMapping("cat=23", TorznabCatType.MoviesSD, "Movies - MP4 Tablet");
+
+ // Music
+ AddCategoryMapping("cat=28", TorznabCatType.AudioLossless, "Music - FLAC");
+ AddCategoryMapping("cat=60", TorznabCatType.AudioLossless, "Music - FLAC Boxset");
+ AddCategoryMapping("cat=4", TorznabCatType.AudioMP3, "Music - MP3");
+ AddCategoryMapping("cat=59", TorznabCatType.AudioMP3, "Music - MP3 Boxset");
+ AddCategoryMapping("cat=1", TorznabCatType.AudioMP3, "Music - Musicvideos");
+ AddCategoryMapping("cat=61", TorznabCatType.AudioMP3, "Music - Musicvideos Boxset");
+
+ // Series
+ AddCategoryMapping("cat=48", TorznabCatType.TVUHD, "TV - HD-4K/2160p");
+ AddCategoryMapping("cat=57", TorznabCatType.TVUHD, "TV - HD-4K/2160p Boxset");
+ AddCategoryMapping("cat=11", TorznabCatType.TVSD, "TV - Boxset");
+ AddCategoryMapping("cat=7", TorznabCatType.TVHD, "TV - HD-1080p");
+ AddCategoryMapping("cat=31", TorznabCatType.TVHD, "TV - HD-1080p Boxset");
+ AddCategoryMapping("cat=30", TorznabCatType.TVHD, "TV - HD-720p");
+ AddCategoryMapping("cat=32", TorznabCatType.TVHD, "TV - HD-720p Boxset");
+ AddCategoryMapping("cat=5", TorznabCatType.TVSD, "TV - SD");
+ AddCategoryMapping("cat=66", TorznabCatType.TVSport, "TV - SD/HD Mixed");
+ }
+
+ ///
+ /// Configure our FADN Provider
+ ///
+ /// Our params in Json
+ /// Configuration state
+ public override async Task ApplyConfiguration(JToken configJson)
+ {
+ // Retrieve config values set by Jackett's user
+ LoadValuesFromJson(configJson);
+
+ // Check & Validate Config
+ ValidateConfig();
+
+ // Setting our data for a better emulated browser (maximum security)
+ // TODO: Encoded Content not supported by Jackett at this time
+ // emulatedBrowserHeaders.Add("Accept-Encoding", "gzip, deflate");
+
+ // If we want to simulate a browser
+ if (ConfigData.Browser.Value)
+ {
+ // Clean headers
+ _emulatedBrowserHeaders.Clear();
+
+ // Inject headers
+ _emulatedBrowserHeaders.Add("Accept", ConfigData.HeaderAccept.Value);
+ _emulatedBrowserHeaders.Add("Accept-Language", ConfigData.HeaderAcceptLang.Value);
+ _emulatedBrowserHeaders.Add("DNT", Convert.ToInt32(ConfigData.HeaderDnt.Value).ToString());
+ _emulatedBrowserHeaders.Add("Upgrade-Insecure-Requests", Convert.ToInt32(ConfigData.HeaderUpgradeInsecure.Value).ToString());
+ _emulatedBrowserHeaders.Add("User-Agent", ConfigData.HeaderUserAgent.Value);
+ _emulatedBrowserHeaders.Add("Referer", LoginUrl);
+ }
+
+ await DoLogin();
+
+ return IndexerConfigurationStatus.RequiresTesting;
+ }
+
+ ///
+ /// Perform login to racker
+ ///
+ ///
+ private async Task DoLogin()
+ {
+ // Build WebRequest for index
+ var myIndexRequest = new Utils.Clients.WebRequest()
+ {
+ Type = RequestType.GET,
+ Url = SiteLink,
+ Headers = _emulatedBrowserHeaders,
+ Encoding = Encoding
+ };
+
+ // Get index page for cookies
+ Output("\nGetting index page (for cookies).. with " + SiteLink);
+ var indexPage = await webclient.GetString(myIndexRequest);
+
+ // Building login form data
+ var pairs = new Dictionary {
+ { "username", ConfigData.Username.Value },
+ { "password", ConfigData.Password.Value }
+ };
+
+ // Build WebRequest for login
+ var myRequestLogin = new Utils.Clients.WebRequest()
+ {
+ Type = RequestType.GET,
+ Url = LoginUrl,
+ Headers = _emulatedBrowserHeaders,
+ Cookies = indexPage.Cookies,
+ Referer = SiteLink,
+ Encoding = Encoding
+ };
+
+ // Get login page -- (not used, but simulation needed by tracker security's checks)
+ LatencyNow();
+ Output("\nGetting login page (user simulation).. with " + LoginUrl);
+ await webclient.GetString(myRequestLogin);
+
+ // Build WebRequest for submitting authentification
+ var request = new Utils.Clients.WebRequest()
+ {
+ PostData = pairs,
+ Referer = LoginUrl,
+ Type = RequestType.POST,
+ Url = LoginCheckUrl,
+ Headers = _emulatedBrowserHeaders,
+ Cookies = indexPage.Cookies,
+ Encoding = Encoding
+ };
+
+ // Perform loggin
+ LatencyNow();
+ Output("\nPerform loggin.. with " + LoginCheckUrl);
+ var response = await webclient.GetString(request);
+
+ // Test if we are logged in
+ await ConfigureIfOK(response.Cookies, response.Cookies != null && response.Cookies.Contains("uid="), () =>
+ {
+ // Default error message
+ var message = "Error during attempt !";
+ // Parse redirect header
+ var redirectTo = response.RedirectingTo;
+
+ // Oops, unable to login
+ Output("-> Login failed: " + message, "error");
+ throw new ExceptionWithConfigData("Login failed: " + message, configData);
+ });
+
+ Output("\nCookies saved for future uses...");
+ ConfigData.CookieHeader.Value = indexPage.Cookies + " " + response.Cookies + " ts_username=" + ConfigData.Username.Value;
+
+ Output("\n-> Login Success\n");
+ }
+
+ ///
+ /// Check logged-in state for provider
+ ///
+ ///
+ private async Task CheckLogin()
+ {
+ // Checking ...
+ Output("\n-> Checking logged-in state....");
+ var loggedInCheck = await RequestStringWithCookies(SearchUrl);
+ if (!loggedInCheck.Content.Contains("logout.php"))
+ {
+ // Cookie expired, renew session on provider
+ Output("-> Not logged, login now...\n");
+
+ await DoLogin();
+ }
+ else
+ {
+ // Already logged, session active
+ Output("-> Already logged, continue...\n");
+ }
+ }
+
+ ///
+ /// Execute our search query
+ ///
+ /// Query
+ /// Releases
+ protected override async Task> PerformQuery(TorznabQuery query)
+ {
+ var releases = new List();
+ var torrentRowList = new List();
+ var exactSearchTerm = query.GetQueryString();
+ var searchUrl = SearchUrl;
+
+ // Check login before performing a query
+ await CheckLogin();
+
+ // Check cache first so we don't query the server (if search term used or not in dev mode)
+ if (!DevMode && !string.IsNullOrEmpty(exactSearchTerm))
+ {
+ lock (cache)
+ {
+ // Remove old cache items
+ CleanCache();
+
+ // Search in cache
+ var cachedResult = cache.FirstOrDefault(i => i.Query == exactSearchTerm);
+ if (cachedResult != null)
+ return cachedResult.Results.Select(s => (ReleaseInfo)s.Clone()).ToArray();
+ }
+ }
+
+ var SearchTerms = new List { exactSearchTerm };
+
+ // duplicate search without diacritics
+ var baseSearchTerm = StringUtil.RemoveDiacritics(exactSearchTerm);
+ if (baseSearchTerm != exactSearchTerm)
+ SearchTerms.Add(baseSearchTerm);
+
+ foreach (var searchTerm in SearchTerms)
+ {
+ // Build our query
+ var request = BuildQuery(searchTerm, query, searchUrl);
+
+ // Getting results & Store content
+ var response = await RequestStringWithCookiesAndRetry(request, ConfigData.CookieHeader.Value);
+ _fDom = response.Content;
+
+ try
+ {
+ var firstPageRows = FindTorrentRows();
+
+ // Add them to torrents list
+ torrentRowList.AddRange(firstPageRows.Select(fRow => fRow.Cq()));
+
+ // If pagination available
+ int nbResults;
+ int pageLinkCount;
+ nbResults = 1;
+ pageLinkCount = 1;
+
+ // Check if we have a minimum of one result
+ if (firstPageRows.Length > 1)
+ {
+ // Retrieve total count on our alone page
+ nbResults = firstPageRows.Count();
+ }
+ else
+ {
+ // Check if no result
+ if (torrentRowList.Count == 0)
+ {
+ // No results found
+ Output("\nNo result found for your query, please try another search term ...\n", "info");
+
+ // No result found for this query
+ break;
+ }
+ }
+
+ Output("\nFound " + nbResults + " result(s) (+/- " + firstPageRows.Length + ") in " + pageLinkCount + " page(s) for this query !");
+ Output("\nThere are " + (firstPageRows.Length -2 ) + " results on the first page !");
+
+ // Loop on results
+
+ foreach (var tRow in torrentRowList.Skip(1).Take(torrentRowList.Count-2))
+ {
+ Output("Torrent #" + (releases.Count + 1));
+
+ // ID
+ var idOrig = tRow.Find("td:eq(1) > a:eq(0)").Attr("href").Split('=')[1];
+ var id = idOrig.Substring(0, idOrig.Length - 4);
+ Output("ID: " + id);
+
+ // Release Name
+ var name = tRow.Find("td:eq(1) > a:eq(0)").Text();
+
+ // Category
+ string categoryID = tRow.Find("td:eq(0) > a:eq(0)").Attr("href").Split('?').Last();
+ var newznab = MapTrackerCatToNewznab(categoryID);
+ Output("Category: " + MapTrackerCatToNewznab(categoryID).First().ToString() + " (" + categoryID + ")");
+
+ // Seeders
+ int seeders = ParseUtil.CoerceInt(Regex.Match(tRow.Find("td:eq(9)").Text(), @"\d+").Value);
+ Output("Seeders: " + seeders);
+
+ // Leechers
+ int leechers = ParseUtil.CoerceInt(Regex.Match(tRow.Find("td:eq(10)").Text(), @"\d+").Value);
+ Output("Leechers: " + leechers);
+
+ // Files
+ int files = 1;
+ files = ParseUtil.CoerceInt(Regex.Match(tRow.Find("td:eq(4)").Text(), @"\d+").Value);
+ Output("Files: " + files);
+
+ // Completed
+ int completed = ParseUtil.CoerceInt(Regex.Match(tRow.Find("td:eq(8)").Text(), @"\d+").Value);
+ Output("Completed: " + completed);
+
+ // Size
+ var humanSize = tRow.Find("td:eq(7)").Text().ToLowerInvariant();
+ var size = ReleaseInfo.GetBytes(humanSize);
+ Output("Size: " + humanSize + " (" + size + " bytes)");
+
+ // Publish DateToString
+ var dateTimeOrig = tRow.Find("td:eq(6)").Text();
+ var datestr = Regex.Replace(dateTimeOrig, @"<[^>]+>| ", "").Trim();
+ datestr = Regex.Replace(datestr, "Today", DateTime.Now.ToString("MMM dd yyyy"), RegexOptions.IgnoreCase);
+ datestr = Regex.Replace(datestr, "Yesterday", DateTime.Now.Date.AddDays(-1).ToString("MMM dd yyyy"), RegexOptions.IgnoreCase);
+ DateTime date = DateTimeUtil.FromUnknown(datestr, "DK");
+ Output("Released on: " + date);
+
+ // Torrent Details URL
+ var detailsLink = new Uri(TorrentDescriptionUrl.Replace("{id}", id.ToString()));
+ Output("Details: " + detailsLink.AbsoluteUri);
+
+ // Torrent Comments URL
+ var commentsLink = new Uri(TorrentCommentUrl.Replace("{id}", id.ToString()));
+ Output("Comments Link: " + commentsLink.AbsoluteUri);
+
+ // Torrent Download URL
+ var passkey = tRow.Find("td:eq(2) > a:eq(0)").Attr("href");
+ var key = Regex.Match(passkey, "(?<=torrent_pass\\=)([a-zA-z0-9]*)");
+ Uri downloadLink = new Uri(TorrentDownloadUrl.Replace("{id}", id.ToString()).Replace("{passkey}", key.ToString()));
+ Output("Download Link: " + downloadLink.AbsoluteUri);
+
+ // Building release infos
+ var release = new ReleaseInfo
+ {
+ Category = MapTrackerCatToNewznab(categoryID.ToString()),
+ Title = name,
+ Seeders = seeders,
+ Peers = seeders + leechers,
+ MinimumRatio = 1,
+ MinimumSeedTime = 172800,
+ PublishDate = date,
+ Size = size,
+ Files = files,
+ Grabs = completed,
+ Guid = detailsLink,
+ Comments = commentsLink,
+ Link = downloadLink
+ };
+
+ // IMDB
+ var imdbLink = tRow.Find("a[href*=\"http://imdb.com/title/\"]").First().Attr("href");
+ release.Imdb = ParseUtil.GetLongFromString(imdbLink);
+
+ if (tRow.Find("img[title=\"Free Torrent\"]").Length >= 1)
+ release.DownloadVolumeFactor = 0;
+ else if (tRow.Find("img[title=\"Halfleech\"]").Length >= 1)
+ release.DownloadVolumeFactor = 0.5;
+ else if (tRow.Find("img[title=\"90% Freeleech\"]").Length >= 1)
+ release.DownloadVolumeFactor = 0.1;
+ else
+ release.DownloadVolumeFactor = 1;
+
+ release.UploadVolumeFactor = 1;
+
+ releases.Add(release);
+ }
+ }
+ catch (Exception ex)
+ {
+ OnParseError("Error, unable to parse result \n" + ex.StackTrace, ex);
+ }
+ }
+ // Return found releases
+ return releases;
+ }
+
+ ///
+ /// Build query to process
+ ///
+ /// Term to search
+ /// Torznab Query for categories mapping
+ /// Search url for provider
+ /// Page number to request
+ /// URL to query for parsing and processing results
+ private string BuildQuery(string term, TorznabQuery query, string url, int page = 0)
+ {
+ var parameters = new NameValueCollection();
+ var categoriesList = MapTorznabCapsToTrackers(query);
+ string searchterm = term;
+
+ // Building our tracker query
+ parameters.Add("searchin", "title");
+ parameters.Add("incldead", "0");
+
+ // If search term provided
+ if (!string.IsNullOrWhiteSpace(query.ImdbID))
+ {
+ searchterm = "imdbsearch=" + query.ImdbID;
+ }
+ else if (!string.IsNullOrWhiteSpace(term))
+ {
+ searchterm = "search=" + WebUtilityHelpers.UrlEncode(term, Encoding.GetEncoding(28591));
+ }
+ else
+ {
+ // Showing all torrents (just for output function)
+ searchterm = "search=";
+ term = "all";
+ }
+
+ // Loop on categories and change the catagories for search purposes
+ for (int i = 0; i < categoriesList.Count; i++)
+ {
+ // APPS
+ if (new[] { "28", "60", "4", "59", "1", "61" }.Any(c => categoriesList[i].Contains(categoriesList[i])))
+ {
+ categoriesList[i] = categoriesList[i].Replace("cat=", "cats5[]=");
+ }
+ // Books
+ if (new[] { "28", "60", "4", "59", "1", "61" }.Any(c => categoriesList[i].Contains(categoriesList[i])))
+ {
+ categoriesList[i] = categoriesList[i].Replace("cat=", "cats6[]=");
+ }
+ // Games
+ if (new[] { "24", "53", "49", "51" }.Any(c => categoriesList[i].Contains(categoriesList[i])))
+ {
+ categoriesList[i] = categoriesList[i].Replace("cat=", "cats3[]=");
+ }
+ // Movies
+ if (new[] { "35", "42", "47", "15", "5", "16", "6", "21", "19", "22", "20", "25", "10", "23" }.Any(c => categoriesList[i].Contains(categoriesList[i])))
+ {
+ categoriesList[i] = categoriesList[i].Replace("cat=", "cats1[]=");
+ }
+ // Music
+ if (new[] { "28", "60", "4", "59", "1", "61" }.Any(c => categoriesList[i].Contains(categoriesList[i])))
+ {
+ categoriesList[i] = categoriesList[i].Replace("cat=", "cats4[]=");
+ }
+ // Series
+ if (new[] { "48", "57", "11", "7", "31", "30", "32", "5", "66" }.Any(c => categoriesList[i].Contains(categoriesList[i])))
+ {
+ categoriesList[i] = categoriesList[i].Replace("cat=", "cats2[]=");
+ }
+ }
+
+ // Build category search string
+ var CatQryStr = "";
+ foreach (var cat in categoriesList)
+ CatQryStr += cat + "&";
+
+ // Building our query
+ url += "?" + CatQryStr + searchterm + "&" + parameters.GetQueryString();
+
+ Output("\nBuilded query for \"" + term + "\"... " + url);
+
+ // Return our search url
+ return url;
+ }
+
+ ///
+ /// Switch Method for Querying
+ ///
+ /// URL created by Query Builder
+ /// Results from query
+ private async Task QueryExec(string request)
+ {
+ WebClientStringResult results;
+
+ // Switch in we are in DEV mode with Hard Drive Cache or not
+ if (DevMode && CacheMode)
+ {
+ // Check Cache before querying and load previous results if available
+ results = await QueryCache(request);
+ }
+ else
+ {
+ // Querying tracker directly
+ results = await QueryTracker(request);
+ }
+ return results;
+ }
+
+ ///
+ /// Get Torrents Page from Cache by Query Provided
+ ///
+ /// URL created by Query Builder
+ /// Results from query
+ private async Task QueryCache(string request)
+ {
+ WebClientStringResult results;
+
+ // Create Directory if not exist
+ System.IO.Directory.CreateDirectory(Directory);
+
+ // Clean Storage Provider Directory from outdated cached queries
+ CleanCacheStorage();
+
+ // Create fingerprint for request
+ var file = Directory + request.GetHashCode() + ".json";
+
+ // Checking modes states
+ if (System.IO.File.Exists(file))
+ {
+ // File exist... loading it right now !
+ Output("Loading results from hard drive cache ..." + request.GetHashCode() + ".json");
+ results = JsonConvert.DeserializeObject(System.IO.File.ReadAllText(file));
+ }
+ else
+ {
+ // No cached file found, querying tracker directly
+ results = await QueryTracker(request);
+
+ // Cached file didn't exist for our query, writing it right now !
+ Output("Writing results to hard drive cache ..." + request.GetHashCode() + ".json");
+ System.IO.File.WriteAllText(file, JsonConvert.SerializeObject(results));
+ }
+ return results;
+ }
+
+ ///
+ /// Get Torrents Page from Tracker by Query Provided
+ ///
+ /// URL created by Query Builder
+ /// Results from query
+ private async Task QueryTracker(string request)
+ {
+ // Cache mode not enabled or cached file didn't exist for our query
+ Output("\nQuerying tracker for results....");
+
+ // Request our first page
+ LatencyNow();
+ var results = await RequestStringWithCookiesAndRetry(request, ConfigData.CookieHeader.Value, SearchUrl, _emulatedBrowserHeaders);
+
+ // Return results from tracker
+ return results;
+ }
+
+ ///
+ /// Clean Hard Drive Cache Storage
+ ///
+ /// Force Provider Folder deletion
+ private void CleanCacheStorage(bool force = false)
+ {
+ // Check cleaning method
+ if (force)
+ {
+ // Deleting Provider Storage folder and all files recursively
+ Output("\nDeleting Provider Storage folder and all files recursively ...");
+
+ // Check if directory exist
+ if (System.IO.Directory.Exists(Directory))
+ {
+ // Delete storage directory of provider
+ System.IO.Directory.Delete(Directory, true);
+ Output("-> Storage folder deleted successfully.");
+ }
+ else
+ {
+ // No directory, so nothing to do
+ Output("-> No Storage folder found for this provider !");
+ }
+ }
+ else
+ {
+ var i = 0;
+ // Check if there is file older than ... and delete them
+ Output("\nCleaning Provider Storage folder... in progress.");
+ System.IO.Directory.GetFiles(Directory)
+ .Select(f => new System.IO.FileInfo(f))
+ .Where(f => f.LastAccessTime < DateTime.Now.AddMilliseconds(-Convert.ToInt32(ConfigData.HardDriveCacheKeepTime.Value)))
+ .ToList()
+ .ForEach(f =>
+ {
+ Output("Deleting cached file << " + f.Name + " >> ... done.");
+ f.Delete();
+ i++;
+ });
+
+ // Inform on what was cleaned during process
+ if (i > 0)
+ {
+ Output("-> Deleted " + i + " cached files during cleaning.");
+ }
+ else
+ {
+ Output("-> Nothing deleted during cleaning.");
+ }
+ }
+ }
+
+ ///
+ /// Generate a random fake latency to avoid detection on tracker side
+ ///
+ private void LatencyNow()
+ {
+ // Need latency ?
+ if (Latency)
+ {
+ var random = new Random(DateTime.Now.Millisecond);
+ var waiting = random.Next(Convert.ToInt32(ConfigData.LatencyStart.Value),
+ Convert.ToInt32(ConfigData.LatencyEnd.Value));
+ Output("\nLatency Faker => Sleeping for " + waiting + " ms...");
+
+ // Sleep now...
+ System.Threading.Thread.Sleep(waiting);
+ }
+ // Generate a random value in our range
+ }
+
+ ///
+ /// Find torrent rows in search pages
+ ///
+ /// JQuery Object
+ private CQ FindTorrentRows()
+ {
+ // Return all occurencis of torrents found
+ //return _fDom["#content > table > tr"];
+ return _fDom["# base_content > table.mainouter > tbody > tr > td.outer > div.article > table > tbody > tr:not(:first)"];
+ }
+
+ ///
+ /// Download torrent file from tracker
+ ///
+ /// URL string
+ ///
+ public override async Task Download(Uri link)
+ {
+ // Retrieving ID from link provided
+ var id = ParseUtil.CoerceInt(Regex.Match(link.AbsoluteUri, @"\d+").Value);
+ Output("Torrent Requested ID: " + id);
+
+ // Building login form data
+ var pairs = new Dictionary {
+ { "torrentid", id.ToString() },
+ { "_", string.Empty } // ~~ Strange, blank param...
+ };
+
+ // Add emulated XHR request
+ _emulatedBrowserHeaders.Add("X-Prototype-Version", "1.6.0.3");
+ _emulatedBrowserHeaders.Add("X-Requested-With", "XMLHttpRequest");
+
+ // Get torrent file now
+ Output("Getting torrent file now....");
+ var response = await base.Download(link);
+
+ // Remove our XHR request header
+ _emulatedBrowserHeaders.Remove("X-Prototype-Version");
+ _emulatedBrowserHeaders.Remove("X-Requested-With");
+
+ // Return content
+ return response;
+ }
+
+ ///
+ /// Output message for logging or developpment (console)
+ ///
+ /// Message to output
+ /// Level for Logger
+ private void Output(string message, string level = "debug")
+ {
+ // Check if we are in dev mode
+ if (DevMode)
+ {
+ // Output message to console
+ Console.WriteLine(message);
+ }
+ else
+ {
+ // Send message to logger with level
+ switch (level)
+ {
+ default:
+ goto case "debug";
+ case "debug":
+ // Only if Debug Level Enabled on Jackett
+ if (logger.IsDebugEnabled)
+ {
+ logger.Debug(message);
+ }
+ break;
+
+ case "info":
+ logger.Info(message);
+ break;
+
+ case "error":
+ logger.Error(message);
+ break;
+ }
+ }
+ }
+
+ ///
+ /// Validate Config entered by user on Jackett
+ ///
+ private void ValidateConfig()
+ {
+ Output("\nValidating Settings ... \n");
+
+ // Check Username Setting
+ if (string.IsNullOrEmpty(ConfigData.Username.Value))
+ {
+ throw new ExceptionWithConfigData("You must provide a username for this tracker to login !", ConfigData);
+ }
+ else
+ {
+ Output("Validated Setting -- Username (auth) => " + ConfigData.Username.Value);
+ }
+
+ // Check Password Setting
+ if (string.IsNullOrEmpty(ConfigData.Password.Value))
+ {
+ throw new ExceptionWithConfigData("You must provide a password with your username for this tracker to login !", ConfigData);
+ }
+ else
+ {
+ Output("Validated Setting -- Password (auth) => " + ConfigData.Password.Value);
+ }
+
+ // Check Max Page Setting
+ if (!string.IsNullOrEmpty(ConfigData.Pages.Value))
+ {
+ try
+ {
+ Output("Validated Setting -- Max Pages => " + Convert.ToInt32(ConfigData.Pages.Value));
+ }
+ catch (Exception)
+ {
+ throw new ExceptionWithConfigData("Please enter a numeric maximum number of pages to crawl !", ConfigData);
+ }
+ }
+ else
+ {
+ throw new ExceptionWithConfigData("Please enter a maximum number of pages to crawl !", ConfigData);
+ }
+
+ // Check Latency Setting
+ if (ConfigData.Latency.Value)
+ {
+ Output("\nValidated Setting -- Latency Simulation enabled");
+
+ // Check Latency Start Setting
+ if (!string.IsNullOrEmpty(ConfigData.LatencyStart.Value))
+ {
+ try
+ {
+ Output("Validated Setting -- Latency Start => " + Convert.ToInt32(ConfigData.LatencyStart.Value));
+ }
+ catch (Exception)
+ {
+ throw new ExceptionWithConfigData("Please enter a numeric latency start in ms !", ConfigData);
+ }
+ }
+ else
+ {
+ throw new ExceptionWithConfigData("Latency Simulation enabled, Please enter a start latency !", ConfigData);
+ }
+
+ // Check Latency End Setting
+ if (!string.IsNullOrEmpty(ConfigData.LatencyEnd.Value))
+ {
+ try
+ {
+ Output("Validated Setting -- Latency End => " + Convert.ToInt32(ConfigData.LatencyEnd.Value));
+ }
+ catch (Exception)
+ {
+ throw new ExceptionWithConfigData("Please enter a numeric latency end in ms !", ConfigData);
+ }
+ }
+ else
+ {
+ throw new ExceptionWithConfigData("Latency Simulation enabled, Please enter a end latency !", ConfigData);
+ }
+ }
+
+ // Check Browser Setting
+ if (ConfigData.Browser.Value)
+ {
+ Output("\nValidated Setting -- Browser Simulation enabled");
+
+ // Check ACCEPT header Setting
+ if (string.IsNullOrEmpty(ConfigData.HeaderAccept.Value))
+ {
+ throw new ExceptionWithConfigData("Browser Simulation enabled, Please enter an ACCEPT header !", ConfigData);
+ }
+ else
+ {
+ Output("Validated Setting -- ACCEPT (header) => " + ConfigData.HeaderAccept.Value);
+ }
+
+ // Check ACCEPT-LANG header Setting
+ if (string.IsNullOrEmpty(ConfigData.HeaderAcceptLang.Value))
+ {
+ throw new ExceptionWithConfigData("Browser Simulation enabled, Please enter an ACCEPT-LANG header !", ConfigData);
+ }
+ else
+ {
+ Output("Validated Setting -- ACCEPT-LANG (header) => " + ConfigData.HeaderAcceptLang.Value);
+ }
+
+ // Check USER-AGENT header Setting
+ if (string.IsNullOrEmpty(ConfigData.HeaderUserAgent.Value))
+ {
+ throw new ExceptionWithConfigData("Browser Simulation enabled, Please enter an USER-AGENT header !", ConfigData);
+ }
+ else
+ {
+ Output("Validated Setting -- USER-AGENT (header) => " + ConfigData.HeaderUserAgent.Value);
+ }
+ }
+ else
+ {
+ // Browser simulation must be enabled (otherwhise, this provider will not work due to tracker's security)
+ throw new ExceptionWithConfigData("Browser Simulation must be enabled for this provider to work, please enable it !", ConfigData);
+ }
+
+ // Check Dev Cache Settings
+ if (ConfigData.HardDriveCache.Value)
+ {
+ Output("\nValidated Setting -- DEV Hard Drive Cache enabled");
+
+ // Check if Dev Mode enabled !
+ if (!ConfigData.DevMode.Value)
+ {
+ throw new ExceptionWithConfigData("Hard Drive is enabled but not in DEV MODE, Please enable DEV MODE !", ConfigData);
+ }
+
+ // Check Cache Keep Time Setting
+ if (!string.IsNullOrEmpty(ConfigData.HardDriveCacheKeepTime.Value))
+ {
+ try
+ {
+ Output("Validated Setting -- Cache Keep Time (ms) => " + Convert.ToInt32(ConfigData.HardDriveCacheKeepTime.Value));
+ }
+ catch (Exception)
+ {
+ throw new ExceptionWithConfigData("Please enter a numeric hard drive keep time in ms !", ConfigData);
+ }
+ }
+ else
+ {
+ throw new ExceptionWithConfigData("Hard Drive Cache enabled, Please enter a maximum keep time for cache !", ConfigData);
+ }
+ }
+ else
+ {
+ // Delete cache if previously existed
+ CleanCacheStorage(true);
+ }
+ }
+ }
+}
diff --git a/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataNordicbits.cs b/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataNordicbits.cs
new file mode 100644
index 000000000..8a36bb914
--- /dev/null
+++ b/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataNordicbits.cs
@@ -0,0 +1,52 @@
+namespace Jackett.Common.Models.IndexerConfig.Bespoke
+{
+ internal class ConfigurationDataNordicbits : ConfigurationData
+ {
+ public DisplayItem CredentialsWarning { get; private set; }
+ public StringItem Username { get; private set; }
+ public StringItem Password { get; private set; }
+ public DisplayItem PagesWarning { get; private set; }
+ public StringItem Pages { get; private set; }
+ public DisplayItem SecurityWarning { get; private set; }
+ public BoolItem Latency { get; private set; }
+ public BoolItem Browser { get; private set; }
+ public DisplayItem LatencyWarning { get; private set; }
+ public StringItem LatencyStart { get; private set; }
+ public StringItem LatencyEnd { get; private set; }
+ public DisplayItem HeadersWarning { get; private set; }
+ public StringItem HeaderAccept { get; private set; }
+ public StringItem HeaderAcceptLang { get; private set; }
+ public BoolItem HeaderDnt { get; private set; }
+ public BoolItem HeaderUpgradeInsecure { get; private set; }
+ public StringItem HeaderUserAgent { get; private set; }
+ public DisplayItem DevWarning { get; private set; }
+ public BoolItem DevMode { get; private set; }
+ public BoolItem HardDriveCache { get; private set; }
+ public StringItem HardDriveCacheKeepTime { get; private set; }
+
+ public ConfigurationDataNordicbits()
+ {
+ CredentialsWarning = new DisplayItem("Credentials Configuration (Private Tracker),
- Username is your account name on this tracker.
- Password is your password associated to your account name.
") { Name = "Credentials" };
+ Username = new StringItem { Name = "Username (Required)", Value = "" };
+ Password = new StringItem { Name = "Password (Required)", Value = "" };
+ PagesWarning = new DisplayItem("Preferences Configuration (Tweak your search settings),
- Max Pages to Process let you specify how many page (max) Jackett can process when doing a search. Setting a value higher than 4 is dangerous for you account ! (Result of too many requests to tracker...that will be suspect).
") { Name = "Preferences" };
+ Pages = new StringItem { Name = "Max Pages to Process (Required)", Value = "4" };
+ SecurityWarning = new DisplayItem("Security Configuration (Read this area carefully !),
- Latency Simulation will simulate human browsing with Jacket by pausing Jacket for an random time between each request, to fake a real content browsing.
- Browser Simulation will simulate a real human browser by injecting additionals headers when doing requests to tracker.You must enable it to use this provider!
") { Name = "Security" };
+ Latency = new BoolItem() { Name = "Latency Simulation (Optional)", Value = false };
+ Browser = new BoolItem() { Name = "Browser Simulation (Forced)", Value = true };
+ LatencyWarning = new DisplayItem("Latency Configuration (Required if latency simulation enabled),
- By filling this range, Jackett will make a random timed pause between requests to tracker to simulate a real browser.
- MilliSeconds only
") { Name = "Simulate Latency" };
+ LatencyStart = new StringItem { Name = "Minimum Latency (ms)", Value = "1589" };
+ LatencyEnd = new StringItem { Name = "Maximum Latency (ms)", Value = "3674" };
+ HeadersWarning = new DisplayItem("Browser Headers Configuration (Required if browser simulation enabled),
- By filling these fields, Jackett will inject headers with your values to simulate a real browser.
- You can get your browser values here: www.whatismybrowser.com
Note that some headers are not necessary because they are injected automatically by this provider such as Accept_Encoding, Connection, Host or X-Requested-With") { Name = "Injecting headers" };
+ HeaderAccept = new StringItem { Name = "Accept", Value = "" };
+ HeaderAcceptLang = new StringItem { Name = "Accept-Language", Value = "" };
+ HeaderDnt = new BoolItem { Name = "DNT", Value = false };
+ HeaderUpgradeInsecure = new BoolItem { Name = "Upgrade-Insecure-Requests", Value = false };
+ HeaderUserAgent = new StringItem { Name = "User-Agent", Value = "" };
+ DevWarning = new DisplayItem("Development Facility (For Developers ONLY),
- By enabling development mode, Jackett will bypass his cache and will output debug messages to console instead of his log file.
- By enabling Hard Drive Cache, This provider will save each query answers from tracker in temp directory, in fact this reduce drastically HTTP requests when building a provider at parsing step for example. So, Jackett will search for a cached query answer on hard drive before executing query on tracker side ! DEV MODE must be enabled to use it !
") { Name = "Development" };
+ DevMode = new BoolItem { Name = "Enable DEV MODE (Developers ONLY)", Value = false };
+ HardDriveCache = new BoolItem { Name = "Enable HARD DRIVE CACHE (Developers ONLY)", Value = false };
+ HardDriveCacheKeepTime = new StringItem { Name = "Keep Cached files for (ms)", Value = "300000" };
+ }
+ }
+}