Jackett/src/Jackett.Common/Indexers/BrokenStones.cs

36 lines
1.4 KiB
C#
Raw Normal View History

using Jackett.Common.Indexers.Abstract;
using Jackett.Common.Models;
using Jackett.Common.Services.Interfaces;
using Jackett.Common.Utils.Clients;
using NLog;
2017-05-19 15:56:16 +00:00
namespace Jackett.Common.Indexers
2017-05-19 15:56:16 +00:00
{
public class BrokenStones : GazelleTracker
2017-05-19 15:56:16 +00:00
{
public BrokenStones(IIndexerConfigurationService configService, WebClient webClient, Logger logger, IProtectionService protectionService)
2017-05-19 15:56:16 +00:00
: base(name: "BrokenStones",
desc: "Broken Stones is a Private site for MacOS and iOS APPS / GAMES",
2017-05-19 15:56:16 +00:00
link: "https://brokenstones.club/",
configService: configService,
2017-05-19 15:56:16 +00:00
logger: logger,
protectionService: protectionService,
webClient: webClient,
supportsFreeleechTokens: true
2017-05-19 15:56:16 +00:00
)
{
Language = "en-us";
Type = "private";
AddCategoryMapping(1, TorznabCatType.PCMac, "MacOS Apps");
AddCategoryMapping(2, TorznabCatType.PCMac, "MacOS Games");
AddCategoryMapping(3, TorznabCatType.PCPhoneIOS, "iOS Apps");
AddCategoryMapping(4, TorznabCatType.PCPhoneIOS, "iOS Games");
AddCategoryMapping(5, TorznabCatType.Other, "Graphics");
AddCategoryMapping(6, TorznabCatType.Audio, "Audio");
AddCategoryMapping(7, TorznabCatType.Other, "Tutorials");
AddCategoryMapping(8, TorznabCatType.Other, "Other");
}
}
}