2012-07-12 23:08:21 +02:00
|
|
|
using System.Collections.Generic;
|
2011-12-02 02:33:17 +01:00
|
|
|
using System.Linq;
|
|
|
|
using System;
|
2011-08-22 02:48:37 +02:00
|
|
|
using NLog;
|
2013-02-19 07:01:03 +01:00
|
|
|
using NzbDrone.Core.Tv;
|
2011-08-22 02:48:37 +02:00
|
|
|
using NzbDrone.Core.Model.Notification;
|
2011-12-02 02:33:17 +01:00
|
|
|
using NzbDrone.Core.Providers;
|
2011-08-22 02:48:37 +02:00
|
|
|
|
2011-12-02 02:33:17 +01:00
|
|
|
namespace NzbDrone.Core.Jobs
|
2011-08-22 02:48:37 +02:00
|
|
|
{
|
|
|
|
public class RenameSeasonJob : IJob
|
|
|
|
{
|
|
|
|
private readonly MediaFileProvider _mediaFileProvider;
|
|
|
|
private readonly DiskScanProvider _diskScanProvider;
|
2012-01-05 04:40:25 +01:00
|
|
|
private readonly ExternalNotificationProvider _externalNotificationProvider;
|
2013-02-20 03:05:15 +01:00
|
|
|
private readonly ISeriesService _seriesService;
|
2012-07-12 23:08:21 +02:00
|
|
|
private readonly MetadataProvider _metadataProvider;
|
2013-02-19 07:56:02 +01:00
|
|
|
private readonly ISeriesRepository _seriesRepository;
|
2011-08-22 02:48:37 +02:00
|
|
|
|
2012-02-25 03:01:53 +01:00
|
|
|
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
2011-08-22 02:48:37 +02:00
|
|
|
|
2012-01-05 04:40:25 +01:00
|
|
|
public RenameSeasonJob(MediaFileProvider mediaFileProvider, DiskScanProvider diskScanProvider,
|
2013-02-20 03:05:15 +01:00
|
|
|
ExternalNotificationProvider externalNotificationProvider, ISeriesService seriesService,
|
2013-02-19 07:56:02 +01:00
|
|
|
MetadataProvider metadataProvider,ISeriesRepository seriesRepository)
|
2011-08-22 02:48:37 +02:00
|
|
|
{
|
|
|
|
_mediaFileProvider = mediaFileProvider;
|
|
|
|
_diskScanProvider = diskScanProvider;
|
2012-01-05 04:40:25 +01:00
|
|
|
_externalNotificationProvider = externalNotificationProvider;
|
2013-02-20 03:05:15 +01:00
|
|
|
_seriesService = seriesService;
|
2012-07-12 23:08:21 +02:00
|
|
|
_metadataProvider = metadataProvider;
|
2013-02-19 07:56:02 +01:00
|
|
|
_seriesRepository = seriesRepository;
|
2011-08-22 02:48:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public string Name
|
|
|
|
{
|
|
|
|
get { return "Rename Season"; }
|
|
|
|
}
|
|
|
|
|
2012-01-15 03:47:23 +01:00
|
|
|
public TimeSpan DefaultInterval
|
2011-08-22 02:48:37 +02:00
|
|
|
{
|
2012-01-15 03:47:23 +01:00
|
|
|
get { return TimeSpan.FromTicks(0); }
|
2011-08-22 02:48:37 +02:00
|
|
|
}
|
|
|
|
|
2012-09-10 21:04:17 +02:00
|
|
|
public void Start(ProgressNotification notification, dynamic options)
|
2011-08-22 02:48:37 +02:00
|
|
|
{
|
2012-09-10 21:04:17 +02:00
|
|
|
if (options == null || options.SeriesId <= 0)
|
|
|
|
throw new ArgumentException("options");
|
2011-08-22 02:48:37 +02:00
|
|
|
|
2012-09-10 21:04:17 +02:00
|
|
|
if (options.SeasonNumber < 0)
|
|
|
|
throw new ArgumentException("options.SeasonNumber");
|
2011-08-22 02:48:37 +02:00
|
|
|
|
2013-02-19 07:56:02 +01:00
|
|
|
var series = _seriesRepository.Get(options.SeriesId);
|
2012-02-25 03:01:53 +01:00
|
|
|
|
2012-09-10 21:04:17 +02:00
|
|
|
notification.CurrentMessage = String.Format("Renaming episodes for {0} Season {1}", series.Title, options.SeasonNumber);
|
2012-02-25 03:01:53 +01:00
|
|
|
|
2012-09-10 21:04:17 +02:00
|
|
|
logger.Debug("Getting episodes from database for series: {0} and season: {1}", options.SeriesId, options.SeasonNumber);
|
2012-10-22 09:05:27 +02:00
|
|
|
IList<EpisodeFile> episodeFiles = _mediaFileProvider.GetSeasonFiles(options.SeriesId, options.SeasonNumber);
|
2011-08-22 02:48:37 +02:00
|
|
|
|
2012-02-25 03:01:53 +01:00
|
|
|
if (episodeFiles == null || !episodeFiles.Any())
|
2011-08-22 02:48:37 +02:00
|
|
|
{
|
2012-09-10 21:04:17 +02:00
|
|
|
logger.Warn("No episodes in database found for series: {0} and season: {1}.", options.SeriesId, options.SeasonNumber);
|
2011-08-22 02:48:37 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-07-12 23:08:21 +02:00
|
|
|
var newEpisodeFiles = new List<EpisodeFile>();
|
|
|
|
var oldEpisodeFiles = new List<EpisodeFile>();
|
|
|
|
|
2011-08-22 02:48:37 +02:00
|
|
|
foreach (var episodeFile in episodeFiles)
|
|
|
|
{
|
2012-02-25 03:01:53 +01:00
|
|
|
try
|
|
|
|
{
|
2012-07-14 10:17:37 +02:00
|
|
|
var oldFile = new EpisodeFile(episodeFile);
|
2012-07-12 23:08:21 +02:00
|
|
|
var newFile = _diskScanProvider.MoveEpisodeFile(episodeFile);
|
|
|
|
|
|
|
|
if (newFile != null)
|
|
|
|
{
|
|
|
|
newEpisodeFiles.Add(newFile);
|
2012-07-14 10:17:37 +02:00
|
|
|
oldEpisodeFiles.Add(oldFile);
|
2012-07-12 23:08:21 +02:00
|
|
|
}
|
2012-02-25 03:01:53 +01:00
|
|
|
}
|
2012-07-12 23:08:21 +02:00
|
|
|
|
|
|
|
catch (Exception e)
|
2012-02-25 03:01:53 +01:00
|
|
|
{
|
2012-07-12 23:08:21 +02:00
|
|
|
logger.WarnException("An error has occurred while renaming file", e);
|
2012-02-25 03:01:53 +01:00
|
|
|
}
|
2011-08-22 02:48:37 +02:00
|
|
|
}
|
|
|
|
|
2012-12-20 22:23:09 +01:00
|
|
|
if(!oldEpisodeFiles.Any())
|
|
|
|
{
|
|
|
|
logger.Trace("No episodes were renamed for: {0} Season {1}, no changes were made", series.Title,
|
|
|
|
options.SeasonNumber);
|
|
|
|
notification.CurrentMessage = String.Format("Rename completed for: {0} Season {1}, no changes were made", series.Title, options.SeasonNumber);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-07-12 23:08:21 +02:00
|
|
|
//Remove & Create Metadata for episode files
|
2012-12-20 22:23:09 +01:00
|
|
|
//Todo: Add a metadata manager to avoid this hack
|
2012-07-12 23:08:21 +02:00
|
|
|
_metadataProvider.RemoveForEpisodeFiles(oldEpisodeFiles);
|
|
|
|
_metadataProvider.CreateForEpisodeFiles(newEpisodeFiles);
|
|
|
|
|
2012-01-05 04:40:25 +01:00
|
|
|
//Start AfterRename
|
2012-09-10 21:04:17 +02:00
|
|
|
var message = String.Format("Renamed: Series {0}, Season: {1}", series.Title, options.SeasonNumber);
|
2012-01-05 04:40:25 +01:00
|
|
|
_externalNotificationProvider.AfterRename(message, series);
|
|
|
|
|
2012-09-10 21:04:17 +02:00
|
|
|
notification.CurrentMessage = String.Format("Rename completed for {0} Season {1}", series.Title, options.SeasonNumber);
|
2011-08-22 02:48:37 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|