disable model events for log repository

pull/4/head
kay.one 12 years ago
parent 99f269cd95
commit 6936f042f5

@ -106,7 +106,7 @@ namespace NzbDrone.Core.Datastore
} }
DataMapper.Insert(model); DataMapper.Insert(model);
_messageAggregator.PublishEvent(new ModelEvent<TModel>(model, ModelEvent<TModel>.RepositoryAction.Created)); PublishModelEvent(model, RepositoryAction.Created);
return model; return model;
} }
@ -193,5 +193,11 @@ namespace NzbDrone.Core.Datastore
.Execute(); .Execute();
} }
protected virtual void PublishModelEvent(TModel model, RepositoryAction action)
{
_messageAggregator.PublishEvent(new ModelEvent<TModel>(model, action));
}
} }
} }

@ -13,14 +13,13 @@ namespace NzbDrone.Core.Datastore.Events
Model = model; Model = model;
Action = action; Action = action;
} }
}
public enum RepositoryAction
public enum RepositoryAction {
{ Created = 1,
Created = 1, Updated = 2,
Updated = 2, Deleted = 3
Deleted = 3
}
} }

@ -23,5 +23,10 @@ namespace NzbDrone.Core.Instrumentation
var oldIds = Query.Where(c => c.Time < DateTime.Now.AddDays(-30).Date).Select(c => c.Id); var oldIds = Query.Where(c => c.Time < DateTime.Now.AddDays(-30).Date).Select(c => c.Id);
DeleteMany(oldIds); DeleteMany(oldIds);
} }
protected override void PublishModelEvent(Log model, Datastore.Events.RepositoryAction action)
{
//Don't publish log added events.
}
} }
} }
Loading…
Cancel
Save