2013-03-05 08:37:33 +03:00
|
|
|
using System;
|
2012-07-13 00:08:21 +03:00
|
|
|
using System.Collections.Generic;
|
2011-12-02 04:33:17 +03:00
|
|
|
using System.Linq;
|
2011-08-22 03:48:37 +03:00
|
|
|
using NLog;
|
2013-02-25 02:47:57 +03:00
|
|
|
using NzbDrone.Common.Eventing;
|
|
|
|
using NzbDrone.Core.Download;
|
2013-03-01 10:03:41 +03:00
|
|
|
using NzbDrone.Core.MediaFiles;
|
2011-08-22 03:48:37 +03:00
|
|
|
using NzbDrone.Core.Model.Notification;
|
2013-03-05 08:37:33 +03:00
|
|
|
using NzbDrone.Core.Tv;
|
2011-08-22 03:48:37 +03:00
|
|
|
|
2013-03-05 08:37:33 +03:00
|
|
|
namespace NzbDrone.Core.Jobs.Implementations
|
2011-08-22 03:48:37 +03:00
|
|
|
{
|
|
|
|
public class RenameSeasonJob : IJob
|
|
|
|
{
|
2013-03-01 10:03:41 +03:00
|
|
|
private readonly IMediaFileService _mediaFileService;
|
2013-02-19 09:56:02 +03:00
|
|
|
private readonly ISeriesRepository _seriesRepository;
|
2013-02-25 02:47:57 +03:00
|
|
|
private readonly IEventAggregator _eventAggregator;
|
2013-03-07 07:49:00 +03:00
|
|
|
private readonly IMoveEpisodeFiles _episodeFilesMover;
|
2011-08-22 03:48:37 +03:00
|
|
|
|
2012-02-25 05:01:53 +03:00
|
|
|
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
2011-08-22 03:48:37 +03:00
|
|
|
|
2013-03-07 07:49:00 +03:00
|
|
|
public RenameSeasonJob(IMediaFileService mediaFileService, ISeriesRepository seriesRepository, IEventAggregator eventAggregator, IMoveEpisodeFiles episodeFilesMover)
|
2011-08-22 03:48:37 +03:00
|
|
|
{
|
2013-03-01 10:03:41 +03:00
|
|
|
_mediaFileService = mediaFileService;
|
2013-02-19 09:56:02 +03:00
|
|
|
_seriesRepository = seriesRepository;
|
2013-02-25 02:47:57 +03:00
|
|
|
_eventAggregator = eventAggregator;
|
2013-03-07 07:49:00 +03:00
|
|
|
_episodeFilesMover = episodeFilesMover;
|
2011-08-22 03:48:37 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public string Name
|
|
|
|
{
|
|
|
|
get { return "Rename Season"; }
|
|
|
|
}
|
|
|
|
|
2012-01-15 05:47:23 +03:00
|
|
|
public TimeSpan DefaultInterval
|
2011-08-22 03:48:37 +03:00
|
|
|
{
|
2012-01-15 05:47:23 +03:00
|
|
|
get { return TimeSpan.FromTicks(0); }
|
2011-08-22 03:48:37 +03:00
|
|
|
}
|
|
|
|
|
2012-09-10 22:04:17 +03:00
|
|
|
public void Start(ProgressNotification notification, dynamic options)
|
2011-08-22 03:48:37 +03:00
|
|
|
{
|
2012-09-10 22:04:17 +03:00
|
|
|
if (options == null || options.SeriesId <= 0)
|
|
|
|
throw new ArgumentException("options");
|
2011-08-22 03:48:37 +03:00
|
|
|
|
2012-09-10 22:04:17 +03:00
|
|
|
if (options.SeasonNumber < 0)
|
|
|
|
throw new ArgumentException("options.SeasonNumber");
|
2011-08-22 03:48:37 +03:00
|
|
|
|
2013-02-23 02:55:43 +03:00
|
|
|
var series = _seriesRepository.Get((int)options.SeriesId);
|
2012-02-25 05:01:53 +03:00
|
|
|
|
2012-09-10 22:04:17 +03:00
|
|
|
notification.CurrentMessage = String.Format("Renaming episodes for {0} Season {1}", series.Title, options.SeasonNumber);
|
2012-02-25 05:01:53 +03:00
|
|
|
|
2012-09-10 22:04:17 +03:00
|
|
|
logger.Debug("Getting episodes from database for series: {0} and season: {1}", options.SeriesId, options.SeasonNumber);
|
2013-03-01 10:03:41 +03:00
|
|
|
IList<EpisodeFile> episodeFiles = _mediaFileService.GetFilesBySeason((int)options.SeriesId, (int)options.SeasonNumber);
|
2011-08-22 03:48:37 +03:00
|
|
|
|
2012-02-25 05:01:53 +03:00
|
|
|
if (episodeFiles == null || !episodeFiles.Any())
|
2011-08-22 03:48:37 +03:00
|
|
|
{
|
2012-09-10 22:04:17 +03:00
|
|
|
logger.Warn("No episodes in database found for series: {0} and season: {1}.", options.SeriesId, options.SeasonNumber);
|
2011-08-22 03:48:37 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-07-13 00:08:21 +03:00
|
|
|
var newEpisodeFiles = new List<EpisodeFile>();
|
|
|
|
var oldEpisodeFiles = new List<EpisodeFile>();
|
|
|
|
|
2011-08-22 03:48:37 +03:00
|
|
|
foreach (var episodeFile in episodeFiles)
|
|
|
|
{
|
2012-02-25 05:01:53 +03:00
|
|
|
try
|
|
|
|
{
|
2012-07-14 11:17:37 +03:00
|
|
|
var oldFile = new EpisodeFile(episodeFile);
|
2013-03-07 07:49:00 +03:00
|
|
|
var newFile = _episodeFilesMover.MoveEpisodeFile(episodeFile);
|
2012-07-13 00:08:21 +03:00
|
|
|
|
|
|
|
if (newFile != null)
|
|
|
|
{
|
|
|
|
newEpisodeFiles.Add(newFile);
|
2012-07-14 11:17:37 +03:00
|
|
|
oldEpisodeFiles.Add(oldFile);
|
2012-07-13 00:08:21 +03:00
|
|
|
}
|
2012-02-25 05:01:53 +03:00
|
|
|
}
|
2012-07-13 00:08:21 +03:00
|
|
|
|
|
|
|
catch (Exception e)
|
2012-02-25 05:01:53 +03:00
|
|
|
{
|
2012-07-13 00:08:21 +03:00
|
|
|
logger.WarnException("An error has occurred while renaming file", e);
|
2012-02-25 05:01:53 +03:00
|
|
|
}
|
2011-08-22 03:48:37 +03:00
|
|
|
}
|
|
|
|
|
2013-02-23 02:55:43 +03:00
|
|
|
if (!oldEpisodeFiles.Any())
|
2012-12-21 00:23:09 +03:00
|
|
|
{
|
|
|
|
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-01-05 06:40:25 +03:00
|
|
|
//Start AfterRename
|
2013-02-25 02:47:57 +03:00
|
|
|
_eventAggregator.Publish(new SeriesRenamedEvent(series));
|
2012-01-05 06:40:25 +03:00
|
|
|
|
2012-09-10 22:04:17 +03:00
|
|
|
notification.CurrentMessage = String.Format("Rename completed for {0} Season {1}", series.Title, options.SeasonNumber);
|
2011-08-22 03:48:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|