mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 05:53:33 -07:00
Moved Jobs to their own folder.
This commit is contained in:
parent
cc8c70d7f5
commit
fabc4c84bd
52 changed files with 124 additions and 132 deletions
86
NzbDrone.Core/Jobs/BacklogSearchJob.cs
Normal file
86
NzbDrone.Core/Jobs/BacklogSearchJob.cs
Normal file
|
@ -0,0 +1,86 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using NLog;
|
||||
using NzbDrone.Core.Model.Notification;
|
||||
using NzbDrone.Core.Providers;
|
||||
using NzbDrone.Core.Providers.Jobs;
|
||||
using NzbDrone.Core.Repository;
|
||||
|
||||
namespace NzbDrone.Core.Jobs
|
||||
{
|
||||
public class BacklogSearchJob : IJob
|
||||
{
|
||||
private readonly EpisodeProvider _episodeProvider;
|
||||
private readonly EpisodeSearchJob _episodeSearchJob;
|
||||
private readonly SeasonSearchJob _seasonSearchJob;
|
||||
|
||||
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
||||
|
||||
public BacklogSearchJob(EpisodeProvider episodeProvider, EpisodeSearchJob episodeSearchJob,
|
||||
SeasonSearchJob seasonSearchJob)
|
||||
{
|
||||
_episodeProvider = episodeProvider;
|
||||
_episodeSearchJob = episodeSearchJob;
|
||||
_seasonSearchJob = seasonSearchJob;
|
||||
}
|
||||
|
||||
public string Name
|
||||
{
|
||||
get { return "Backlog Search"; }
|
||||
}
|
||||
|
||||
public int DefaultInterval
|
||||
{
|
||||
get { return 43200; }
|
||||
}
|
||||
|
||||
public void Start(ProgressNotification notification, int targetId, int secondaryTargetId)
|
||||
{
|
||||
var missingEpisodes = _episodeProvider.EpisodesWithoutFiles(true)
|
||||
.GroupBy(e => new { e.SeriesId, e.SeasonNumber });
|
||||
|
||||
var individualEpisodes = new List<Episode>();
|
||||
|
||||
Logger.Trace("Processing missing episodes list");
|
||||
foreach (var group in missingEpisodes)
|
||||
{
|
||||
var count = group.Count();
|
||||
|
||||
if (count == 1)
|
||||
individualEpisodes.Add(group.First());
|
||||
|
||||
else
|
||||
{
|
||||
//Get count and compare to the actual number of episodes for this season
|
||||
//If numbers don't match then add to individual episodes, else process as full season...
|
||||
var seriesId = group.Key.SeriesId;
|
||||
var seasonNumber = group.Key.SeasonNumber;
|
||||
|
||||
var countInDb = _episodeProvider.GetEpisodeNumbersBySeason(seriesId, seasonNumber).Count;
|
||||
|
||||
//Todo: Download a full season if more than n% is missing?
|
||||
|
||||
if (count != countInDb)
|
||||
{
|
||||
//Add the episodes to be processed manually
|
||||
individualEpisodes.AddRange(group);
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
//Process as a full season
|
||||
Logger.Debug("Processing Full Season: {0} Season {1}", seriesId, seasonNumber);
|
||||
_seasonSearchJob.Start(notification, seriesId, seasonNumber);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Logger.Debug("Processing standalone episodes");
|
||||
//Process the list of remaining episodes, 1 by 1
|
||||
foreach (var episode in individualEpisodes)
|
||||
{
|
||||
_episodeSearchJob.Start(notification, episode.EpisodeId, 0);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue