2013-07-19 06:47:55 +03:00
|
|
|
using NLog;
|
2013-07-07 00:47:49 +03:00
|
|
|
using NzbDrone.Core.Parser.Model;
|
|
|
|
using NzbDrone.Core.Providers;
|
|
|
|
using NzbDrone.Core.Tv;
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.MediaFiles.EpisodeImport.Specifications
|
|
|
|
{
|
|
|
|
public class NotSampleSpecification : IImportDecisionEngineSpecification
|
|
|
|
{
|
|
|
|
private readonly IVideoFileInfoReader _videoFileInfoReader;
|
|
|
|
private readonly Logger _logger;
|
|
|
|
|
2013-07-16 09:43:45 +03:00
|
|
|
public NotSampleSpecification(IVideoFileInfoReader videoFileInfoReader,
|
|
|
|
Logger logger)
|
2013-07-07 00:47:49 +03:00
|
|
|
{
|
|
|
|
_videoFileInfoReader = videoFileInfoReader;
|
|
|
|
_logger = logger;
|
|
|
|
}
|
|
|
|
|
2013-07-16 09:43:45 +03:00
|
|
|
public static long SampleSizeLimit
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return 70.Megabytes();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-07 00:47:49 +03:00
|
|
|
public string RejectionReason { get { return "Sample"; } }
|
|
|
|
|
|
|
|
public bool IsSatisfiedBy(LocalEpisode localEpisode)
|
|
|
|
{
|
|
|
|
if (localEpisode.Series.SeriesType == SeriesTypes.Daily)
|
|
|
|
{
|
|
|
|
_logger.Trace("Daily Series, skipping sample check");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (localEpisode.SeasonNumber == 0)
|
|
|
|
{
|
|
|
|
_logger.Trace("Special, skipping sample check");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
var runTime = _videoFileInfoReader.GetRunTime(localEpisode.Path);
|
|
|
|
|
2013-07-16 09:43:45 +03:00
|
|
|
if (localEpisode.Size < SampleSizeLimit && runTime.TotalMinutes < 3)
|
2013-07-07 00:47:49 +03:00
|
|
|
{
|
|
|
|
_logger.Trace("[{0}] appears to be a sample.", localEpisode.Path);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|