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