2013-01-11 00:35:33 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using NLog;
|
2013-02-24 19:18:48 +00:00
|
|
|
|
using NzbDrone.Core.Download;
|
2013-02-21 07:07:34 +00:00
|
|
|
|
using NzbDrone.Core.Indexers;
|
2013-03-02 18:25:39 +00:00
|
|
|
|
using NzbDrone.Core.ReferenceData;
|
2013-02-19 06:01:03 +00:00
|
|
|
|
using NzbDrone.Core.Tv;
|
2013-01-11 00:35:33 +00:00
|
|
|
|
using NzbDrone.Core.Model;
|
2013-01-13 08:24:48 +00:00
|
|
|
|
using NzbDrone.Core.Model.Notification;
|
2013-02-19 02:19:38 +00:00
|
|
|
|
using NzbDrone.Core.DecisionEngine;
|
2013-01-11 00:35:33 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers.Search
|
|
|
|
|
{
|
|
|
|
|
public class EpisodeSearch : SearchBase
|
|
|
|
|
{
|
|
|
|
|
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
2013-03-05 19:58:53 +00:00
|
|
|
|
public EpisodeSearch(IEpisodeService episodeService, DownloadProvider downloadProvider, IIndexerService indexerService,
|
2013-03-07 01:51:47 +00:00
|
|
|
|
SceneMappingService sceneMappingService, DownloadDirector downloadDirector,
|
2013-02-26 02:20:42 +00:00
|
|
|
|
ISeriesRepository seriesRepository)
|
2013-03-07 01:51:47 +00:00
|
|
|
|
: base(seriesRepository, episodeService, downloadProvider, indexerService, sceneMappingService,
|
|
|
|
|
downloadDirector)
|
|
|
|
|
{
|
2013-01-11 00:35:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-01-13 18:29:53 +00:00
|
|
|
|
public EpisodeSearch()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2013-01-13 08:24:48 +00:00
|
|
|
|
public override List<EpisodeParseResult> PerformSearch(Series series, dynamic options, ProgressNotification notification)
|
2013-01-11 00:35:33 +00:00
|
|
|
|
{
|
2013-01-13 08:24:48 +00:00
|
|
|
|
//Todo: Daily and Anime or separate them out?
|
|
|
|
|
//Todo: Epsiodes that use scene numbering
|
2013-01-11 00:35:33 +00:00
|
|
|
|
|
2013-01-13 08:24:48 +00:00
|
|
|
|
if (options.Episode == null)
|
|
|
|
|
throw new ArgumentException("Episode is invalid");
|
2013-01-11 00:35:33 +00:00
|
|
|
|
|
2013-01-13 08:24:48 +00:00
|
|
|
|
notification.CurrentMessage = "Looking for " + options.Episode;
|
2013-01-11 00:35:33 +00:00
|
|
|
|
|
|
|
|
|
var reports = new List<EpisodeParseResult>();
|
2013-01-13 08:24:48 +00:00
|
|
|
|
var title = GetSearchTitle(series);
|
|
|
|
|
|
|
|
|
|
var seasonNumber = options.Episode.SeasonNumber;
|
|
|
|
|
var episodeNumber = options.Episode.EpisodeNumber;
|
|
|
|
|
|
|
|
|
|
if (series.UseSceneNumbering)
|
|
|
|
|
{
|
2013-03-07 01:51:47 +00:00
|
|
|
|
if (options.Episode.SceneSeasonNumber > 0 && options.Episode.SceneEpisodeNumber > 0)
|
2013-01-13 08:24:48 +00:00
|
|
|
|
{
|
|
|
|
|
logger.Trace("Using Scene Numbering for: {0}", options.Episode);
|
|
|
|
|
seasonNumber = options.Episode.SceneSeasonNumber;
|
|
|
|
|
episodeNumber = options.Episode.SceneEpisodeNumber;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-01-11 00:35:33 +00:00
|
|
|
|
|
2013-02-21 07:07:34 +00:00
|
|
|
|
Parallel.ForEach(_indexerService.GetEnabledIndexers(), indexer =>
|
2013-01-11 00:35:33 +00:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2013-01-13 08:24:48 +00:00
|
|
|
|
reports.AddRange(indexer.FetchEpisode(title, seasonNumber, episodeNumber));
|
2013-01-11 00:35:33 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
logger.ErrorException(String.Format("An error has occurred while searching for {0}-S{1:00}E{2:00} from: {3}",
|
2013-01-13 08:24:48 +00:00
|
|
|
|
series.Title, options.Episode.SeasonNumber, options.Episode.EpisodeNumber, indexer.Name), e);
|
2013-01-11 00:35:33 +00:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return reports;
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-07 01:51:47 +00:00
|
|
|
|
public override bool IsEpisodeMatch(Series series, dynamic options, EpisodeParseResult episodeParseResult)
|
2013-01-11 00:35:33 +00:00
|
|
|
|
{
|
2013-03-07 01:51:47 +00:00
|
|
|
|
if (series.UseSceneNumbering && options.Episode.SeasonNumber > 0 && options.Episode.EpisodeNumber > 0)
|
2013-01-13 08:24:48 +00:00
|
|
|
|
{
|
|
|
|
|
if (options.Episode.SceneSeasonNumber != episodeParseResult.SeasonNumber)
|
|
|
|
|
{
|
|
|
|
|
logger.Trace("Season number does not match searched season number, skipping.");
|
2013-03-07 01:51:47 +00:00
|
|
|
|
return false;
|
2013-01-13 08:24:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!episodeParseResult.EpisodeNumbers.Contains(options.Episode.SceneEpisodeNumber))
|
|
|
|
|
{
|
|
|
|
|
logger.Trace("Episode number does not match searched episode number, skipping.");
|
2013-03-07 01:51:47 +00:00
|
|
|
|
return false;
|
2013-01-13 08:24:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-07 01:51:47 +00:00
|
|
|
|
return true;
|
2013-01-13 08:24:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-07 01:51:47 +00:00
|
|
|
|
if (options.Episode.SeasonNumber != episodeParseResult.SeasonNumber)
|
2013-01-13 08:24:48 +00:00
|
|
|
|
{
|
|
|
|
|
logger.Trace("Season number does not match searched season number, skipping.");
|
2013-03-07 01:51:47 +00:00
|
|
|
|
return false;
|
2013-01-13 08:24:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!episodeParseResult.EpisodeNumbers.Contains(options.Episode.EpisodeNumber))
|
|
|
|
|
{
|
|
|
|
|
logger.Trace("Episode number does not match searched episode number, skipping.");
|
2013-03-07 01:51:47 +00:00
|
|
|
|
return false;
|
2013-01-13 08:24:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-07 01:51:47 +00:00
|
|
|
|
return true;
|
2013-01-13 08:24:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-01-11 00:35:33 +00:00
|
|
|
|
}
|
|
|
|
|
}
|