mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
38 lines
1.3 KiB
C#
38 lines
1.3 KiB
C#
using System;
|
|
using NLog;
|
|
using NzbDrone.Core.IndexerSearch.Definitions;
|
|
using NzbDrone.Core.Parser.Model;
|
|
|
|
namespace NzbDrone.Core.DecisionEngine.Specifications
|
|
{
|
|
public class SameEpisodesGrabSpecification : IDecisionEngineSpecification
|
|
{
|
|
private readonly SameEpisodesSpecification _sameEpisodesSpecification;
|
|
private readonly Logger _logger;
|
|
|
|
public SameEpisodesGrabSpecification(SameEpisodesSpecification sameEpisodesSpecification, Logger logger)
|
|
{
|
|
_sameEpisodesSpecification = sameEpisodesSpecification;
|
|
_logger = logger;
|
|
}
|
|
|
|
public RejectionType Type => RejectionType.Permanent;
|
|
|
|
public virtual Decision IsSatisfiedBy(RemoteEpisode subject, SearchCriteriaBase searchCriteria)
|
|
{
|
|
if (_sameEpisodesSpecification.IsSatisfiedBy(subject.Episodes))
|
|
{
|
|
return Decision.Accept();
|
|
}
|
|
|
|
_logger.Debug("Episode file on disk contains more episodes than this release contains");
|
|
return Decision.Reject("Episode file on disk contains more episodes than this release contains");
|
|
}
|
|
|
|
public Decision IsSatisfiedBy(RemoteMovie subject, SearchCriteriaBase searchCriteria)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|