Radarr/NzbDrone.Core/Jobs/Implementations/RefreshEpisodeMetadata.cs

66 lines
2.1 KiB
C#
Raw Normal View History

2013-03-05 05:37:33 +00:00
using System;
2012-07-15 04:27:40 +00:00
using System.Collections.Generic;
using System.Linq;
using NLog;
2013-03-01 07:03:41 +00:00
using NzbDrone.Core.MediaFiles;
2012-07-15 04:27:40 +00:00
using NzbDrone.Core.Model.Notification;
2013-03-05 05:37:33 +00:00
using NzbDrone.Core.Tv;
2012-07-15 04:27:40 +00:00
2013-03-05 05:37:33 +00:00
namespace NzbDrone.Core.Jobs.Implementations
2012-07-15 04:27:40 +00:00
{
public class RefreshEpisodeMetadata : IJob
{
2013-03-01 07:03:41 +00:00
private readonly IMediaFileService _mediaFileService;
private readonly ISeriesRepository _seriesRepository;
2012-07-15 04:27:40 +00:00
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
2013-03-05 19:58:53 +00:00
public RefreshEpisodeMetadata(IMediaFileService mediaFileService, ISeriesRepository seriesRepository)
2012-07-15 04:27:40 +00:00
{
2013-03-01 07:03:41 +00:00
_mediaFileService = mediaFileService;
_seriesRepository = seriesRepository;
2012-07-15 04:27:40 +00:00
}
public string Name
{
get { return "Refresh Episode Metadata"; }
}
public TimeSpan DefaultInterval
{
get { return TimeSpan.FromTicks(0); }
}
2012-09-10 19:04:17 +00:00
public void Start(ProgressNotification notification, dynamic options)
2012-07-15 04:27:40 +00:00
{
List<Series> seriesToRefresh;
2012-09-10 19:04:17 +00:00
if (options == null || options.SeriesId <= 0)
seriesToRefresh = _seriesRepository.All().ToList();
2012-07-15 04:27:40 +00:00
else
seriesToRefresh = new List<Series> { _seriesRepository.Get(options.SeriesId) };
2012-07-15 04:27:40 +00:00
2013-03-05 19:58:53 +00:00
foreach (var series in seriesToRefresh)
{
2013-03-05 19:58:53 +00:00
RefreshMetadata(notification, series);
}
2012-07-15 04:27:40 +00:00
}
private void RefreshMetadata(ProgressNotification notification, Series series)
{
notification.CurrentMessage = String.Format("Refreshing episode metadata for '{0}'", series.Title);
Logger.Debug("Getting episodes from database for series: {0}", series.Id);
2013-03-01 07:03:41 +00:00
var episodeFiles = _mediaFileService.GetFilesBySeries(series.Id);
2012-07-15 04:27:40 +00:00
if (episodeFiles == null || episodeFiles.Count == 0)
{
Logger.Warn("No episodes in database found for series: {0}", series.Id);
2012-07-15 04:27:40 +00:00
return;
}
notification.CurrentMessage = String.Format("Episode metadata refresh completed for {0}", series.Title);
2012-07-15 04:27:40 +00:00
}
}
}