1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-29 02:57:15 +02:00
Sonarr/src/NzbDrone.Core/Indexers/Wombles/Wombles.cs

38 lines
1.1 KiB
C#
Raw Normal View History

2014-12-07 07:55:17 +02:00
using NLog;
using NzbDrone.Common.Http;
using NzbDrone.Core.Configuration;
using NzbDrone.Core.Parser;
2013-09-22 08:20:26 +03:00
using NzbDrone.Core.ThingiProvider;
2013-04-07 10:30:37 +03:00
namespace NzbDrone.Core.Indexers.Wombles
{
public class Wombles : HttpIndexerBase<NullConfig>
2013-04-07 10:30:37 +03:00
{
2015-04-25 18:19:23 +02:00
public override string Name
{
get
{
return "Womble's";
}
}
public override DownloadProtocol Protocol { get { return DownloadProtocol.Usenet; } }
public override bool SupportsSearch { get { return false; } }
public override IParseIndexerResponse GetParser()
{
return new WomblesRssParser();
}
public override IIndexerRequestGenerator GetRequestGenerator()
2013-04-07 10:30:37 +03:00
{
return new RssIndexerRequestGenerator("http://newshost.co.za/rss/?sec=TV&fr=false");
2013-04-07 10:30:37 +03:00
}
public Wombles(IHttpClient httpClient, IIndexerStatusService indexerStatusService, IConfigService configService, IParsingService parsingService, Logger logger)
: base(httpClient, indexerStatusService, configService, parsingService, logger)
2013-04-07 10:30:37 +03:00
{
}
2013-04-07 10:30:37 +03:00
}
}