mirror of https://github.com/Sonarr/Sonarr
event based cleanup when a series is deleted.
This commit is contained in:
parent
cc1dcffdf3
commit
4877ce405e
|
@ -100,7 +100,7 @@ namespace NzbDrone.Api.Series
|
||||||
private Response DeleteSeries(int id)
|
private Response DeleteSeries(int id)
|
||||||
{
|
{
|
||||||
var deleteFiles = Convert.ToBoolean(Request.Headers["deleteFiles"].FirstOrDefault());
|
var deleteFiles = Convert.ToBoolean(Request.Headers["deleteFiles"].FirstOrDefault());
|
||||||
_jobProvider.Enqueue(typeof(DeleteSeriesJob), new { SeriesId = id, DeleteFiles = deleteFiles });
|
_seriesService.DeleteSeries(id, deleteFiles);
|
||||||
return new Response { StatusCode = HttpStatusCode.OK };
|
return new Response { StatusCode = HttpStatusCode.OK };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,6 +14,7 @@ namespace NzbDrone.Core.Datastore
|
||||||
void Delete(int id);
|
void Delete(int id);
|
||||||
IList<TModel> InsertMany(IList<TModel> model);
|
IList<TModel> InsertMany(IList<TModel> model);
|
||||||
IList<TModel> UpdateMany(IList<TModel> model);
|
IList<TModel> UpdateMany(IList<TModel> model);
|
||||||
|
void DeleteMany(IList<TModel> model);
|
||||||
void Purge();
|
void Purge();
|
||||||
bool HasItems();
|
bool HasItems();
|
||||||
}
|
}
|
||||||
|
@ -64,6 +65,11 @@ namespace NzbDrone.Core.Datastore
|
||||||
return ObjectDatabase.UpdateMany(model);
|
return ObjectDatabase.UpdateMany(model);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void DeleteMany(IList<TModel> model)
|
||||||
|
{
|
||||||
|
ObjectDatabase.DeleteMany(model);
|
||||||
|
}
|
||||||
|
|
||||||
public TModel Upsert(TModel model)
|
public TModel Upsert(TModel model)
|
||||||
{
|
{
|
||||||
if (model.Id == 0)
|
if (model.Id == 0)
|
||||||
|
|
|
@ -1,69 +0,0 @@
|
||||||
using System;
|
|
||||||
using System.Linq;
|
|
||||||
using NLog;
|
|
||||||
using NzbDrone.Core.Model.Notification;
|
|
||||||
using NzbDrone.Core.Providers;
|
|
||||||
using NzbDrone.Core.Tv;
|
|
||||||
|
|
||||||
namespace NzbDrone.Core.Jobs.Implementations
|
|
||||||
{
|
|
||||||
public class DeleteSeriesJob : IJob
|
|
||||||
{
|
|
||||||
private readonly ISeriesService _seriesService;
|
|
||||||
private readonly RecycleBinProvider _recycleBinProvider;
|
|
||||||
private readonly ISeriesRepository _seriesRepository;
|
|
||||||
|
|
||||||
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
||||||
|
|
||||||
public DeleteSeriesJob(ISeriesService seriesService, RecycleBinProvider recycleBinProvider, ISeriesRepository seriesRepository)
|
|
||||||
{
|
|
||||||
_seriesService = seriesService;
|
|
||||||
_recycleBinProvider = recycleBinProvider;
|
|
||||||
_seriesRepository = seriesRepository;
|
|
||||||
}
|
|
||||||
|
|
||||||
public string Name
|
|
||||||
{
|
|
||||||
get { return "Delete Series"; }
|
|
||||||
}
|
|
||||||
|
|
||||||
public TimeSpan DefaultInterval
|
|
||||||
{
|
|
||||||
get { return TimeSpan.FromTicks(0); }
|
|
||||||
}
|
|
||||||
|
|
||||||
public void Start(ProgressNotification notification, dynamic options)
|
|
||||||
{
|
|
||||||
if (options == null)
|
|
||||||
throw new ArgumentNullException("options");
|
|
||||||
|
|
||||||
if (options.SeriesId == 0)
|
|
||||||
throw new ArgumentNullException("options.SeriesId");
|
|
||||||
|
|
||||||
DeleteSeries(notification, (int)options.SeriesId, (bool)options.DeleteFiles);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void DeleteSeries(ProgressNotification notification, int seriesId, bool deleteFiles)
|
|
||||||
{
|
|
||||||
Logger.Trace("Deleting Series [{0}]", seriesId);
|
|
||||||
|
|
||||||
var series = _seriesRepository.Get(seriesId);
|
|
||||||
var title = series.Title;
|
|
||||||
|
|
||||||
notification.CurrentMessage = String.Format("Deleting '{0}' from database", title);
|
|
||||||
|
|
||||||
_seriesRepository.Delete(seriesId);
|
|
||||||
|
|
||||||
notification.CurrentMessage = String.Format("Successfully deleted '{0}' from database", title);
|
|
||||||
|
|
||||||
if (deleteFiles)
|
|
||||||
{
|
|
||||||
notification.CurrentMessage = String.Format("Deleting files from disk for series '{0}'", title);
|
|
||||||
|
|
||||||
_recycleBinProvider.DeleteDirectory(series.Path);
|
|
||||||
|
|
||||||
notification.CurrentMessage = String.Format("Successfully deleted files from disk for series '{0}'", title);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,7 +1,6 @@
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Threading;
|
|
||||||
using NLog;
|
using NLog;
|
||||||
using NzbDrone.Common;
|
using NzbDrone.Common;
|
||||||
using NzbDrone.Common.Eventing;
|
using NzbDrone.Common.Eventing;
|
||||||
|
@ -10,7 +9,9 @@ using NzbDrone.Core.Tv.Events;
|
||||||
|
|
||||||
namespace NzbDrone.Core.MediaCover
|
namespace NzbDrone.Core.MediaCover
|
||||||
{
|
{
|
||||||
public class MediaCoverService : IHandleAsync<SeriesUpdatedEvent>
|
public class MediaCoverService :
|
||||||
|
IHandleAsync<SeriesUpdatedEvent>,
|
||||||
|
IHandleAsync<SeriesDeletedEvent>
|
||||||
{
|
{
|
||||||
private readonly HttpProvider _httpProvider;
|
private readonly HttpProvider _httpProvider;
|
||||||
private readonly DiskProvider _diskProvider;
|
private readonly DiskProvider _diskProvider;
|
||||||
|
@ -61,9 +62,23 @@ namespace NzbDrone.Core.MediaCover
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void HandleAsync(SeriesDeletedEvent message)
|
||||||
|
{
|
||||||
|
var path = GetSeriesCoverPath(message.Series.Id);
|
||||||
|
if (_diskProvider.FolderExists(path))
|
||||||
|
{
|
||||||
|
_diskProvider.DeleteFolder(path, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private string GetCoverPath(int seriesId, MediaCoverTypes coverTypes)
|
private string GetCoverPath(int seriesId, MediaCoverTypes coverTypes)
|
||||||
{
|
{
|
||||||
return Path.Combine(_coverRootFolder, seriesId.ToString("0000"), coverTypes.ToString().ToLower() + ".jpg");
|
return Path.Combine(GetSeriesCoverPath(seriesId), coverTypes.ToString().ToLower() + ".jpg");
|
||||||
|
}
|
||||||
|
|
||||||
|
private string GetSeriesCoverPath(int seriesId)
|
||||||
|
{
|
||||||
|
return Path.Combine(_coverRootFolder, seriesId.ToString("0000"));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,10 +3,12 @@ using System.Collections.Generic;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using NLog;
|
using NLog;
|
||||||
|
using NzbDrone.Common.Eventing;
|
||||||
using NzbDrone.Core.Configuration;
|
using NzbDrone.Core.Configuration;
|
||||||
using NzbDrone.Core.Qualities;
|
using NzbDrone.Core.Qualities;
|
||||||
using NzbDrone.Core.Tv;
|
using NzbDrone.Core.Tv;
|
||||||
using NzbDrone.Core.Helpers;
|
using NzbDrone.Core.Helpers;
|
||||||
|
using NzbDrone.Core.Tv.Events;
|
||||||
|
|
||||||
namespace NzbDrone.Core.MediaFiles
|
namespace NzbDrone.Core.MediaFiles
|
||||||
{
|
{
|
||||||
|
@ -23,7 +25,7 @@ namespace NzbDrone.Core.MediaFiles
|
||||||
string GetNewFilename(IList<Episode> episodes, Series series, Quality quality, bool proper, EpisodeFile episodeFile);
|
string GetNewFilename(IList<Episode> episodes, Series series, Quality quality, bool proper, EpisodeFile episodeFile);
|
||||||
}
|
}
|
||||||
|
|
||||||
public class MediaFileService : IMediaFileService
|
public class MediaFileService : IMediaFileService, IHandleAsync<SeriesDeletedEvent>
|
||||||
{
|
{
|
||||||
private readonly IConfigService _configService;
|
private readonly IConfigService _configService;
|
||||||
private readonly IEpisodeService _episodeService;
|
private readonly IEpisodeService _episodeService;
|
||||||
|
@ -210,5 +212,11 @@ namespace NzbDrone.Core.MediaFiles
|
||||||
|
|
||||||
return result.Trim();
|
return result.Trim();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void HandleAsync(SeriesDeletedEvent message)
|
||||||
|
{
|
||||||
|
var files = GetFilesBySeries(message.Series.Id);
|
||||||
|
_mediaFileRepository.DeleteMany(files);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -208,7 +208,6 @@
|
||||||
<Compile Include="Jobs\Implementations\BacklogSearchJob.cs" />
|
<Compile Include="Jobs\Implementations\BacklogSearchJob.cs" />
|
||||||
<Compile Include="Jobs\Implementations\CleanupRecycleBinJob.cs" />
|
<Compile Include="Jobs\Implementations\CleanupRecycleBinJob.cs" />
|
||||||
<Compile Include="Jobs\Implementations\ConvertEpisodeJob.cs" />
|
<Compile Include="Jobs\Implementations\ConvertEpisodeJob.cs" />
|
||||||
<Compile Include="Jobs\Implementations\DeleteSeriesJob.cs" />
|
|
||||||
<Compile Include="Jobs\Implementations\DiskScanJob.cs" />
|
<Compile Include="Jobs\Implementations\DiskScanJob.cs" />
|
||||||
<Compile Include="Jobs\Implementations\EmptyRecycleBinJob.cs" />
|
<Compile Include="Jobs\Implementations\EmptyRecycleBinJob.cs" />
|
||||||
<Compile Include="Jobs\Implementations\EpisodeSearchJob.cs" />
|
<Compile Include="Jobs\Implementations\EpisodeSearchJob.cs" />
|
||||||
|
|
|
@ -1,15 +1,15 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
|
||||||
using NLog;
|
using NLog;
|
||||||
using NzbDrone.Common;
|
using NzbDrone.Common;
|
||||||
|
using NzbDrone.Common.Eventing;
|
||||||
using NzbDrone.Core.Configuration;
|
using NzbDrone.Core.Configuration;
|
||||||
|
using NzbDrone.Core.Tv.Events;
|
||||||
|
|
||||||
namespace NzbDrone.Core.Providers
|
namespace NzbDrone.Core.Providers
|
||||||
{
|
{
|
||||||
public class RecycleBinProvider
|
public class RecycleBinProvider : IHandleAsync<SeriesDeletedEvent>
|
||||||
{
|
{
|
||||||
private readonly DiskProvider _diskProvider;
|
private readonly DiskProvider _diskProvider;
|
||||||
private readonly IConfigService _configService;
|
private readonly IConfigService _configService;
|
||||||
|
@ -136,5 +136,10 @@ namespace NzbDrone.Core.Providers
|
||||||
|
|
||||||
logger.Trace("Recycling Bin has been cleaned up.");
|
logger.Trace("Recycling Bin has been cleaned up.");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void HandleAsync(SeriesDeletedEvent message)
|
||||||
|
{
|
||||||
|
DeleteDirectory(message.Series.Path);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -35,7 +35,9 @@ namespace NzbDrone.Core.Tv
|
||||||
List<Episode> EpisodesBetweenDates(DateTime start, DateTime end);
|
List<Episode> EpisodesBetweenDates(DateTime start, DateTime end);
|
||||||
}
|
}
|
||||||
|
|
||||||
public class EpisodeService : IEpisodeService, IHandle<EpisodeGrabbedEvent>
|
public class EpisodeService : IEpisodeService,
|
||||||
|
IHandle<EpisodeGrabbedEvent>,
|
||||||
|
IHandleAsync<SeriesDeletedEvent>
|
||||||
{
|
{
|
||||||
|
|
||||||
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
||||||
|
@ -371,5 +373,11 @@ namespace NzbDrone.Core.Tv
|
||||||
_episodeRepository.Update(episode);
|
_episodeRepository.Update(episode);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void HandleAsync(SeriesDeletedEvent message)
|
||||||
|
{
|
||||||
|
var episodes = GetEpisodeBySeries(message.Series.Id);
|
||||||
|
_episodeRepository.DeleteMany(episodes);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -6,10 +6,12 @@ namespace NzbDrone.Core.Tv.Events
|
||||||
public class SeriesDeletedEvent : IEvent
|
public class SeriesDeletedEvent : IEvent
|
||||||
{
|
{
|
||||||
public Series Series { get; private set; }
|
public Series Series { get; private set; }
|
||||||
|
public bool DeleteFiles { get; private set; }
|
||||||
|
|
||||||
public SeriesDeletedEvent(Series series)
|
public SeriesDeletedEvent(Series series, bool deleteFiles)
|
||||||
{
|
{
|
||||||
Series = series;
|
Series = series;
|
||||||
|
DeleteFiles = deleteFiles;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Binary file not shown.
|
@ -23,7 +23,7 @@ namespace NzbDrone.Core.Tv
|
||||||
void UpdateFromSeriesEditor(IList<Series> editedSeries);
|
void UpdateFromSeriesEditor(IList<Series> editedSeries);
|
||||||
Series FindByTvdbId(int tvdbId);
|
Series FindByTvdbId(int tvdbId);
|
||||||
void SetSeriesType(int seriesId, SeriesTypes seriesTypes);
|
void SetSeriesType(int seriesId, SeriesTypes seriesTypes);
|
||||||
void DeleteSeries(int seriesId);
|
void DeleteSeries(int seriesId, bool deleteFiles);
|
||||||
}
|
}
|
||||||
|
|
||||||
public class SeriesService : ISeriesService
|
public class SeriesService : ISeriesService
|
||||||
|
@ -167,11 +167,11 @@ namespace NzbDrone.Core.Tv
|
||||||
_seriesRepository.SetSeriesType(seriesId, seriesTypes);
|
_seriesRepository.SetSeriesType(seriesId, seriesTypes);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void DeleteSeries(int seriesId)
|
public void DeleteSeries(int seriesId, bool deleteFiles)
|
||||||
{
|
{
|
||||||
var series = _seriesRepository.Get(seriesId);
|
var series = _seriesRepository.Get(seriesId);
|
||||||
_seriesRepository.Delete(seriesId);
|
_seriesRepository.Delete(seriesId);
|
||||||
_eventAggregator.Publish(new SeriesDeletedEvent(series));
|
_eventAggregator.Publish(new SeriesDeletedEvent(series, deleteFiles));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue