sequel-auditer is a Sequel plugin that logs changes made to an audited model, including who created, updated and destroyed the record, and what was changed and when the change was made.
This plugin provides model auditing (a.k.a: record versioning) for DB scenarios when DB triggers are not possible. (ie: on a web app on Heroku).
Add this line to your app's Gemfile:
gem 'sequel-auditer'
And then execute:
$ bundle
Or install it yourself as:
$ gem install sequel-auditer
In your apps Rakefile add the following:
load 'tasks/sequel-auditer/migrate.rake'
Then verify that the Rake task is available by calling:
bundle exec rake -T
which should output something like this:
....
rake auditer:migrate:install # Installs Sequel::auditer migration, but does not run it.
....
Run the sequel_audit rake task:
bundle exec rake auditer:migrate:install
After this you can comment out the rake task in your Rakefile until you need to update. And then
finally run db:migrate to update your DB.
bundle exec rake db:migrate
This gem will try to get user from warden based authentications. When available, auditer will be fetched from warden, otherwise global function will be fired.
SequelAuditer allows you to store 2 types of user data.
Modifier is who changed the data. This can be user itself, staff member or admins.
Resource owner respresents modified data's owner. This is usually an user. So, you can browse audit logs based on resource owner id and see who is the modifier. You need to specify user method in model like this:
plugin :auditer, additional_info: :additional_info, user_method: :global_user, owner_method: :owner_user
If you are using PostgreSQL as your database, then it's a good idea to convert the the changed
column to JSON type for automatic translations into a Ruby hash.
Otherwise, you have to use JSON.parse(@v.changed)
to convert it to a hash if and when you want
to use it.
Using this plugin is fairly simple and straight-forward. Just add it to the model you wish to have audits (versions) for.
# auditing single model
Post.plugin :auditer
# auditing all models. NOT RECOMMENDED!
Sequel::Model.plugin :auditer
By default this will audit / version all columns on the model, except the default ignored columns configured in Sequel::auditer.audited_default_ignored_columns
(see Configuration Options below).
# Given a Post model with these columns:
[:id, :category_id, :title, :body, :author_id, :created_at, :updated_at]
# Auditing all columns*
Post.plugin :auditer
#=> [:id, :category_id, :title, :body, :author_id] # audited columns
#=> [:created_at, :updated_at] # ignored columns
# Auditing a Single column
Post.plugin :auditer, only: [:title]
#=> [:title] # audited columns
#=> [:id, :category_id, :body, :author_id, :created_at, :updated_at] # ignored columns
# Auditing Multiple columns
Post.plugin :auditer, only: [:title, :body]
#=> [:title, :body] # audited columns
#=> [:id, :category_id, :author_id, :created_at, :updated_at] # ignored columns
NOTE! this option does NOT ignore the default ignored columns, so use with care.
# Auditing all columns except specified columns
Post.plugin :auditer, except: [:title]
#=> [:id, :category_id, :author_id, :created_at, :updated_at] # audited columns
#=> [:title] # ignored columns
Post.plugin :auditer, except: [:title, :author_id]
#=> [:id, :category_id, :created_at, :updated_at] # audited columns
#=> [:title, :author_id] # ignored columns
You have to look behind the curtain to see what this plugin actually does.
In a new clean DB...
When you create a new record like this:
Category.create(name: 'Sequel')
#<Category @values={
:id => 1,
:name => "Sequel",
:position => 1,
:created_at => <timestamp>,
:updated_at => nil
}>
# in the background a new row in DB[:audit_logs] has been added with the following info:
#<AuditLog @values={
:id => 1,
:associated_type => "Category",
:associated_id => 1,
:event => "create",
# NOTE! all filled values are stored.
:changed => "{\"id\":1,\"name\":\"Sequel\",\"created_at\":\"<timestamp>\"}",
:version => 1,
:modifier_id => 88,
:modifier_type => "User",
:additional_info => "",
:created_at => <timestamp>
}>
When you update a record like this:
cat.update(name: 'Ruby Sequel')
#<Category @values={
:id => 1,
:name => "Ruby Sequel",
:position => 1,
:created_at => <timestamp>,
:updated_at => <timestamp>
}>
# in the background a new row in DB[:audit_logs] has been added with the following info:
#<AuditLog @values={
:id => 2,
:associated_type => "Category",
:associated_id => 1,
:event => "update",
# NOTE! only the changes are stored
:changed => "{\"name\":[\"Sequel\",\"Ruby Sequel\"],\"updated_at\":\"<timestamp>\"}",
:version => 2,
:modifier_id => 88,
:modifier_type => "Staff",
:resource_owner_id => 70,
:resource_owner_type => "User",
:additional_info => "",
:created_at => <timestamp>
}>
When you delete a record like this:
cat.delete
# in the background a new row in DB[:audit_logs] is added with the info:
#<AuditLog @values={
:id => 3,
:associated_type => "Category",
:associated_id => 1,
:event => "destroy",
# NOTE! all values at exit time are stored
:changed => "{\"id\":1,\"name\":\"Ruby Sequel\",\"created_at\":\"<timestamp>\",\"updated_at\":\"<timestamp>\"}",
:version => 3,
:modifier_id => 88,
:modifier_type => "Staff",
:resource_owner_id => 70,
:resource_owner_type => "User",
:additional_info => "",
:created_at => <timestamp>
}>
This way you can easily track what was created, changed or deleted and who did it and when they did it.
sequel-auditer supports two forms of configurations:
Sets the name of the global method that provides the current user object.
Default is: :current_user
.
You can easily change the name of this method by calling:
Sequel::auditer.audited_current_user_method = :auditer_user
Note! the name of the function must be given as a symbol.
Note!! it will first try to hit the method on the model (i.e. Post) itself first. Then it will hit the global method.
So if you want to customize the modifier per model you can do that here.
Sets the name of the model name (association) that provides the resource owner object.
Default is: nil
.
You can easily change the name of this model by calling:
Sequel::auditer.auditer_resource_owner_method = :user
Note! the name of the function must be given as a symbol.
Note!! it will first try to hit the method on the model (i.e. Post) itself first. Then it will hit the global method.
So if you want to customize the modifier per model you can do that here.
Sets the name of the global method that provides the additional info object (Hash).
Default is: :additional_info
.
You can easily change the name of this method by calling:
Sequel::auditer.audited_additional_info_method = :additional_info
Note! the name of the function must be given as a symbol. Note!! method should return a Hash value.
Enables adding your own Audit model. Default is: :AuditLog
Sequel:: Audited.audited_model_name = :YourCustomModel
Note! the name of the model must be given as a symbol.
Toggle for enabling / disabling auditing throughout all audited models.
Default is: true
i.e: enabled.
An array of columns that are ignored by default. Default value is:
[:lock_version, :created_at, :updated_at, :created_on, :updated_on]
NOTE! :timestamps
related columns must be ignored or you may end up with situation
where an update triggers multiple copies of the record in the audit log.
# NOTE! array values must be given as symbols.
Sequel::auditer.audited_default_ignored_columns = [:id, :mycolumn, ...]
You can also set these settings on a per model setting by passing the following options:
This option will use a different method for the current user within this model only.
Example:
# if you have a global method like
def current_client
@current_client ||= Client[session[:client_id]]
end
# if you have a global method for info like
def additional_info
@additional_info ||= { ip: request.ip, user_agent: env['HTTP_USER_AGENT'] }
end
# and set
ClientProfile.plugin(:auditer, :user_method => :current_client, :additional_info => :additional_info)
# then the user info will be taken from DB[:clients].
#<Client @values={:id=>99,:username=>"happyclient"... }>
NOTE! the current user model must respond to :id
attributes.
This option allows you to set custom default ignored columns in the audited model. It's basically
just an option just-in-case, but it's probably better to use the :only => []
or :except => []
options instead (see Usage above).
You can easily track all changes made to a model / row / field(s) like this:
# check if model have any audits (only works on audited models)
Post.audited_versions?
#=> returns true / false if any audits have been made
# grab all audits for a particular model. Returns an array.
Post.audited_versions
#=> [
{ id: 1, associated_type: 'Post', associated_id: '11', version: 1,
changed: "{JSON SERIALIZED OBJECT}", modifier_id: 88,
username: "joeblogs", created_at: TIMESTAMP
},
{...}
]
# filtered by primary_key value
Posts.audited_versions(associated_id: 123)
# filtered by user :id value
Posts.audited_versions(modifier_id: 88)
# filtered to last two (2) days only
Posts.audited_versions(:created_at < Date.today - 2)
- Track all changes made by a user / modifier_group.
joe = User[88]
joe.audited_versions
#=> returns all audits made by joe
['SELECT * FROM `audit_logs` WHERE modifier_id = 88 ORDER BY created_at DESC']
joe.audited_versions(:associated_type => Post)
#=> returns all audits made by joe on the Post model
['SELECT * FROM `audit_logs` WHERE modifier_id = 88 AND associated_type = 'Post' ORDER BY created_at DESC']
When you active .plugin(:auditer)
in your model, you get these methods:
class Post < Sequel::Model
plugin :auditer # options here
end
# Returns this post's versions.
post.versions #=> []
-- aliased as: .last_audited_by
# Returns the user model of the user who last changed the record
post.blame
post.last_audited_by #=> User model
-- aliased as: .last_audited_on
# Returns the timestamp last changed the record
post.last_audited_at
post.last_audited_on #=> <timestamp>
# Returns the post (not a version) as it looked at around the the given timestamp.
post.version_at(timestamp)
# Returns the objects (not Versions) as they were between the given times.
post.versions_between(start_time, end_time)
# Returns the post (not a version) as it was most recently.
post.previous_version
# Returns the post (not a version) as it became next.
post.next_version
# Turn Audited on for all posts.
post.audited_on!
# Turn Audited off for all posts.
post.audited_off!
Not everything is perfect or fully formed, so this gem may be in need of the following:
-
It needs some stress testing and THREADS support & testing. Does the gem work in all situations / instances?
I really would appreciate the wisdom of someone with a good understanding of these type of things. Please help me ensure it's working great at all times.
-
It could probably be cleaned up and made more efficient by a much better programmer than me. Please feel free to provide some suggestions or pull-requests.
-
Solid testing and support for more DB's, other than PostgreSQL and SQLite3 currently tested against. Not a priority as I currently have no such requirements. Please feel free to submit a pull-request.
-
Testing for use with Rails, Sinatra or other Ruby frameworks. I don't see much issues here, but I'm NOT bothered to do this testing as Roda is my preferred Ruby framework. Please feel free to submit a pull-request.
-
Support for
:on => [:create, :update]
option to limit auditing to only some actions. Not sure if this is really worthwhile, but could be added as a feature. Please feel free to submit a pull-request. -
Support for sweeping (compacting) old updates if there are too many. Not sure how to handle this. Suggestions and ideas are most welcome.
I think a simple cron job could extract all records with
event: 'update'
older than a specific time period (3 - 6 months) and dump them into something else, instead of adding this feature.If you are running this on a free app on Heroku, with many and frequent updates, you might want to pay attention to this functionality as there's a 10,000 rows limit on Heroku.
After checking out the repo, run bin/setup
to install dependencies. Then, run rake test
to run
the tests. You can also run bin/console
for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run bundle exec rake install
. To release a new version,
update the version number in version.rb
, and then run bundle exec rake release
, which will create
a git tag for the version, push git commits and tags, and push the .gem
file to
rubygems.org.
Bug reports and pull requests are welcome on GitHub at https://github.com/jnylen/sequel-auditer.
Please run bundle exec rake coverage
and bundle exec rake rubocop
on your code before you
send a pull-request.
This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.
© Copyright Kematzy, 2015
© Copyright jnylen, 2017
© Copyright gencer, 2018-2019
Heavily inspired by:
-
the audited gem by Brandon Keepers, Kenneth Kalmer, Daniel Morrison, Brian Ryckbost, Steve Richert & Ryan Glover released under the MIT licence.
-
the paper_trail gem by Andy Stewart & Ben Atkins released under the MIT license.
-
the sequel gem by Jeremy Evans and many others released under the MIT license.
The gem is available as open source under the terms of the MIT License.