2011-08-28 07:45:36 +02:00
|
|
|
|
using System;
|
2011-11-26 07:13:47 +01:00
|
|
|
|
using System.Collections;
|
2011-08-28 07:45:36 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using NLog;
|
|
|
|
|
using Ninject;
|
|
|
|
|
using NzbDrone.Core.Model;
|
|
|
|
|
using NzbDrone.Core.Model.Notification;
|
2012-02-07 06:08:07 +01:00
|
|
|
|
using NzbDrone.Core.Providers.DecisionEngine;
|
2011-08-28 07:45:36 +02:00
|
|
|
|
using NzbDrone.Core.Repository;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
|
{
|
|
|
|
|
public class SearchProvider
|
|
|
|
|
{
|
|
|
|
|
//Season and Episode Searching
|
|
|
|
|
private readonly EpisodeProvider _episodeProvider;
|
|
|
|
|
private readonly DownloadProvider _downloadProvider;
|
|
|
|
|
private readonly SeriesProvider _seriesProvider;
|
|
|
|
|
private readonly IndexerProvider _indexerProvider;
|
|
|
|
|
private readonly SceneMappingProvider _sceneMappingProvider;
|
2012-02-07 06:08:07 +01:00
|
|
|
|
private readonly UpgradePossibleSpecification _upgradePossibleSpecification;
|
|
|
|
|
private readonly AllowedDownloadSpecification _allowedDownloadSpecification;
|
2011-08-28 07:45:36 +02:00
|
|
|
|
|
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
|
|
|
|
[Inject]
|
2012-02-07 06:08:07 +01:00
|
|
|
|
public SearchProvider(EpisodeProvider episodeProvider, DownloadProvider downloadProvider, SeriesProvider seriesProvider,
|
|
|
|
|
IndexerProvider indexerProvider, SceneMappingProvider sceneMappingProvider,
|
|
|
|
|
UpgradePossibleSpecification upgradePossibleSpecification, AllowedDownloadSpecification allowedDownloadSpecification)
|
2011-08-28 07:45:36 +02:00
|
|
|
|
{
|
|
|
|
|
_episodeProvider = episodeProvider;
|
|
|
|
|
_downloadProvider = downloadProvider;
|
|
|
|
|
_seriesProvider = seriesProvider;
|
|
|
|
|
_indexerProvider = indexerProvider;
|
|
|
|
|
_sceneMappingProvider = sceneMappingProvider;
|
2012-02-07 06:08:07 +01:00
|
|
|
|
_upgradePossibleSpecification = upgradePossibleSpecification;
|
|
|
|
|
_allowedDownloadSpecification = allowedDownloadSpecification;
|
2011-08-28 07:45:36 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public SearchProvider()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual bool SeasonSearch(ProgressNotification notification, int seriesId, int seasonNumber)
|
|
|
|
|
{
|
|
|
|
|
var series = _seriesProvider.GetSeries(seriesId);
|
|
|
|
|
|
|
|
|
|
if (series == null)
|
|
|
|
|
{
|
|
|
|
|
Logger.Error("Unable to find an series {0} in database", seriesId);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-26 07:13:47 +01:00
|
|
|
|
//Return false if the series is a daily series (we only support individual episode searching
|
|
|
|
|
if (series.IsDaily)
|
|
|
|
|
return false;
|
|
|
|
|
|
2011-09-04 10:12:30 +02:00
|
|
|
|
notification.CurrentMessage = String.Format("Searching for {0} Season {1}", series.Title, seasonNumber);
|
2011-08-28 07:45:36 +02:00
|
|
|
|
|
2011-11-18 03:36:53 +01:00
|
|
|
|
var reports = PerformSearch(notification, series, seasonNumber);
|
2011-08-28 07:45:36 +02:00
|
|
|
|
|
|
|
|
|
Logger.Debug("Finished searching all indexers. Total {0}", reports.Count);
|
|
|
|
|
|
|
|
|
|
if (reports.Count == 0)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
Logger.Debug("Getting episodes from database for series: {0} and season: {1}", seriesId, seasonNumber);
|
2011-08-28 21:07:56 +02:00
|
|
|
|
var episodeNumbers = _episodeProvider.GetEpisodeNumbersBySeason(seriesId, seasonNumber);
|
2011-08-28 07:45:36 +02:00
|
|
|
|
|
2011-08-28 21:07:56 +02:00
|
|
|
|
if (episodeNumbers == null || episodeNumbers.Count == 0)
|
2011-08-28 07:45:36 +02:00
|
|
|
|
{
|
|
|
|
|
Logger.Warn("No episodes in database found for series: {0} and season: {1}.", seriesId, seasonNumber);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
notification.CurrentMessage = "Processing search results";
|
|
|
|
|
|
2011-11-18 03:36:53 +01:00
|
|
|
|
reports.Where(p => p.FullSeason && p.SeasonNumber == seasonNumber).ToList().ForEach(
|
|
|
|
|
e => e.EpisodeNumbers = episodeNumbers.ToList()
|
|
|
|
|
);
|
2011-08-28 07:45:36 +02:00
|
|
|
|
|
2011-11-18 03:36:53 +01:00
|
|
|
|
var downloadedEpisodes = ProcessSearchResults(notification, reports, series, seasonNumber);
|
2011-08-28 07:45:36 +02:00
|
|
|
|
|
2011-11-18 03:36:53 +01:00
|
|
|
|
downloadedEpisodes.Sort();
|
|
|
|
|
episodeNumbers.ToList().Sort();
|
|
|
|
|
|
|
|
|
|
//Returns true if the list of downloaded episodes matches the list of episode numbers
|
|
|
|
|
//(either a full season release was grabbed or all individual episodes)
|
|
|
|
|
return (downloadedEpisodes.SequenceEqual(episodeNumbers));
|
2011-08-28 07:45:36 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-11-18 03:36:53 +01:00
|
|
|
|
public virtual List<int> PartialSeasonSearch(ProgressNotification notification, int seriesId, int seasonNumber)
|
2011-08-28 07:45:36 +02:00
|
|
|
|
{
|
2011-11-18 03:36:53 +01:00
|
|
|
|
//This method will search for episodes in a season in groups of 10 episodes S01E0, S01E1, S01E2, etc
|
|
|
|
|
|
|
|
|
|
var series = _seriesProvider.GetSeries(seriesId);
|
|
|
|
|
|
|
|
|
|
if (series == null)
|
2011-08-28 07:45:36 +02:00
|
|
|
|
{
|
2011-11-18 03:36:53 +01:00
|
|
|
|
Logger.Error("Unable to find an series {0} in database", seriesId);
|
|
|
|
|
return new List<int>();
|
|
|
|
|
}
|
2011-11-17 07:32:44 +01:00
|
|
|
|
|
2011-11-26 07:13:47 +01:00
|
|
|
|
//Return empty list if the series is a daily series (we only support individual episode searching
|
|
|
|
|
if (series.IsDaily)
|
|
|
|
|
return new List<int>();
|
|
|
|
|
|
2011-11-18 03:36:53 +01:00
|
|
|
|
notification.CurrentMessage = String.Format("Searching for {0} Season {1}", series.Title, seasonNumber);
|
2011-11-17 07:32:44 +01:00
|
|
|
|
|
2011-11-18 03:36:53 +01:00
|
|
|
|
var episodes = _episodeProvider.GetEpisodesBySeason(seriesId, seasonNumber);
|
2011-11-17 07:32:44 +01:00
|
|
|
|
|
2011-11-18 03:36:53 +01:00
|
|
|
|
var reports = PerformSearch(notification, series, seasonNumber, episodes);
|
2011-11-17 07:32:44 +01:00
|
|
|
|
|
2011-11-18 03:36:53 +01:00
|
|
|
|
Logger.Debug("Finished searching all indexers. Total {0}", reports.Count);
|
2011-08-28 07:45:36 +02:00
|
|
|
|
|
2011-11-18 03:36:53 +01:00
|
|
|
|
if (reports.Count == 0)
|
|
|
|
|
return new List<int>();
|
2011-08-28 07:45:36 +02:00
|
|
|
|
|
2011-11-18 03:36:53 +01:00
|
|
|
|
notification.CurrentMessage = "Processing search results";
|
2011-08-28 07:45:36 +02:00
|
|
|
|
|
2011-11-18 03:36:53 +01:00
|
|
|
|
return ProcessSearchResults(notification, reports, series, seasonNumber);
|
2011-08-28 07:45:36 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual bool EpisodeSearch(ProgressNotification notification, int episodeId)
|
|
|
|
|
{
|
|
|
|
|
var episode = _episodeProvider.GetEpisode(episodeId);
|
|
|
|
|
|
|
|
|
|
if (episode == null)
|
|
|
|
|
{
|
|
|
|
|
Logger.Error("Unable to find an episode {0} in database", episodeId);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2011-11-26 07:13:47 +01:00
|
|
|
|
|
2012-01-18 08:45:21 +01:00
|
|
|
|
//Check to see if an upgrade is possible before attempting
|
2012-02-07 06:08:07 +01:00
|
|
|
|
if (!_upgradePossibleSpecification.IsSatisfiedBy(episode))
|
2012-01-18 08:45:21 +01:00
|
|
|
|
{
|
|
|
|
|
Logger.Info("Search for {0} was aborted, file in disk meets or exceeds Profile's Cutoff", episode);
|
2012-01-23 08:07:00 +01:00
|
|
|
|
notification.CurrentMessage = String.Format("Skipping search for {0}, file you have is already at cutoff", episode);
|
2012-01-18 08:45:21 +01:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-23 08:07:00 +01:00
|
|
|
|
notification.CurrentMessage = "Looking for " + episode;
|
2011-08-28 07:45:36 +02:00
|
|
|
|
|
2011-11-26 07:13:47 +01:00
|
|
|
|
if (episode.Series.IsDaily && !episode.AirDate.HasValue)
|
2011-08-28 07:45:36 +02:00
|
|
|
|
{
|
2011-11-26 07:13:47 +01:00
|
|
|
|
Logger.Warn("AirDate is not Valid for: {0}", episode);
|
|
|
|
|
return false;
|
2011-08-28 07:45:36 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-12-01 06:08:36 +01:00
|
|
|
|
var reports = PerformSearch(notification, episode.Series, episode.SeasonNumber, new List<Episode> { episode });
|
2011-08-28 07:45:36 +02:00
|
|
|
|
|
|
|
|
|
Logger.Debug("Finished searching all indexers. Total {0}", reports.Count);
|
|
|
|
|
notification.CurrentMessage = "Processing search results";
|
|
|
|
|
|
2011-12-01 06:08:36 +01:00
|
|
|
|
if (!episode.Series.IsDaily && ProcessSearchResults(notification, reports, episode.Series, episode.SeasonNumber, episode.EpisodeNumber).Count == 1)
|
2011-11-26 20:10:13 +01:00
|
|
|
|
return true;
|
|
|
|
|
|
2011-12-01 06:08:36 +01:00
|
|
|
|
if (episode.Series.IsDaily && ProcessSearchResults(notification, reports, episode.Series, episode.AirDate.Value))
|
2011-11-24 05:50:09 +01:00
|
|
|
|
return true;
|
2011-08-28 07:45:36 +02:00
|
|
|
|
|
2011-11-24 05:50:09 +01:00
|
|
|
|
Logger.Warn("Unable to find {0} in any of indexers.", episode);
|
2012-02-07 06:08:07 +01:00
|
|
|
|
|
2012-01-23 08:07:00 +01:00
|
|
|
|
if (reports.Any())
|
|
|
|
|
{
|
2012-01-23 20:00:05 +01:00
|
|
|
|
notification.CurrentMessage = String.Format("Sorry, couldn't find {0} in a non-sucky quality. (by your standards)", episode);
|
2012-01-23 08:07:00 +01:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
notification.CurrentMessage = String.Format("Sorry, couldn't find you {0} in any of indexers.", episode);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2011-11-24 05:50:09 +01:00
|
|
|
|
return false;
|
2011-08-28 07:45:36 +02:00
|
|
|
|
}
|
2011-09-01 08:58:54 +02:00
|
|
|
|
|
2011-11-18 03:36:53 +01:00
|
|
|
|
public List<EpisodeParseResult> PerformSearch(ProgressNotification notification, Series series, int seasonNumber, IList<Episode> episodes = null)
|
2011-09-01 08:58:54 +02:00
|
|
|
|
{
|
2011-11-18 03:36:53 +01:00
|
|
|
|
//If single episode, do a single episode search, if full season then do a full season search, otherwise, do a partial search
|
2011-09-01 08:58:54 +02:00
|
|
|
|
|
|
|
|
|
var indexers = _indexerProvider.GetEnabledIndexers();
|
|
|
|
|
var reports = new List<EpisodeParseResult>();
|
|
|
|
|
|
|
|
|
|
var title = _sceneMappingProvider.GetSceneName(series.SeriesId);
|
|
|
|
|
|
|
|
|
|
if (string.IsNullOrWhiteSpace(title))
|
|
|
|
|
{
|
|
|
|
|
title = series.Title;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-07 06:08:07 +01:00
|
|
|
|
foreach (var indexer in indexers)
|
2011-09-01 08:58:54 +02:00
|
|
|
|
{
|
2011-11-18 03:36:53 +01:00
|
|
|
|
try
|
2011-09-01 08:58:54 +02:00
|
|
|
|
{
|
2011-11-18 03:36:53 +01:00
|
|
|
|
if (episodes == null)
|
|
|
|
|
reports.AddRange(indexer.FetchSeason(title, seasonNumber));
|
2011-09-01 08:58:54 +02:00
|
|
|
|
|
2011-11-26 07:13:47 +01:00
|
|
|
|
//Treat as single episode
|
|
|
|
|
else if (episodes.Count == 1)
|
|
|
|
|
{
|
|
|
|
|
if (!series.IsDaily)
|
|
|
|
|
reports.AddRange(indexer.FetchEpisode(title, seasonNumber, episodes.First().EpisodeNumber));
|
|
|
|
|
|
|
|
|
|
//Daily Episode
|
|
|
|
|
else
|
|
|
|
|
reports.AddRange(indexer.FetchDailyEpisode(title, episodes.First().AirDate.Value));
|
|
|
|
|
}
|
2011-11-18 03:36:53 +01:00
|
|
|
|
|
|
|
|
|
//Treat as Partial Season
|
|
|
|
|
else
|
2011-09-01 08:58:54 +02:00
|
|
|
|
{
|
2011-11-18 03:36:53 +01:00
|
|
|
|
var prefixes = GetEpisodeNumberPrefixes(episodes.Select(s => s.EpisodeNumber));
|
|
|
|
|
|
2011-11-26 07:13:47 +01:00
|
|
|
|
foreach (var episodePrefix in prefixes)
|
2011-11-18 03:36:53 +01:00
|
|
|
|
{
|
|
|
|
|
reports.AddRange(indexer.FetchPartialSeason(title, seasonNumber, episodePrefix));
|
|
|
|
|
}
|
2011-09-01 08:58:54 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-18 03:36:53 +01:00
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
Logger.ErrorException("An error has occurred while fetching items from " + indexer.Name, e);
|
|
|
|
|
}
|
2011-09-01 08:58:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-11-18 03:36:53 +01:00
|
|
|
|
return reports;
|
2011-09-01 08:58:54 +02:00
|
|
|
|
}
|
|
|
|
|
|
2011-11-18 03:36:53 +01:00
|
|
|
|
public List<int> ProcessSearchResults(ProgressNotification notification, IEnumerable<EpisodeParseResult> reports, Series series, int seasonNumber, int? episodeNumber = null)
|
2011-09-01 08:58:54 +02:00
|
|
|
|
{
|
|
|
|
|
var successes = new List<int>();
|
|
|
|
|
|
|
|
|
|
foreach (var episodeParseResult in reports.OrderByDescending(c => c.Quality))
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
Logger.Trace("Analysing report " + episodeParseResult);
|
2011-11-17 07:32:44 +01:00
|
|
|
|
|
|
|
|
|
//Get the matching series
|
|
|
|
|
episodeParseResult.Series = _seriesProvider.FindSeries(episodeParseResult.CleanTitle);
|
|
|
|
|
|
|
|
|
|
//If series is null or doesn't match the series we're looking for return
|
|
|
|
|
if (episodeParseResult.Series == null || episodeParseResult.Series.SeriesId != series.SeriesId)
|
2012-01-22 22:16:25 +01:00
|
|
|
|
{
|
|
|
|
|
Logger.Trace("Unexpected series for search: {0}. Skipping.", episodeParseResult.CleanTitle);
|
2011-11-17 07:32:44 +01:00
|
|
|
|
continue;
|
2012-01-22 22:16:25 +01:00
|
|
|
|
}
|
2011-11-17 07:32:44 +01:00
|
|
|
|
|
2011-11-18 03:36:53 +01:00
|
|
|
|
//If SeasonNumber doesn't match or episode is not in the in the list in the parse result, skip the report.
|
2011-11-17 07:32:44 +01:00
|
|
|
|
if (episodeParseResult.SeasonNumber != seasonNumber)
|
2012-01-22 22:16:25 +01:00
|
|
|
|
{
|
|
|
|
|
Logger.Trace("Season number does not match searched season number, skipping.");
|
2011-11-17 07:32:44 +01:00
|
|
|
|
continue;
|
2012-01-22 22:16:25 +01:00
|
|
|
|
}
|
2011-11-17 07:32:44 +01:00
|
|
|
|
|
2011-11-18 03:36:53 +01:00
|
|
|
|
//If the EpisodeNumber was passed in and it is not contained in the parseResult, skip the report.
|
|
|
|
|
if (episodeNumber.HasValue && !episodeParseResult.EpisodeNumbers.Contains(episodeNumber.Value))
|
2012-01-22 22:16:25 +01:00
|
|
|
|
{
|
|
|
|
|
Logger.Trace("Searched episode number is not contained in post, skipping.");
|
2011-11-18 03:36:53 +01:00
|
|
|
|
continue;
|
2012-01-22 22:16:25 +01:00
|
|
|
|
}
|
2011-11-18 03:36:53 +01:00
|
|
|
|
|
|
|
|
|
//Make sure we haven't already downloaded a report with this episodenumber, if we have, skip the report.
|
2012-02-07 06:08:07 +01:00
|
|
|
|
if (successes.Intersect(episodeParseResult.EpisodeNumbers).Any())
|
2012-01-22 22:16:25 +01:00
|
|
|
|
{
|
|
|
|
|
Logger.Trace("Episode has already been downloaded in this search, skipping.");
|
2011-11-18 03:36:53 +01:00
|
|
|
|
continue;
|
2012-01-22 22:16:25 +01:00
|
|
|
|
}
|
2011-11-18 03:36:53 +01:00
|
|
|
|
|
2012-02-07 06:08:07 +01:00
|
|
|
|
if (_allowedDownloadSpecification.IsSatisfiedBy(episodeParseResult))
|
2011-09-01 08:58:54 +02:00
|
|
|
|
{
|
|
|
|
|
Logger.Debug("Found '{0}'. Adding to download queue.", episodeParseResult);
|
|
|
|
|
try
|
|
|
|
|
{
|
2011-11-18 03:36:53 +01:00
|
|
|
|
if (_downloadProvider.DownloadReport(episodeParseResult))
|
|
|
|
|
{
|
|
|
|
|
notification.CurrentMessage =
|
2012-01-27 07:57:07 +01:00
|
|
|
|
String.Format("{0} - S{1:00}E{2:00} {3} Added to download queue",
|
2011-11-18 03:36:53 +01:00
|
|
|
|
episodeParseResult.Series.Title, episodeParseResult.SeasonNumber,
|
|
|
|
|
episodeParseResult.EpisodeNumbers[0], episodeParseResult.Quality);
|
|
|
|
|
|
|
|
|
|
//Add the list of episode numbers from this release
|
|
|
|
|
successes.AddRange(episodeParseResult.EpisodeNumbers);
|
|
|
|
|
}
|
2011-09-01 08:58:54 +02:00
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
Logger.ErrorException("Unable to add report to download queue." + episodeParseResult, e);
|
|
|
|
|
notification.CurrentMessage = String.Format("Unable to add report to download queue. {0}", episodeParseResult);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
Logger.ErrorException("An error has occurred while processing parse result items from " + episodeParseResult, e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return successes;
|
|
|
|
|
}
|
2011-11-18 03:36:53 +01:00
|
|
|
|
|
2011-11-26 20:10:13 +01:00
|
|
|
|
public bool ProcessSearchResults(ProgressNotification notification, IEnumerable<EpisodeParseResult> reports, Series series, DateTime airDate)
|
|
|
|
|
{
|
|
|
|
|
foreach (var episodeParseResult in reports.OrderByDescending(c => c.Quality))
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
Logger.Trace("Analysing report " + episodeParseResult);
|
|
|
|
|
|
|
|
|
|
//Get the matching series
|
|
|
|
|
episodeParseResult.Series = _seriesProvider.FindSeries(episodeParseResult.CleanTitle);
|
|
|
|
|
|
|
|
|
|
//If series is null or doesn't match the series we're looking for return
|
|
|
|
|
if (episodeParseResult.Series == null || episodeParseResult.Series.SeriesId != series.SeriesId)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
//If parse result doesn't have an air date or it doesn't match passed in airdate, skip the report.
|
|
|
|
|
if (!episodeParseResult.AirDate.HasValue || episodeParseResult.AirDate.Value.Date != airDate.Date)
|
|
|
|
|
continue;
|
|
|
|
|
|
2012-02-07 06:08:07 +01:00
|
|
|
|
if (_allowedDownloadSpecification.IsSatisfiedBy(episodeParseResult))
|
2011-11-26 20:10:13 +01:00
|
|
|
|
{
|
|
|
|
|
Logger.Debug("Found '{0}'. Adding to download queue.", episodeParseResult);
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
if (_downloadProvider.DownloadReport(episodeParseResult))
|
|
|
|
|
{
|
|
|
|
|
notification.CurrentMessage =
|
2012-01-27 07:57:07 +01:00
|
|
|
|
String.Format("{0} - {1} {2} Added to download queue",
|
2011-11-26 20:10:13 +01:00
|
|
|
|
episodeParseResult.Series.Title, episodeParseResult.AirDate.Value.ToShortDateString(), episodeParseResult.Quality);
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
Logger.ErrorException("Unable to add report to download queue." + episodeParseResult, e);
|
|
|
|
|
notification.CurrentMessage = String.Format("Unable to add report to download queue. {0}", episodeParseResult);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
Logger.ErrorException("An error has occurred while processing parse result items from " + episodeParseResult, e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2011-11-18 03:36:53 +01:00
|
|
|
|
private List<int> GetEpisodeNumberPrefixes(IEnumerable<int> episodeNumbers)
|
|
|
|
|
{
|
|
|
|
|
var results = new List<int>();
|
|
|
|
|
|
|
|
|
|
foreach (var i in episodeNumbers)
|
|
|
|
|
{
|
|
|
|
|
results.Add(i / 10);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return results.Distinct().ToList();
|
|
|
|
|
}
|
2011-08-28 07:45:36 +02:00
|
|
|
|
}
|
|
|
|
|
}
|