mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
77 lines
2.7 KiB
C#
77 lines
2.7 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using NLog;
|
|
using NzbDrone.Core.Model.Notification;
|
|
using NzbDrone.Core.Providers;
|
|
using NzbDrone.Core.Repository;
|
|
|
|
namespace NzbDrone.Core.Jobs
|
|
{
|
|
public class SeasonSearchJob : IJob
|
|
{
|
|
private readonly SearchProvider _searchProvider;
|
|
private readonly EpisodeSearchJob _episodeSearchJob;
|
|
private readonly EpisodeProvider _episodeProvider;
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
public SeasonSearchJob(SearchProvider searchProvider, EpisodeSearchJob episodeSearchJob,
|
|
EpisodeProvider episodeProvider)
|
|
{
|
|
_searchProvider = searchProvider;
|
|
_episodeSearchJob = episodeSearchJob;
|
|
_episodeProvider = episodeProvider;
|
|
}
|
|
|
|
public SeasonSearchJob()
|
|
{
|
|
|
|
}
|
|
|
|
public string Name
|
|
{
|
|
get { return "Season Search"; }
|
|
}
|
|
|
|
public TimeSpan DefaultInterval
|
|
{
|
|
get { return TimeSpan.FromTicks(0); }
|
|
}
|
|
|
|
public virtual void Start(ProgressNotification notification, dynamic options)
|
|
{
|
|
if (options == null || options.SeriesId <= 0)
|
|
throw new ArgumentException("options");
|
|
|
|
if (options.SeasonNumber < 0)
|
|
throw new ArgumentException("options.SeasonNumber");
|
|
|
|
//Perform a Partial Season Search - Because a full season search is a waste
|
|
//3 searches should guarentee results, (24 eps) versus, a potential 4 to get the same eps.
|
|
List<int> successes = _searchProvider.PartialSeasonSearch(notification, options.SeriesId, options.SeasonNumber);
|
|
|
|
if (successes.Count == 0)
|
|
return;
|
|
|
|
Logger.Debug("Getting episodes from database for series: {0} and season: {1}", options.SeriesId, options.SeasonNumber);
|
|
List<Episode> episodes = _episodeProvider.GetEpisodesBySeason(options.SeriesId, options.SeasonNumber);
|
|
|
|
if (episodes == null || episodes.Count == 0)
|
|
{
|
|
Logger.Warn("No episodes in database found for series: {0} and season: {1}.", options.SeriesId, options.SeasonNumber);
|
|
return;
|
|
}
|
|
|
|
if (episodes.Count == successes.Count)
|
|
return;
|
|
|
|
var missingEpisodes = episodes.Select(e => e.EpisodeNumber).Except(successes).ToList();
|
|
|
|
foreach (var episode in episodes.Where(e => !e.Ignored && missingEpisodes.Contains(e.EpisodeNumber)).OrderBy(o => o.EpisodeNumber))
|
|
{
|
|
_episodeSearchJob.Start(notification, new { EpisodeId = episode.EpisodeId });
|
|
}
|
|
}
|
|
}
|
|
} |