Sonarr/NzbDrone.Core/Jobs/RefreshEpsiodeMetadata.cs

72 lines
2.4 KiB
C#
Raw Normal View History

2012-07-15 04:27:40 +00:00
using System.Collections.Generic;
using System.Linq;
using System;
using NLog;
2013-02-24 19:57:33 +00:00
using NzbDrone.Core.Datastore;
2013-03-01 07:03:41 +00:00
using NzbDrone.Core.MediaFiles;
using NzbDrone.Core.Tv;
2012-07-15 04:27:40 +00:00
using NzbDrone.Core.Model.Notification;
using NzbDrone.Core.Providers;
using NzbDrone.Core.Repository;
namespace NzbDrone.Core.Jobs
{
public class RefreshEpisodeMetadata : IJob
{
2013-03-01 07:03:41 +00:00
private readonly IMediaFileService _mediaFileService;
private readonly ISeriesService _seriesService;
private readonly ISeriesRepository _seriesRepository;
2012-07-15 04:27:40 +00:00
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
2013-03-01 07:03:41 +00:00
public RefreshEpisodeMetadata(IMediaFileService mediaFileService, ISeriesService seriesService,
2013-03-02 18:25:39 +00:00
ISeriesRepository seriesRepository)
2012-07-15 04:27:40 +00:00
{
2013-03-01 07:03:41 +00:00
_mediaFileService = mediaFileService;
_seriesService = seriesService;
_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
foreach(var series in seriesToRefresh)
{
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("Epsiode metadata refresh completed for {0}", series.Title);
}
}
}