2011-08-22 22:29:12 -07:00
|
|
|
using System;
|
2012-09-10 12:04:17 -07:00
|
|
|
using System.Collections.Generic;
|
2011-11-25 23:52:54 -08:00
|
|
|
using System.Linq;
|
2011-08-22 22:29:12 -07:00
|
|
|
using NLog;
|
2012-12-18 11:40:50 -08:00
|
|
|
using Ninject;
|
2011-08-22 22:29:12 -07:00
|
|
|
using NzbDrone.Core.Model.Notification;
|
2011-12-01 17:33:17 -08:00
|
|
|
using NzbDrone.Core.Providers;
|
2012-09-10 12:04:17 -07:00
|
|
|
using NzbDrone.Core.Repository;
|
2011-08-22 22:29:12 -07:00
|
|
|
|
2011-12-01 17:33:17 -08:00
|
|
|
namespace NzbDrone.Core.Jobs
|
2011-08-22 22:29:12 -07:00
|
|
|
{
|
|
|
|
public class SeriesSearchJob : IJob
|
|
|
|
{
|
2011-08-27 23:37:34 -07:00
|
|
|
private readonly SeasonSearchJob _seasonSearchJob;
|
2012-02-20 19:25:19 -08:00
|
|
|
private readonly SeasonProvider _seasonProvider;
|
2011-08-22 22:29:12 -07:00
|
|
|
|
2012-02-27 21:50:56 -08:00
|
|
|
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
2011-08-22 22:29:12 -07:00
|
|
|
|
2012-12-18 11:40:50 -08:00
|
|
|
[Inject]
|
2012-02-20 19:25:19 -08:00
|
|
|
public SeriesSearchJob(SeasonSearchJob seasonSearchJob,
|
|
|
|
SeasonProvider seasonProvider)
|
2011-08-22 22:29:12 -07:00
|
|
|
{
|
2011-08-27 23:37:34 -07:00
|
|
|
_seasonSearchJob = seasonSearchJob;
|
2012-02-20 19:25:19 -08:00
|
|
|
_seasonProvider = seasonProvider;
|
2011-08-22 22:29:12 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public string Name
|
|
|
|
{
|
|
|
|
get { return "Series Search"; }
|
|
|
|
}
|
|
|
|
|
2012-01-14 18:47:23 -08:00
|
|
|
public TimeSpan DefaultInterval
|
2011-08-22 22:29:12 -07:00
|
|
|
{
|
2012-01-14 18:47:23 -08:00
|
|
|
get { return TimeSpan.FromTicks(0); }
|
2011-08-22 22:29:12 -07:00
|
|
|
}
|
|
|
|
|
2012-09-10 12:04:17 -07:00
|
|
|
public void Start(ProgressNotification notification, dynamic options)
|
2011-08-22 22:29:12 -07:00
|
|
|
{
|
2012-09-10 12:04:17 -07:00
|
|
|
if (options == null || options.SeriesId <= 0)
|
|
|
|
throw new ArgumentException("options.SeriesId");
|
2011-08-22 22:29:12 -07:00
|
|
|
|
2012-09-10 12:04:17 -07:00
|
|
|
logger.Debug("Getting seasons from database for series: {0}", options.SeriesId);
|
|
|
|
IList<int> seasons = _seasonProvider.GetSeasons(options.SeriesId);
|
2011-08-22 22:29:12 -07:00
|
|
|
|
2012-09-10 12:04:17 -07:00
|
|
|
foreach (var season in seasons.Where(s => s > 0))
|
2011-08-22 22:29:12 -07:00
|
|
|
{
|
2012-09-10 12:04:17 -07:00
|
|
|
if (!_seasonProvider.IsIgnored(options.SeriesId, season))
|
2012-02-27 21:50:56 -08:00
|
|
|
{
|
2012-09-10 12:04:17 -07:00
|
|
|
_seasonSearchJob.Start(notification, new { SeriesId = options.SeriesId, SeasonNumber = season });
|
2012-02-27 21:50:56 -08:00
|
|
|
}
|
2011-08-22 22:29:12 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|