2013-04-28 21:46:13 +02:00
|
|
|
using System;
|
2013-04-07 09:30:37 +02:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
2013-04-29 02:39:17 +02:00
|
|
|
using NLog;
|
2013-04-07 09:30:37 +02:00
|
|
|
using NzbDrone.Core.DecisionEngine.Specifications.Search;
|
|
|
|
using NzbDrone.Core.IndexerSearch.Definitions;
|
2013-04-15 03:41:39 +02:00
|
|
|
using NzbDrone.Core.Parser;
|
|
|
|
using NzbDrone.Core.Parser.Model;
|
2013-04-07 09:30:37 +02:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.DecisionEngine
|
|
|
|
{
|
|
|
|
public interface IMakeDownloadDecision
|
|
|
|
{
|
2013-04-28 21:46:13 +02:00
|
|
|
List<DownloadDecision> GetRssDecision(IEnumerable<ReportInfo> reports);
|
|
|
|
List<DownloadDecision> GetSearchDecision(IEnumerable<ReportInfo> reports, SearchDefinitionBase searchDefinitionBase);
|
2013-04-07 09:30:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public class DownloadDecisionMaker : IMakeDownloadDecision
|
|
|
|
{
|
|
|
|
private readonly IEnumerable<IRejectWithReason> _specifications;
|
2013-04-15 03:41:39 +02:00
|
|
|
private readonly IParsingService _parsingService;
|
2013-04-29 02:39:17 +02:00
|
|
|
private readonly Logger _logger;
|
2013-04-07 09:30:37 +02:00
|
|
|
|
2013-04-29 02:39:17 +02:00
|
|
|
public DownloadDecisionMaker(IEnumerable<IRejectWithReason> specifications, IParsingService parsingService, Logger logger)
|
2013-04-07 09:30:37 +02:00
|
|
|
{
|
|
|
|
_specifications = specifications;
|
2013-04-15 03:41:39 +02:00
|
|
|
_parsingService = parsingService;
|
2013-04-29 02:39:17 +02:00
|
|
|
_logger = logger;
|
2013-04-07 09:30:37 +02:00
|
|
|
}
|
|
|
|
|
2013-04-28 21:46:13 +02:00
|
|
|
public List<DownloadDecision> GetRssDecision(IEnumerable<ReportInfo> reports)
|
2013-04-07 09:30:37 +02:00
|
|
|
{
|
2013-04-29 02:39:17 +02:00
|
|
|
return GetDecisions(reports).ToList();
|
2013-04-07 09:30:37 +02:00
|
|
|
}
|
|
|
|
|
2013-04-28 21:46:13 +02:00
|
|
|
public List<DownloadDecision> GetSearchDecision(IEnumerable<ReportInfo> reports, SearchDefinitionBase searchDefinitionBase)
|
2013-04-07 09:30:37 +02:00
|
|
|
{
|
2013-04-29 02:39:17 +02:00
|
|
|
return GetDecisions(reports).ToList();
|
2013-04-07 09:30:37 +02:00
|
|
|
}
|
|
|
|
|
2013-04-29 02:39:17 +02:00
|
|
|
private IEnumerable<DownloadDecision> GetDecisions(IEnumerable<ReportInfo> reports, SearchDefinitionBase searchDefinition = null)
|
2013-04-28 21:46:13 +02:00
|
|
|
{
|
|
|
|
foreach (var report in reports)
|
|
|
|
{
|
|
|
|
var parsedEpisodeInfo = Parser.Parser.ParseTitle(report.Title);
|
|
|
|
|
|
|
|
if (parsedEpisodeInfo != null)
|
|
|
|
{
|
|
|
|
var remoteEpisode = _parsingService.Map(parsedEpisodeInfo);
|
|
|
|
remoteEpisode.Report = report;
|
|
|
|
|
|
|
|
if (remoteEpisode.Series != null)
|
|
|
|
{
|
2013-04-29 02:39:17 +02:00
|
|
|
yield return GetDecisionForReport(remoteEpisode, searchDefinition);
|
2013-04-28 21:46:13 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
yield return new DownloadDecision(remoteEpisode, "Unknown Series");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-29 02:39:17 +02:00
|
|
|
private DownloadDecision GetDecisionForReport(RemoteEpisode remoteEpisode, SearchDefinitionBase searchDefinition = null)
|
2013-04-07 09:30:37 +02:00
|
|
|
{
|
2013-04-29 02:39:17 +02:00
|
|
|
var reasons = _specifications.Select(c => EvaluateSpec(c, remoteEpisode, searchDefinition))
|
|
|
|
.Where(c => !string.IsNullOrWhiteSpace(c));
|
|
|
|
|
|
|
|
return new DownloadDecision(remoteEpisode, reasons.ToArray());
|
|
|
|
}
|
|
|
|
|
|
|
|
private string EvaluateSpec(IRejectWithReason spec, RemoteEpisode remoteEpisode, SearchDefinitionBase searchDefinitionBase = null)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2013-04-29 03:47:06 +02:00
|
|
|
if (string.IsNullOrWhiteSpace(spec.RejectionReason))
|
|
|
|
{
|
|
|
|
throw new InvalidOperationException("[Need Rejection Text]");
|
|
|
|
}
|
|
|
|
|
2013-04-29 02:39:17 +02:00
|
|
|
var searchSpecification = spec as IDecisionEngineSearchSpecification;
|
|
|
|
if (searchSpecification != null && searchDefinitionBase != null)
|
|
|
|
{
|
|
|
|
if (!searchSpecification.IsSatisfiedBy(remoteEpisode, searchDefinitionBase))
|
|
|
|
{
|
|
|
|
return spec.RejectionReason;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var generalSpecification = spec as IDecisionEngineSpecification;
|
|
|
|
if (generalSpecification != null && !generalSpecification.IsSatisfiedBy(remoteEpisode))
|
|
|
|
{
|
|
|
|
return spec.RejectionReason;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
_logger.ErrorException("Couldn't evaluate decision", e);
|
|
|
|
return string.Format("{0}: {1}", spec.GetType().Name, e.Message);
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
2013-04-07 09:30:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|