mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
55 lines
1.7 KiB
C#
55 lines
1.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using FluentValidation;
|
|
using FluentValidation.Results;
|
|
using NLog;
|
|
using NzbDrone.Common;
|
|
|
|
namespace NzbDrone.Core.Indexers
|
|
{
|
|
public interface INewznabTestService
|
|
{
|
|
void Test(IIndexer indexer);
|
|
}
|
|
|
|
public class NewznabTestService : INewznabTestService
|
|
{
|
|
private readonly IFetchFeedFromIndexers _feedFetcher;
|
|
private readonly IHttpProvider _httpProvider;
|
|
private readonly Logger _logger;
|
|
|
|
public NewznabTestService(IFetchFeedFromIndexers feedFetcher, IHttpProvider httpProvider, Logger logger)
|
|
{
|
|
_feedFetcher = feedFetcher;
|
|
_httpProvider = httpProvider;
|
|
_logger = logger;
|
|
}
|
|
|
|
public void Test(IIndexer indexer)
|
|
{
|
|
var releases = _feedFetcher.FetchRss(indexer);
|
|
|
|
if (releases.Any()) return;
|
|
|
|
try
|
|
{
|
|
_httpProvider.DownloadString(indexer.RecentFeed.First());
|
|
}
|
|
|
|
catch (Exception)
|
|
{
|
|
_logger.Warn("No result returned from RSS Feed, please confirm you're using a newznab indexer");
|
|
|
|
var failure = new ValidationFailure("Url", "Invalid Newznab URL entered");
|
|
throw new ValidationException(new List<ValidationFailure> { failure }.ToArray());
|
|
}
|
|
|
|
_logger.Warn("Indexer returned result for Newznab RSS URL, API Key appears to be invalid");
|
|
|
|
var apiKeyFailure = new ValidationFailure("ApiKey", "Invalid API Key");
|
|
throw new ValidationException(new List<ValidationFailure> { apiKeyFailure }.ToArray());
|
|
}
|
|
}
|
|
}
|