mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-25 22:46:31 -04:00
96cb7c4d5f
Co-authored-by: bakerboy448 <55419169+bakerboy448@users.noreply.github.com>
45 lines
1.6 KiB
C#
45 lines
1.6 KiB
C#
using System;
|
|
using NLog;
|
|
using NzbDrone.Common.Http;
|
|
using NzbDrone.Core.Configuration;
|
|
using NzbDrone.Core.Localization;
|
|
using NzbDrone.Core.Parser;
|
|
|
|
namespace NzbDrone.Core.Indexers.BroadcastheNet
|
|
{
|
|
public class BroadcastheNet : HttpIndexerBase<BroadcastheNetSettings>
|
|
{
|
|
public override string Name => "BroadcasTheNet";
|
|
|
|
public override DownloadProtocol Protocol => DownloadProtocol.Torrent;
|
|
public override bool SupportsRss => true;
|
|
public override bool SupportsSearch => true;
|
|
public override int PageSize => 100;
|
|
public override TimeSpan RateLimit => TimeSpan.FromSeconds(5);
|
|
|
|
public BroadcastheNet(IHttpClient httpClient, IIndexerStatusService indexerStatusService, IConfigService configService, IParsingService parsingService, Logger logger, ILocalizationService localizationService)
|
|
: base(httpClient, indexerStatusService, configService, parsingService, logger, localizationService)
|
|
{
|
|
}
|
|
|
|
public override IIndexerRequestGenerator GetRequestGenerator()
|
|
{
|
|
var requestGenerator = new BroadcastheNetRequestGenerator { Settings = Settings, PageSize = PageSize };
|
|
|
|
var releaseInfo = _indexerStatusService.GetLastRssSyncReleaseInfo(Definition.Id);
|
|
|
|
if (releaseInfo != null && int.TryParse(releaseInfo.Guid.Replace("BTN-", string.Empty), out var torrentId))
|
|
{
|
|
requestGenerator.LastRecentTorrentId = torrentId;
|
|
}
|
|
|
|
return requestGenerator;
|
|
}
|
|
|
|
public override IParseIndexerResponse GetParser()
|
|
{
|
|
return new BroadcastheNetParser();
|
|
}
|
|
}
|
|
}
|