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