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.
|
|
|
|
using System.Linq;
|
|
|
|
|
using System;
|
|
|
|
|
using NLog;
|
|
|
|
|
using NzbDrone.Core.Model.Notification;
|
|
|
|
|
using NzbDrone.Core.Providers;
|
|
|
|
|
using NzbDrone.Core.Providers.Converting;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Jobs
|
|
|
|
|
{
|
|
|
|
|
public class CleanupRecycleBinJob : IJob
|
|
|
|
|
{
|
|
|
|
|
private readonly RecycleBinProvider _recycleBinProvider;
|
|
|
|
|
|
|
|
|
|
public CleanupRecycleBinJob(RecycleBinProvider recycleBinProvider)
|
|
|
|
|
{
|
|
|
|
|
_recycleBinProvider = recycleBinProvider;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Name
|
|
|
|
|
{
|
|
|
|
|
get { return "Cleanup Recycle Bin"; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public TimeSpan DefaultInterval
|
|
|
|
|
{
|
|
|
|
|
get { return TimeSpan.FromDays(24); }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Start(ProgressNotification notification, dynamic options)
|
|
|
|
|
{
|
|
|
|
|
_recycleBinProvider.Cleanup();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|