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.
59 lines
1.8 KiB
59 lines
1.8 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using NLog;
|
|
using NzbDrone.Core.Repository;
|
|
using NzbDrone.Core.Repository.Quality;
|
|
using SubSonic.Repository;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public class HistoryProvider
|
|
{
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
private readonly IRepository _sonicRepo;
|
|
|
|
public HistoryProvider(IRepository sonicRepo)
|
|
{
|
|
_sonicRepo = sonicRepo;
|
|
}
|
|
|
|
public HistoryProvider()
|
|
{
|
|
}
|
|
|
|
public virtual IQueryable<History> AllItems()
|
|
{
|
|
return _sonicRepo.All<History>();
|
|
}
|
|
|
|
public virtual void Purge()
|
|
{
|
|
_sonicRepo.DeleteMany(AllItems());
|
|
Logger.Info("History has been Purged");
|
|
}
|
|
|
|
public virtual void Trim()
|
|
{
|
|
var old = AllItems().Where(h => h.Date < DateTime.Now.AddDays(-30));
|
|
_sonicRepo.DeleteMany(old);
|
|
Logger.Info("History has been trimmed, items older than 30 days have been removed");
|
|
}
|
|
|
|
public virtual void Insert(History item)
|
|
{
|
|
_sonicRepo.Add(item);
|
|
Logger.Debug("Item added to history: {0} - {1}x{2:00}", item.Episode.Series.Title, item.Episode.SeasonNumber, item.Episode.EpisodeNumber);
|
|
}
|
|
|
|
public virtual bool Exists(int episodeId, QualityTypes quality, bool proper)
|
|
{
|
|
//Looks for the existence of this episode in History
|
|
if (_sonicRepo.Exists<History>(h => h.EpisodeId == episodeId && h.Quality == quality && h.IsProper == proper))
|
|
return true;
|
|
|
|
Logger.Debug("Episode not in History. ID:{0} Q:{1} Proper:{2}", episodeId , quality, proper);
|
|
return false;
|
|
}
|
|
}
|
|
} |