2011-05-12 02:53:19 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using NLog;
|
|
|
|
|
using NzbDrone.Core.Model.Notification;
|
|
|
|
|
using NzbDrone.Core.Repository;
|
|
|
|
|
using SubSonic.Repository;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers.Jobs
|
|
|
|
|
{
|
|
|
|
|
public class DeleteSeriesJob : IJob
|
|
|
|
|
{
|
|
|
|
|
private readonly SeriesProvider _seriesProvider;
|
|
|
|
|
|
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
2011-05-15 23:35:45 +00:00
|
|
|
|
public DeleteSeriesJob(SeriesProvider seriesProvider)
|
2011-05-12 02:53:19 +00:00
|
|
|
|
{
|
|
|
|
|
_seriesProvider = seriesProvider;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Name
|
|
|
|
|
{
|
|
|
|
|
get { return "Delete Series"; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public int DefaultInterval
|
|
|
|
|
{
|
|
|
|
|
get { return 0; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Start(ProgressNotification notification, int targetId)
|
|
|
|
|
{
|
|
|
|
|
DeleteSeries(notification, targetId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void DeleteSeries(ProgressNotification notification, int seriesId)
|
|
|
|
|
{
|
|
|
|
|
Logger.Warn("Deleting Series [{0}]", seriesId);
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
2011-05-15 23:39:46 +00:00
|
|
|
|
notification.CurrentMessage = String.Format("Beginning Delete of Series: {0}", seriesId);
|
2011-05-12 02:53:19 +00:00
|
|
|
|
|
2011-05-13 00:55:26 +00:00
|
|
|
|
_seriesProvider.DeleteSeries(seriesId);
|
2011-05-12 02:53:19 +00:00
|
|
|
|
|
2011-05-15 23:39:46 +00:00
|
|
|
|
notification.CurrentMessage = String.Format("Successfully deleted Series: {0}", seriesId);
|
2011-05-12 02:53:19 +00:00
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
Logger.ErrorException("An error has occurred while deleting series: " + seriesId, e);
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|