core: rename c# trackers (part 2 #8355) (#8611)

This commit is contained in:
Diego Heras 2020-05-12 00:58:10 +02:00 committed by GitHub
parent 12597a0669
commit 38bd2cc2f2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
26 changed files with 57 additions and 57 deletions

View File

@ -86,7 +86,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
* MovCr
* MoviesDVDR
* MyPornClub
* Newpct (aka: tvsinpagar, descargas2020, torrentlocura, torrentrapid, tumejortorrent, pctnew, etc)
* NewPCT (aka: tvsinpagar, descargas2020, torrentlocura, torrentrapid, tumejortorrent, pctnew, etc)
* Newstudio
* Nitro
* NNTT
@ -114,7 +114,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
* shokweb
* ShowRSS
* SkyTorrentsClone
* SolidTorrents
* Solid Torrents
* sosulki
* sukebei-Pantsu
* sukebei.Nyaa.si
@ -189,7 +189,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
* Metal Tracker
* MuziekFrabriek
* NetHD (VietTorrent)
* Pornolab
* PornoLab
* PussyTorrents
* RiperAM
* RockBox
@ -401,7 +401,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
* NetCosmo
* NetLab
* New Real World
* Norbits
* NorBits
* NordicBits (NB)
* NORDiCHD
* notwhat.cd
@ -468,7 +468,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
* SportHD
* SportsCult
* SpringSunday
* SuperBits (SBS)
* Superbits (SBS)
* TEKNO3D
* TLFBits
* TOrrent-tuRK (TORK)

View File

@ -20,14 +20,14 @@ using NLog;
namespace Jackett.Common.Indexers
{
[ExcludeFromCodeCoverage]
internal class AniDub : BaseWebIndexer
internal class AniDUB : BaseWebIndexer
{
private static readonly Regex EpisodeInfoRegex = new Regex(@"\[(.*?)(?: \(.*?\))? из (.*?)\]$", RegexOptions.Compiled | RegexOptions.IgnoreCase);
private static readonly Regex SeasonInfoQueryRegex = new Regex(@"S(\d+)(?:E\d*)", RegexOptions.Compiled | RegexOptions.IgnoreCase);
private static readonly Regex SeasonInfoRegex = new Regex(@"(?:(?:TV-)|(?:ТВ-))(\d+)", RegexOptions.Compiled | RegexOptions.IgnoreCase);
private static readonly Lazy<Regex> StripRussianTitleRegex = new Lazy<Regex>(() => new Regex(@"^.*?\/\s*", RegexOptions.Compiled));
public AniDub(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
public AniDUB(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
: base(id: "anidub",
name: "AniDUB",
description: "AniDUB Tracker is a semi-private russian tracker and release group for anime",

View File

@ -19,7 +19,7 @@ using NLog;
namespace Jackett.Common.Indexers
{
[ExcludeFromCodeCoverage]
public class BitHdtv : BaseWebIndexer
public class BitHDTV : BaseWebIndexer
{
private string LoginUrl => SiteLink + "login.php";
private string TakeLoginUrl => SiteLink + "takelogin.php";
@ -27,7 +27,7 @@ namespace Jackett.Common.Indexers
private new ConfigurationDataRecaptchaLogin configData => (ConfigurationDataRecaptchaLogin)base.configData;
public BitHdtv(IIndexerConfigurationService configService, WebClient w, Logger l, IProtectionService ps)
public BitHDTV(IIndexerConfigurationService configService, WebClient w, Logger l, IProtectionService ps)
: base(id: "bithdtv",
name: "BIT-HDTV",
description: "BIT-HDTV - Home of High Definition",

View File

@ -15,7 +15,7 @@ using NLog;
namespace Jackett.Common.Indexers
{
[ExcludeFromCodeCoverage]
public class Corsarored : BaseWebIndexer
public class CorsaroRed : BaseWebIndexer
{
private const int MaxSearchPageLimit = 4;
private const int MaxResultsPerPage = 25;
@ -45,7 +45,7 @@ namespace Jackett.Common.Indexers
["Content-Type"] = "application/json"
};
public Corsarored(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
public CorsaroRed(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
: base(id: "corsarored",
name: "Corsaro.red",
description: "Italian Torrents",

View File

@ -18,7 +18,7 @@ using NLog;
namespace Jackett.Common.Indexers
{
[ExcludeFromCodeCoverage]
public class Digitalcore : BaseWebIndexer
public class DigitalCore : BaseWebIndexer
{
private string SearchUrl => SiteLink + "api/v1/torrents";
private string LoginUrl => SiteLink + "api/v1/auth";
@ -29,7 +29,7 @@ namespace Jackett.Common.Indexers
set => base.configData = value;
}
public Digitalcore(IIndexerConfigurationService configService, WebClient w, Logger l, IProtectionService ps)
public DigitalCore(IIndexerConfigurationService configService, WebClient w, Logger l, IProtectionService ps)
: base(id: "digitalcore",
name: "DigitalCore",
description: "DigitalCore is a Private Torrent Tracker for MOVIES / TV / GENERAL",

View File

@ -17,7 +17,7 @@ using NLog;
namespace Jackett.Common.Indexers
{
[ExcludeFromCodeCoverage]
public class myAmity : BaseWebIndexer
public class MyAmity : BaseWebIndexer
{
private string LoginUrl => SiteLink + "account-login.php";
private string BrowseUrl => SiteLink + "torrents-search.php";
@ -28,7 +28,7 @@ namespace Jackett.Common.Indexers
set => base.configData = value;
}
public myAmity(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
public MyAmity(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
: base(id: "myamity",
name: "myAmity",
description: "A German general tracker.",

View File

@ -18,7 +18,7 @@ using NLog;
namespace Jackett.Common.Indexers
{
[ExcludeFromCodeCoverage]
public class Myanonamouse : BaseWebIndexer
public class MyAnonamouse : BaseWebIndexer
{
private string LoginUrl => SiteLink + "takelogin.php";
private string SearchUrl => SiteLink + "tor/js/loadSearchJSONbasic.php";
@ -29,7 +29,7 @@ namespace Jackett.Common.Indexers
set => base.configData = value;
}
public Myanonamouse(IIndexerConfigurationService configService, WebClient c, Logger l, IProtectionService ps)
public MyAnonamouse(IIndexerConfigurationService configService, WebClient c, Logger l, IProtectionService ps)
: base(id: "myanonamouse",
name: "MyAnonamouse",
description: "Friendliness, Warmth and Sharing",

View File

@ -17,7 +17,7 @@ using NLog;
namespace Jackett.Common.Indexers
{
[ExcludeFromCodeCoverage]
public class TransmitheNet : BaseWebIndexer
public class Nebulance : BaseWebIndexer
{
private string LoginUrl => SiteLink + "login.php";
private string SearchUrl => SiteLink + "torrents.php?action=basic&order_by=time&order_way=desc&search_type=0&taglist=&tags_type=0";
@ -28,10 +28,10 @@ namespace Jackett.Common.Indexers
set => base.configData = value;
}
public TransmitheNet(IIndexerConfigurationService configService, Utils.Clients.WebClient c, Logger l, IProtectionService ps)
public Nebulance(IIndexerConfigurationService configService, Utils.Clients.WebClient c, Logger l, IProtectionService ps)
: base(id: "transmithenet",
name: "Nebulance",
description: " At Nebulance we will change the way you think about TV",
description: "At Nebulance we will change the way you think about TV",
link: "https://nebulance.io/",
caps: TorznabUtil.CreateDefaultTorznabTVCaps(),
configService: configService,

View File

@ -18,7 +18,7 @@ using static Jackett.Common.Models.IndexerConfig.ConfigurationData;
namespace Jackett.Common.Indexers
{
[ExcludeFromCodeCoverage]
public class Newpct : BaseCachingWebIndexer
public class NewPCT : BaseCachingWebIndexer
{
private enum ReleaseType
{
@ -115,10 +115,10 @@ namespace Jackett.Common.Indexers
"http://pctnew.com/",
};
public Newpct(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
public NewPCT(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
: base(id: "newpct",
name: "Newpct",
description: "Newpct - Descargar peliculas, series y estrenos torrent gratis",
name: "NewPCT",
description: "NewPCT - Descargar peliculas, series y estrenos torrent gratis",
link: "https://descargas2020.org/",
caps: new TorznabCapabilities(TorznabCatType.TV,
TorznabCatType.TVSD,

View File

@ -25,7 +25,7 @@ using NLog;
namespace Jackett.Common.Indexers
{
[ExcludeFromCodeCoverage]
public class Norbits : BaseCachingWebIndexer
public class NorBits : BaseCachingWebIndexer
{
private string LoginUrl => SiteLink + "login.php";
private string LoginCheckUrl => SiteLink + "takelogin.php";
@ -42,10 +42,10 @@ namespace Jackett.Common.Indexers
private ConfigurationDataNorbits ConfigData => (ConfigurationDataNorbits)configData;
public Norbits(IIndexerConfigurationService configService, Utils.Clients.WebClient w, Logger l, IProtectionService ps)
public NorBits(IIndexerConfigurationService configService, Utils.Clients.WebClient w, Logger l, IProtectionService ps)
: base(id: "norbits",
name: "Norbits",
description: "Norbits is a Norwegian Private site for MOVIES / TV / GENERAL",
name: "NorBits",
description: "NorBits is a Norwegian Private site for MOVIES / TV / GENERAL",
link: "https://norbits.net/",
caps: new TorznabCapabilities
{

View File

@ -24,7 +24,7 @@ using NLog;
namespace Jackett.Common.Indexers
{
[ExcludeFromCodeCoverage]
public class Nordicbits : BaseCachingWebIndexer
public class NordicBits : BaseCachingWebIndexer
{
private string LoginUrl => SiteLink + "login.php";
private string LoginCheckUrl => SiteLink + "takelogin.php";
@ -41,10 +41,10 @@ namespace Jackett.Common.Indexers
private ConfigurationDataNordicbits ConfigData => (ConfigurationDataNordicbits)configData;
public Nordicbits(IIndexerConfigurationService configService, Utils.Clients.WebClient w, Logger l, IProtectionService ps)
public NordicBits(IIndexerConfigurationService configService, Utils.Clients.WebClient w, Logger l, IProtectionService ps)
: base(id: "nordicbits",
name: "Nordicbits",
description: "Nordicbits is a Danish Private site for MOVIES / TV / GENERAL",
name: "NordicBits",
description: "NordicBits is a Danish Private site for MOVIES / TV / GENERAL",
link: "https://nordicb.org/",
caps: new TorznabCapabilities
{

View File

@ -9,9 +9,9 @@ using NLog;
namespace Jackett.Common.Indexers
{
[ExcludeFromCodeCoverage]
public class notwhatcd : GazelleTracker
public class NotWhatCD : GazelleTracker
{
public notwhatcd(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
public NotWhatCD(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
: base(id: "notwhatcd",
name: "notwhat.cd",
description: "A music tracker",

View File

@ -17,7 +17,7 @@ using NLog;
namespace Jackett.Common.Indexers
{
[ExcludeFromCodeCoverage]
public class PiXELHD : BaseWebIndexer
public class PixelHD : BaseWebIndexer
{
private string LoginUrl => SiteLink + "login.php";
private string BrowseUrl => SiteLink + "torrents.php";
@ -32,7 +32,7 @@ namespace Jackett.Common.Indexers
private string input_username = null;
private string input_password = null;
public PiXELHD(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService)
public PixelHD(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService)
: base(id: "pixelhd",
name: "PiXELHD",
description: "PixelHD (PxHD) is a Private Torrent Tracker for HD .MP4 MOVIES / TV",

View File

@ -18,7 +18,7 @@ using NLog;
namespace Jackett.Common.Indexers
{
[ExcludeFromCodeCoverage]
public class Pornolab : BaseWebIndexer
public class PornoLab : BaseWebIndexer
{
private string LoginUrl => SiteLink + "forum/login.php";
private string SearchUrl => SiteLink + "forum/tracker.php";
@ -33,10 +33,10 @@ namespace Jackett.Common.Indexers
set => base.configData = value;
}
public Pornolab(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
public PornoLab(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
: base(id: "pornolab",
name: "Pornolab",
description: "Pornolab is a Semi-Private Russian site for Adult content",
name: "PornoLab",
description: "PornoLab is a Semi-Private Russian site for Adult content",
link: "https://pornolab.net/",
caps: new TorznabCapabilities(),
configService: configService,

View File

@ -17,13 +17,13 @@ using NLog;
namespace Jackett.Common.Indexers
{
[ExcludeFromCodeCoverage]
public class Pretome : BaseWebIndexer
public class PreToMe : BaseWebIndexer
{
private string LoginUrl => SiteLink + "takelogin.php";
private string SearchUrl => SiteLink + "browse.php";
private new ConfigurationDataPinNumber configData => (ConfigurationDataPinNumber)base.configData;
public Pretome(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
public PreToMe(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
: base(id: "pretome",
name: "PreToMe",
description: "BitTorrent site for High Quality, High Definition (HD) movies and TV Shows",

View File

@ -9,9 +9,9 @@ using NLog;
namespace Jackett.Common.Indexers
{
[ExcludeFromCodeCoverage]
public class Psytorrents : GazelleTracker
public class PsyTorrents : GazelleTracker
{
public Psytorrents(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
public PsyTorrents(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
: base(id: "psytorrents",
name: "Psytorrents",
description: "Psytorrents (PSY) is a Private Torrent Tracker for ELECTRONIC MUSIC",

View File

@ -18,7 +18,7 @@ using static Jackett.Common.Models.IndexerConfig.ConfigurationData;
namespace Jackett.Common.Indexers
{
[ExcludeFromCodeCoverage]
public class Rarbg : BaseWebIndexer
public class RarBG : BaseWebIndexer
{
// API doc: https://torrentapi.org/apidocs_v2.txt?app_id=Jackett
private const string ApiEndpoint = "https://torrentapi.org/pubapi_v2.php";
@ -30,7 +30,7 @@ namespace Jackett.Common.Indexers
private new ConfigurationData configData => base.configData;
public Rarbg(IIndexerConfigurationService configService, Utils.Clients.WebClient wc, Logger l, IProtectionService ps)
public RarBG(IIndexerConfigurationService configService, Utils.Clients.WebClient wc, Logger l, IProtectionService ps)
: base(id: "rarbg",
name: "RARBG",
description: "RARBG is a Public torrent site for MOVIES / TV / GENERAL",

View File

@ -38,7 +38,7 @@ namespace Jackett.Common.Indexers
public SolidTorrents(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
: base(id: "solidtorrents",
name: "Solid Torrents",
description: "SolidTorrents is a Public torrent meta-search engine",
description: "Solid Torrents is a Public torrent meta-search engine",
link: "https://solidtorrents.net/",
caps: new TorznabCapabilities(),
configService: configService,

View File

@ -18,7 +18,7 @@ using NLog;
namespace Jackett.Common.Indexers
{
[ExcludeFromCodeCoverage]
public class Superbits : BaseWebIndexer
public class SuperBits : BaseWebIndexer
{
private string SearchUrl => SiteLink + "api/v1/torrents";
private string LoginUrl => SiteLink + "api/v1/auth";
@ -29,10 +29,10 @@ namespace Jackett.Common.Indexers
set => base.configData = value;
}
public Superbits(IIndexerConfigurationService configService, WebClient w, Logger l, IProtectionService ps)
public SuperBits(IIndexerConfigurationService configService, WebClient w, Logger l, IProtectionService ps)
: base(id: "superbits",
name: "Superbits",
description: "SuperBits is a SWEDISH Private Torrent Tracker for MOVIES / TV / GENERAL",
description: "Superbits is a SWEDISH Private Torrent Tracker for MOVIES / TV / GENERAL",
link: "https://superbits.org/",
caps: new TorznabCapabilities
{

View File

@ -18,7 +18,7 @@ using NLog;
namespace Jackett.Common.Indexers
{
[ExcludeFromCodeCoverage]
public class TVstore : BaseWebIndexer
public class TVStore : BaseWebIndexer
{
private readonly Dictionary<int, long> _imdbLookup = new Dictionary<int, long>(); // _imdbLookup[internalId] = imdbId
@ -31,7 +31,7 @@ namespace Jackett.Common.Indexers
private readonly Regex _seriesInfoSearchRegex = new Regex(
@"S(?<season>\d{1,3})(?:E(?<episode>\d{1,3}))?$", RegexOptions.IgnoreCase);
public TVstore(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) :
public TVStore(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps) :
base(id: "tvstore",
name: "TV Store",
description: "TV Store is a HUNGARIAN Private Torrent Tracker for TV",

View File

@ -20,7 +20,7 @@ using NLog;
namespace Jackett.Common.Indexers
{
[ExcludeFromCodeCoverage]
public class Torrentech : BaseWebIndexer
public class TorrenTech : BaseWebIndexer
{
private string LoginUrl => SiteLink + "index.php?act=Login&CODE=01&CookieDate=1";
private string IndexUrl => SiteLink + "index.php";
@ -31,10 +31,10 @@ namespace Jackett.Common.Indexers
set => base.configData = value;
}
public Torrentech(IIndexerConfigurationService configService, Utils.Clients.WebClient wc, Logger l, IProtectionService ps)
public TorrenTech(IIndexerConfigurationService configService, Utils.Clients.WebClient wc, Logger l, IProtectionService ps)
: base(id: "torrentech",
name: "Torrentech",
description: "TorrenTech (TTH) is a Private Torrent Tracker for ELECTRONIC MUSIC",
description: "Torrentech (TTH) is a Private Torrent Tracker for ELECTRONIC MUSIC",
link: "https://www.torrentech.org/",
caps: TorznabUtil.CreateDefaultTorznabTVCaps(),
configService: configService,

View File

@ -17,7 +17,7 @@ using NLog;
namespace Jackett.Common.Indexers
{
[ExcludeFromCodeCoverage]
public class Yts : BaseWebIndexer
public class YTS : BaseWebIndexer
{
public override string[] LegacySiteLinks { get; protected set; } = new string[] {
"https://yts.ag/",
@ -33,7 +33,7 @@ namespace Jackett.Common.Indexers
set => base.configData = value;
}
public Yts(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
public YTS(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
: base(id: "yts",
name: "YTS",
description: "YTS is a Public torrent site specialising in HD movies of small size",