diff --git a/README.md b/README.md index aea8c86ecfd455bae839e78b6cfac60bdc75d24d..9c3aa7df0ff79ff5877ac84c4a83e984ad4ddab9 100644 --- a/README.md +++ b/README.md @@ -214,6 +214,7 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/ * PolishTracker * Pretome * PrivateHD + * Psytorrents * PTFiles * PuntoTorrent * Redacted (PassTheHeadphones) diff --git a/src/Jackett.Common/Indexers/Psytorrents.cs b/src/Jackett.Common/Indexers/Psytorrents.cs new file mode 100644 index 0000000000000000000000000000000000000000..09d22c12511fa345877dc691f453af864cc4e1a9 --- /dev/null +++ b/src/Jackett.Common/Indexers/Psytorrents.cs @@ -0,0 +1,29 @@ +using Jackett.Indexers.Abstract; +using Jackett.Models; +using Jackett.Services.Interfaces; +using Jackett.Utils.Clients; +using NLog; + +namespace Jackett.Indexers +{ + public class Psytorrents : GazelleTracker + { + public Psytorrents(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService) + : base(name: "Psytorrents", + desc: "Psytorrents (PSY) is a Private Torrent Tracker for ELECTRONIC MUSIC", + link: "https://psytorrents.info/", + configService: configService, + 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"); + } + } +}