2014-05-13 17:57:46 +00:00
|
|
|
using NLog;
|
|
|
|
using NzbDrone.Common.Http;
|
|
|
|
using NzbDrone.Core.Configuration;
|
|
|
|
using NzbDrone.Core.Parser;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Indexers.Nyaa
|
|
|
|
{
|
|
|
|
public class Nyaa : HttpIndexerBase<NyaaSettings>
|
|
|
|
{
|
2016-12-09 06:54:15 +00:00
|
|
|
public override string Name => "Nyaa";
|
2015-04-25 16:19:23 +00:00
|
|
|
|
2016-12-09 06:54:15 +00:00
|
|
|
public override DownloadProtocol Protocol => DownloadProtocol.Torrent;
|
|
|
|
public override int PageSize => 100;
|
2014-05-13 17:57:46 +00:00
|
|
|
|
2015-06-27 09:43:17 +00:00
|
|
|
public Nyaa(IHttpClient httpClient, IIndexerStatusService indexerStatusService, IConfigService configService, IParsingService parsingService, Logger logger)
|
|
|
|
: base(httpClient, indexerStatusService, configService, parsingService, logger)
|
2014-05-13 17:57:46 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public override IIndexerRequestGenerator GetRequestGenerator()
|
|
|
|
{
|
|
|
|
return new NyaaRequestGenerator() { Settings = Settings, PageSize = PageSize };
|
|
|
|
}
|
|
|
|
|
|
|
|
public override IParseIndexerResponse GetParser()
|
|
|
|
{
|
|
|
|
return new TorrentRssParser() { UseGuidInfoUrl = true, ParseSizeInDescription = true, ParseSeedersInDescription = true };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|