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