Jackett/src/Jackett.Common/Indexers/cgpeers.cs

35 lines
1.3 KiB
C#
Raw Normal View History

2020-02-09 02:35:16 +00:00
using Jackett.Common.Indexers.Abstract;
using Jackett.Common.Models;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils.Clients;
using NLog;
namespace Jackett.Common.Indexers
2017-02-02 17:04:25 +00:00
{
public class CGPeers : GazelleTracker
2017-02-02 17:04:25 +00:00
{
public CGPeers(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps)
: base("CGPeers",
description: "CGPeers is a Private Torrent Tracker for GRAPHICS SOFTWARE / TUTORIALS / ETC",
link: "https://www.cgpeers.com/",
caps: new TorznabCapabilities(),
configService: configService,
client: wc,
logger: l,
p: ps,
supportsFreeleechTokens: true)
2017-02-02 17:04:25 +00:00
{
Language = "en-us";
Type = "private";
AddCategoryMapping(1, TorznabCatType.PCISO, "Full Applications");
AddCategoryMapping(2, TorznabCatType.PC0day, "Plugins");
AddCategoryMapping(3, TorznabCatType.Other, "Tutorials");
AddCategoryMapping(4, TorznabCatType.Other, "Models");
AddCategoryMapping(5, TorznabCatType.Other, "Materials");
AddCategoryMapping(6, TorznabCatType.OtherMisc, "Misc");
AddCategoryMapping(7, TorznabCatType.Other, "GameDev");
2017-02-02 17:04:25 +00:00
}
}
}