You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
60 lines
1.9 KiB
60 lines
1.9 KiB
13 years ago
|
using System.Linq;
|
||
|
using System;
|
||
13 years ago
|
using NLog;
|
||
13 years ago
|
using Ninject;
|
||
13 years ago
|
using NzbDrone.Core.Model.Notification;
|
||
13 years ago
|
using NzbDrone.Core.Providers;
|
||
13 years ago
|
|
||
13 years ago
|
namespace NzbDrone.Core.Jobs
|
||
13 years ago
|
{
|
||
|
public class RenameSeasonJob : IJob
|
||
|
{
|
||
|
private readonly MediaFileProvider _mediaFileProvider;
|
||
|
private readonly DiskScanProvider _diskScanProvider;
|
||
|
|
||
|
|
||
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
||
|
|
||
|
[Inject]
|
||
|
public RenameSeasonJob(MediaFileProvider mediaFileProvider, DiskScanProvider diskScanProvider)
|
||
|
{
|
||
|
_mediaFileProvider = mediaFileProvider;
|
||
|
_diskScanProvider = diskScanProvider;
|
||
|
}
|
||
|
|
||
|
public string Name
|
||
|
{
|
||
|
get { return "Rename Season"; }
|
||
|
}
|
||
|
|
||
|
public int DefaultInterval
|
||
|
{
|
||
|
get { return 0; }
|
||
|
}
|
||
|
|
||
|
public void Start(ProgressNotification notification, int targetId, int secondaryTargetId)
|
||
|
{
|
||
|
if (targetId <= 0)
|
||
|
throw new ArgumentOutOfRangeException("targetId");
|
||
|
|
||
|
if (secondaryTargetId <= 0)
|
||
|
throw new ArgumentOutOfRangeException("secondaryTargetId");
|
||
|
|
||
|
Logger.Debug("Getting episodes from database for series: {0} and season: {1}", targetId, secondaryTargetId);
|
||
|
var episodeFiles = _mediaFileProvider.GetSeasonFiles(targetId, secondaryTargetId);
|
||
|
|
||
|
if (episodeFiles == null || episodeFiles.Count == 0)
|
||
|
{
|
||
13 years ago
|
Logger.Warn("No episodes in database found for series: {0} and season: {1}.", targetId, secondaryTargetId);
|
||
13 years ago
|
return;
|
||
|
}
|
||
|
|
||
|
foreach (var episodeFile in episodeFiles)
|
||
|
{
|
||
|
_diskScanProvider.MoveEpisodeFile(episodeFile);
|
||
|
}
|
||
|
|
||
|
notification.CurrentMessage = String.Format("Season rename completed for Series: {0} Season: {1}", targetId, secondaryTargetId);
|
||
|
}
|
||
|
}
|
||
|
}
|