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

41 lines
1.6 KiB
C#
Raw Normal View History

using System.Diagnostics.CodeAnalysis;
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;
2017-05-19 15:56:16 +00:00
namespace Jackett.Common.Indexers
2017-05-19 15:56:16 +00:00
{
[ExcludeFromCodeCoverage]
public class BrokenStones : GazelleTracker
2017-05-19 15:56:16 +00:00
{
public BrokenStones(IIndexerConfigurationService configService, WebClient wc, Logger l, IProtectionService ps,
ICacheService cs)
: base(id: "brokenstones",
name: "BrokenStones",
description: "Broken Stones is a Private site for MacOS and iOS APPS / GAMES",
link: "https://brokenstones.club/",
caps: new TorznabCapabilities(),
configService: configService,
client: wc,
logger: l,
p: ps,
cs: cs,
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.PCMobileiOS, "iOS Apps");
AddCategoryMapping(4, TorznabCatType.PCMobileiOS, "iOS Games");
2017-05-19 15:56:16 +00:00
AddCategoryMapping(5, TorznabCatType.Other, "Graphics");
AddCategoryMapping(6, TorznabCatType.Audio, "Audio");
AddCategoryMapping(7, TorznabCatType.Other, "Tutorials");
AddCategoryMapping(8, TorznabCatType.Other, "Other");
}
}
}