mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-26 22:46:37 -04:00
39 lines
1.2 KiB
C#
39 lines
1.2 KiB
C#
using System;
|
|
using NzbDrone.Common.Http;
|
|
using NzbDrone.Core.Configuration;
|
|
using NLog;
|
|
using NzbDrone.Core.Parser;
|
|
|
|
namespace NzbDrone.Core.Indexers.BitMeTv
|
|
{
|
|
public class BitMeTv : HttpIndexerBase<BitMeTvSettings>
|
|
{
|
|
public override string Name
|
|
{
|
|
get
|
|
{
|
|
return "BitMeTV";
|
|
}
|
|
}
|
|
|
|
public override DownloadProtocol Protocol { get { return DownloadProtocol.Torrent; } }
|
|
public override Boolean SupportsSearch { get { return false; } }
|
|
public override Int32 PageSize { get { return 0; } }
|
|
|
|
public BitMeTv(IHttpClient httpClient, IIndexerStatusService indexerStatusService, IConfigService configService, IParsingService parsingService, Logger logger)
|
|
: base(httpClient, indexerStatusService, configService, parsingService, logger)
|
|
{
|
|
|
|
}
|
|
|
|
public override IIndexerRequestGenerator GetRequestGenerator()
|
|
{
|
|
return new BitMeTvRequestGenerator() { Settings = Settings };
|
|
}
|
|
|
|
public override IParseIndexerResponse GetParser()
|
|
{
|
|
return new TorrentRssParser() { ParseSizeInDescription = true };
|
|
}
|
|
}
|
|
} |