Frustrated with the other options for this, I wrote this gem to handle most basic audit logging for Mongoid. It is intended to be stupidly simple, and offers no fancy functionality.
Add this line to your application's Gemfile:
gem 'mongoid-audit_log'
And then execute:
$ bundle
Or install it yourself as:
$ gem install mongoid-audit_log
Include the Mongoid::AuditLog
module into your model.
class Model
include Mongoid::Document
include Mongoid::AuditLog
field :name
end
This will not enable logging by itself, only changes made within the block passed to the record method will be saved.
Mongoid::AuditLog.record do
Model.create!
end
If you want to log the user who made the change, pass that user to the record method:
Mongoid::AuditLog.record(current_user) do
Model.create!
end
A basic implementation in a Rails app might look something like:
class ApplicationController < ActionController::Base
around_filter :audit_log
def current_user
@current_user ||= User.find(session[:user_id])
end
private
def audit_log
Mongoid::AuditLog.record(current_user) do
yield
end
end
end
When an audited model is changed, it will create a record of the Mongoid::AuditLog::Entry
class.
Each class responds to some query methods:
Mongoid::AuditLog.record do
model = Model.create!
module.update_attributes(:name => 'model')
end
model.audit_log_entries.length == 2 # => true
model.audit_log_entries.first.create? # => true
model.audit_log_entries.first.update? # => false
model.audit_log_entries.first.destroy? # => false
model.audit_log_entries.second.create? # => false
model.audit_log_entries.second.update? # => true
model.audit_log_entries.second.destroy? # => false
# And on update you have the tracked changes
model.audit_log_entries.second.tracked_changes.should == { 'name' => [nil, 'model'] }
There are also some built-in scopes (examples from the tests):
create = Entry.create!(:action => :create, :created_at => 10.minutes.ago)
update = Entry.create!(:action => :update, :created_at => 5.minutes.ago)
destroy = Entry.create!(:action => :destroy, :created_at => 1.minutes.ago)
Entry.creates.to_a.should == [create]
Entry.updates.to_a.should == [update]
Entry.destroys.to_a.should == [destroy]
Entry.newest.to_a.should == [destroy, update, create]
end
You can access the attributes of the model saved on the Mongoid::AuditLog::Entry
.
They are saved on the document in the #model_attributes
, and include any changes in
the #tracked_changes
hash.
Examples:
Mongoid::AuditLog.record do
model = Model.create!(:name => 'foo bar')
end
model.audit_log_entries.length == 1 # => true
model.audit_log_entries.first.create? # => true
model.audit_log_entries.first.model_attributes # => {"name"=>"foo bar"}
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request