mirror of
https://github.com/Jackett/Jackett
synced 2025-02-24 23:22:46 +00:00
add Psytorrents tracker
This commit is contained in:
parent
e37c4115b8
commit
7211dfe07d
3 changed files with 31 additions and 0 deletions
|
@ -139,6 +139,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/
|
|||
* PolishSource
|
||||
* Pretome
|
||||
* PrivateHD
|
||||
* Psytorrents
|
||||
* PTFiles
|
||||
* QcTorrent
|
||||
* Redacted (PassTheHeadphones)
|
||||
|
|
29
src/Jackett/Indexers/Psytorrents.cs
Normal file
29
src/Jackett/Indexers/Psytorrents.cs
Normal 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");
|
||||
}
|
||||
}
|
||||
}
|
|
@ -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" />
|
||||
|
|
Loading…
Reference in a new issue