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.
25 lines
589 B
25 lines
589 B
using System;
|
|
using System.Linq;
|
|
using NzbDrone.Core.Datastore;
|
|
|
|
namespace NzbDrone.Core.Instrumentation
|
|
{
|
|
public interface ILogRepository : IBasicRepository<Log>
|
|
{
|
|
void Trim();
|
|
}
|
|
|
|
public class LogRepository : BasicRepository<Log>, ILogRepository
|
|
{
|
|
public LogRepository(IObjectDatabase objectDatabase)
|
|
: base(objectDatabase)
|
|
{
|
|
}
|
|
|
|
public void Trim()
|
|
{
|
|
var oldIds = Queryable.Where(c => c.Time < DateTime.Now.AddDays(-30).Date).Select(c => c.Id);
|
|
DeleteMany(oldIds);
|
|
}
|
|
}
|
|
} |