add Psytorrents tracker

This commit is contained in:
kaso17 2017-03-13 19:08:25 +01:00
parent e37c4115b8
commit 7211dfe07d
3 changed files with 31 additions and 0 deletions

View File

@ -139,6 +139,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
* PolishSource
* Pretome
* PrivateHD
* Psytorrents
* PTFiles
* QcTorrent
* Redacted (PassTheHeadphones)

View File

@ -0,0 +1,29 @@
using Jackett.Models;
using NLog;
using Jackett.Services;
using Jackett.Utils.Clients;
using Jackett.Indexers.Abstract;
namespace Jackett.Indexers
{
public class Psytorrents : GazelleTracker, IIndexer
{
public Psytorrents(IIndexerManagerService indexerManager, IWebClient webClient, Logger logger, IProtectionService protectionService)
: base(name: "Psytorrents",
desc: null,
link: "https://psytorrents.info/",
indexerManager: indexerManager,
logger: logger,
protectionService: protectionService,
webClient: webClient
)
{
Language = "en-us";
Type = "private";
AddCategoryMapping(1, TorznabCatType.Audio, "Music");
AddCategoryMapping(2, TorznabCatType.Movies, "Movies");
AddCategoryMapping(3, TorznabCatType.PC0day, "App");
}
}
}

View File

@ -183,6 +183,7 @@
<Compile Include="Indexers\PiXELHD.cs" />
<Compile Include="Indexers\Hardbay.cs" />
<Compile Include="Indexers\Rarbg.cs" />
<Compile Include="Indexers\Psytorrents.cs" />
<Compile Include="Indexers\ShowRSS.cs" />
<Compile Include="Indexers\Superbits.cs" />
<Compile Include="Indexers\rutracker.cs" />