mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-27 22:56:45 -04:00
f77a2feeef
* Stylecop Rules and Fixes
31 lines
1.0 KiB
C#
31 lines
1.0 KiB
C#
using NLog;
|
|
using NzbDrone.Common.Http;
|
|
using NzbDrone.Core.Configuration;
|
|
using NzbDrone.Core.Parser;
|
|
|
|
namespace NzbDrone.Core.Indexers.Waffles
|
|
{
|
|
public class Waffles : HttpIndexerBase<WafflesSettings>
|
|
{
|
|
public override string Name => "Waffles";
|
|
|
|
public override DownloadProtocol Protocol => DownloadProtocol.Torrent;
|
|
public override int PageSize => 15;
|
|
|
|
public Waffles(IHttpClient httpClient, IIndexerStatusService indexerStatusService, IConfigService configService, IParsingService parsingService, Logger logger)
|
|
: base(httpClient, indexerStatusService, configService, parsingService, logger)
|
|
{
|
|
}
|
|
|
|
public override IIndexerRequestGenerator GetRequestGenerator()
|
|
{
|
|
return new WafflesRequestGenerator() { Settings = Settings };
|
|
}
|
|
|
|
public override IParseIndexerResponse GetParser()
|
|
{
|
|
return new WafflesRssParser() { ParseSizeInDescription = true, ParseSeedersInDescription = true };
|
|
}
|
|
}
|
|
}
|