mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
58 lines
1.7 KiB
C#
58 lines
1.7 KiB
C#
using System.Linq;
|
|
using NLog;
|
|
using NzbDrone.Core.Tv;
|
|
using NzbDrone.Core.Model;
|
|
using NzbDrone.Core.Providers;
|
|
|
|
namespace NzbDrone.Core.DecisionEngine
|
|
{
|
|
public class MonitoredEpisodeSpecification
|
|
{
|
|
private readonly IEpisodeService _episodeService;
|
|
private readonly ISeriesRepository _seriesRepository;
|
|
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
|
|
|
public MonitoredEpisodeSpecification(IEpisodeService episodeService, ISeriesRepository seriesRepository)
|
|
{
|
|
_episodeService = episodeService;
|
|
_seriesRepository = seriesRepository;
|
|
}
|
|
|
|
public MonitoredEpisodeSpecification()
|
|
{
|
|
|
|
}
|
|
|
|
public virtual bool IsSatisfiedBy(EpisodeParseResult subject)
|
|
{
|
|
var series = _seriesRepository.GetByTitle(subject.CleanTitle);
|
|
|
|
if (series == null)
|
|
{
|
|
logger.Trace("{0} is not mapped to any series in DB. skipping", subject.CleanTitle);
|
|
return false;
|
|
}
|
|
|
|
subject.Series = series;
|
|
|
|
if (!series.Monitored)
|
|
{
|
|
logger.Debug("{0} is present in the DB but not tracked. skipping.", subject.CleanTitle);
|
|
return false;
|
|
}
|
|
|
|
var episodes = _episodeService.GetEpisodesByParseResult(subject);
|
|
subject.Episodes = episodes;
|
|
|
|
//return monitored if any of the episodes are monitored
|
|
if (episodes.Any(episode => !episode.Ignored))
|
|
{
|
|
return true;
|
|
}
|
|
|
|
logger.Debug("All episodes are ignored. skipping.");
|
|
return false;
|
|
}
|
|
}
|
|
}
|