2013-03-05 05:37:33 +00:00
|
|
|
using System;
|
2012-07-12 21:08:21 +00:00
|
|
|
using System.Collections.Generic;
|
2011-12-02 07:51:32 +00:00
|
|
|
using System.Linq;
|
2011-08-23 05:29:12 +00:00
|
|
|
using NLog;
|
2013-04-24 01:56:00 +00:00
|
|
|
using NzbDrone.Common.Messaging;
|
2013-02-24 23:47:57 +00:00
|
|
|
using NzbDrone.Core.Download;
|
2013-03-01 07:03:41 +00:00
|
|
|
using NzbDrone.Core.MediaFiles;
|
2011-08-23 05:29:12 +00:00
|
|
|
using NzbDrone.Core.Model.Notification;
|
2013-03-05 05:37:33 +00:00
|
|
|
using NzbDrone.Core.Tv;
|
2011-08-23 05:29:12 +00:00
|
|
|
|
2013-03-05 05:37:33 +00:00
|
|
|
namespace NzbDrone.Core.Jobs.Implementations
|
2011-08-23 05:29:12 +00:00
|
|
|
{
|
|
|
|
public class RenameSeriesJob : IJob
|
|
|
|
{
|
2013-03-01 07:03:41 +00:00
|
|
|
private readonly IMediaFileService _mediaFileService;
|
2013-02-19 06:56:02 +00:00
|
|
|
private readonly ISeriesRepository _seriesRepository;
|
2013-04-24 01:56:00 +00:00
|
|
|
private readonly IMessageAggregator _messageAggregator;
|
2013-03-07 04:49:00 +00:00
|
|
|
private readonly IMoveEpisodeFiles _moveEpisodeFiles;
|
2011-08-23 05:29:12 +00:00
|
|
|
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
2013-04-24 01:56:00 +00:00
|
|
|
public RenameSeriesJob(IMediaFileService mediaFileService, ISeriesRepository seriesRepository, IMessageAggregator messageAggregator, IMoveEpisodeFiles moveEpisodeFiles)
|
2011-08-23 05:29:12 +00:00
|
|
|
{
|
2013-03-01 07:03:41 +00:00
|
|
|
_mediaFileService = mediaFileService;
|
2013-02-19 06:56:02 +00:00
|
|
|
_seriesRepository = seriesRepository;
|
2013-04-24 01:56:00 +00:00
|
|
|
_messageAggregator = messageAggregator;
|
2013-03-07 04:49:00 +00:00
|
|
|
_moveEpisodeFiles = moveEpisodeFiles;
|
2011-08-23 05:29:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public string Name
|
|
|
|
{
|
|
|
|
get { return "Rename Series"; }
|
|
|
|
}
|
|
|
|
|
2012-01-15 02:47:23 +00:00
|
|
|
public TimeSpan DefaultInterval
|
2011-08-23 05:29:12 +00:00
|
|
|
{
|
2012-01-15 02:47:23 +00:00
|
|
|
get { return TimeSpan.FromTicks(0); }
|
2011-08-23 05:29:12 +00:00
|
|
|
}
|
|
|
|
|
2012-09-10 19:04:17 +00:00
|
|
|
public void Start(ProgressNotification notification, dynamic options)
|
2011-08-23 05:29:12 +00:00
|
|
|
{
|
2012-07-21 04:46:16 +00:00
|
|
|
List<Series> seriesToRename;
|
|
|
|
|
2012-09-10 19:04:17 +00:00
|
|
|
if (options == null || options.SeriesId <= 0)
|
2012-07-21 04:46:16 +00:00
|
|
|
{
|
2013-02-19 06:56:02 +00:00
|
|
|
seriesToRename = _seriesRepository.All().ToList();
|
2012-07-21 04:46:16 +00:00
|
|
|
}
|
2011-08-23 05:29:12 +00:00
|
|
|
|
2012-07-21 04:46:16 +00:00
|
|
|
else
|
|
|
|
{
|
2013-03-07 04:49:00 +00:00
|
|
|
seriesToRename = new List<Series> { _seriesRepository.Get((int)options.SeriesId) };
|
2012-07-21 04:46:16 +00:00
|
|
|
}
|
2012-02-25 02:01:53 +00:00
|
|
|
|
2013-03-07 04:49:00 +00:00
|
|
|
foreach (var series in seriesToRename)
|
2012-07-21 04:46:16 +00:00
|
|
|
{
|
|
|
|
notification.CurrentMessage = String.Format("Renaming episodes for '{0}'", series.Title);
|
2012-02-25 02:01:53 +00:00
|
|
|
|
2013-02-26 03:58:57 +00:00
|
|
|
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);
|
2011-08-23 05:29:12 +00:00
|
|
|
|
2012-07-21 04:46:16 +00:00
|
|
|
if (episodeFiles == null || episodeFiles.Count == 0)
|
|
|
|
{
|
2013-02-26 03:58:57 +00:00
|
|
|
Logger.Warn("No episodes in database found for series: {0}", series.Id);
|
2012-07-21 04:46:16 +00:00
|
|
|
return;
|
|
|
|
}
|
2011-08-23 05:29:12 +00:00
|
|
|
|
2012-07-21 04:46:16 +00:00
|
|
|
var newEpisodeFiles = new List<EpisodeFile>();
|
|
|
|
var oldEpisodeFiles = new List<EpisodeFile>();
|
2012-07-12 21:08:21 +00:00
|
|
|
|
2012-07-21 04:46:16 +00:00
|
|
|
foreach (var episodeFile in episodeFiles)
|
2012-02-25 02:01:53 +00:00
|
|
|
{
|
2012-07-21 04:46:16 +00:00
|
|
|
try
|
|
|
|
{
|
|
|
|
var oldFile = new EpisodeFile(episodeFile);
|
2013-03-07 04:49:00 +00:00
|
|
|
var newFile = _moveEpisodeFiles.MoveEpisodeFile(episodeFile);
|
2012-07-21 04:46:16 +00:00
|
|
|
|
|
|
|
if (newFile != null)
|
|
|
|
{
|
|
|
|
newEpisodeFiles.Add(newFile);
|
|
|
|
oldEpisodeFiles.Add(oldFile);
|
|
|
|
}
|
|
|
|
}
|
2012-07-12 21:08:21 +00:00
|
|
|
|
2012-07-21 04:46:16 +00:00
|
|
|
catch (Exception e)
|
2012-07-12 21:08:21 +00:00
|
|
|
{
|
2012-07-21 04:46:16 +00:00
|
|
|
Logger.WarnException("An error has occurred while renaming file", e);
|
2012-07-12 21:08:21 +00:00
|
|
|
}
|
2012-02-25 02:01:53 +00:00
|
|
|
}
|
2012-07-12 21:08:21 +00:00
|
|
|
|
2012-07-21 04:46:16 +00:00
|
|
|
//Start AfterRename
|
2012-07-12 21:08:21 +00:00
|
|
|
|
2013-04-27 02:03:34 +00:00
|
|
|
_messageAggregator.PublishEvent(new SeriesRenamedEvent(series));
|
2012-01-05 03:40:25 +00:00
|
|
|
|
2012-07-21 04:46:16 +00:00
|
|
|
notification.CurrentMessage = String.Format("Rename completed for {0}", series.Title);
|
|
|
|
}
|
2011-08-23 05:29:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|