diff --git a/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataSceneFZ.cs b/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataSceneFZ.cs
deleted file mode 100644
index de03abb56..000000000
--- a/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataSceneFZ.cs
+++ /dev/null
@@ -1,55 +0,0 @@
-namespace Jackett.Common.Models.IndexerConfig.Bespoke
-{
- class ConfigurationDataSceneFZ : 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 BoolItem Dead { 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 ConfigurationDataSceneFZ()
- : base()
- {
- 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),
- Include Dead let you search including torrents which are marked as Dead.
") { Name = "Preferences" };
- //Pages = new StringItem { Name = "Max Pages to Process (Required)", Value = "4" };
- Dead = new BoolItem() { Name = "Include Dead (Optional)", Value = false };
- 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.
") { Name = "Security" };
- Latency = new BoolItem() { Name = "Latency Simulation (Optional)", Value = false };
- Browser = new BoolItem() { Name = "Browser Simulation (Optional)", Value = false };
- 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 = true };
- HardDriveCache = new BoolItem { Name = "Enable HARD DRIVE CACHE (Developers ONLY)", Value = true };
- HardDriveCacheKeepTime = new StringItem { Name = "Keep Cached files for (ms)", Value = "300000" };
- }
- }
-}
diff --git a/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataWiHD.cs b/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataWiHD.cs
deleted file mode 100644
index fb51e9136..000000000
--- a/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataWiHD.cs
+++ /dev/null
@@ -1,59 +0,0 @@
-namespace Jackett.Common.Models.IndexerConfig.Bespoke
-{
- class ConfigurationDataWiHD : 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 BoolItem Exclusive { get; private set; }
- public BoolItem Freeleech { get; private set; }
- public BoolItem Reseed { 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 ConfigurationDataWiHD()
- : base()
- {
- CredentialsWarning = new DisplayItem(" YOU MUST USE CLASSIC VIEW ON WIHD !
In order to use this provider with Jackett, take a look in your settings on the tracker before proceeding...
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).
- Exclusive Only let you search only for torrents which are marked Exclusive.
- Freeleech Only let you search only for torrents which are marked Freeleech.
- Reseed Only let you search only for torrents which need to be seeded.
") { Name = "Preferences" };
- Pages = new StringItem { Name = "Max Pages to Process (Required)", Value = "4" };
- Exclusive = new BoolItem() { Name = "Exclusive Only (Optional)", Value = false };
- Freeleech = new BoolItem() { Name = "Freeleech Only (Optional)", Value = false };
- Reseed = new BoolItem() { Name = "Reseed Needed Only (Optional)", Value = false };
- 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.
") { Name = "Security" };
- Latency = new BoolItem() { Name = "Latency Simulation (Optional)", Value = true };
- Browser = new BoolItem() { Name = "Browser Simulation (Optional)", 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" };
- }
- }
-}