2013-02-23 19:38:25 +00:00
|
|
|
|
using System;
|
|
|
|
|
using NzbDrone.Core.Datastore;
|
2013-09-14 06:36:07 +00:00
|
|
|
|
using NzbDrone.Core.Messaging.Events;
|
2013-09-11 06:33:47 +00:00
|
|
|
|
|
2013-02-23 19:38:25 +00:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Instrumentation
|
|
|
|
|
{
|
|
|
|
|
public interface ILogRepository : IBasicRepository<Log>
|
|
|
|
|
{
|
|
|
|
|
void Trim();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class LogRepository : BasicRepository<Log>, ILogRepository
|
|
|
|
|
{
|
2013-09-14 06:36:07 +00:00
|
|
|
|
public LogRepository(IDatabase database, IEventAggregator eventAggregator)
|
|
|
|
|
: base(database, eventAggregator)
|
2013-02-23 19:38:25 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Trim()
|
|
|
|
|
{
|
2013-08-30 05:20:41 +00:00
|
|
|
|
var trimDate = DateTime.UtcNow.AddDays(-7).Date;
|
2013-06-19 01:01:08 +00:00
|
|
|
|
Delete(c => c.Time <= trimDate);
|
2013-02-23 19:38:25 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|