Project

logga

0.0
A long-lived project that still receives updates
Extensions to ActiveRecord to log entries on model changes
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 6, < 8
>= 6, < 8
 Project Readme

Logga

Provides attribute logging functionality to ActiveRecord objects.

Gem Version CI

Requirements

  • Ruby >= 3.0

Installation

Add this line to your application's Gemfile:

gem 'logga'

And then execute:

bundle

Or install it yourself as:

gem install logga

Usage

Add the following to your model:

class Thing < ApplicationRecord
  # Optional author accessor. See #author
  attr_accessor :author

  # Association to :log_entries, which the loggable object must response to for logging.
  has_many :log_entries, as: :loggable, dependent: :destroy

  add_log_entries_for(
    :create, # Log on object create
    :delete, # Log on object delete
    :update, # Log on object update
    allowed_fields: [], # set an array of fields allowed to be logged
    exclude_fields: [], # set an array of fields excluded from logging. Ignored if allowed_fields is set
    fields: {}, # Custom messages for fields. See #fields
    to: nil
  )
end

So that new LogEntry records attached to a given Thing instance will be created whenever a new one is created or modified.

Author

If you want to log the author of the changes you can do so by setting:

thing.author = { id: "1", name: "Barry", type: "User" }

Fields

You can override the default messages per field by using:

add_log_entries_for(
  :update,
  fields: {
    name: lambda { |record, field, old_value, new_value|
      "Name changed from #{old_value} to #{new_value}"
    }
  }
)

This is with the exeception on :created_at which only takes the created record.

add_log_entries_for(
  :create,
  fields: {
    created_at: lambda { |record|
      "Created object with id: #{record.id}"
    }
  }
)

Configuration

Add an initializer to your project:

Logga.configure do |config|
  config.enabled = true
  config.excluded_fields = [] # Default array of excluded fields i.e. [:id] to ignore all :id fields for every object
  config.excluded_suffixes = [] # Array of excluded suffixes i.e. [:_id] to ignore all fields that end in :_id for every object
end

For example:

Logga.configure do |config|
  config.excluded_fields = [:id] # Don't log any id changes
  config.excluded_suffixes = [_id] # Don't log any column that ends in _id
end

Development

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.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/boxt/logga.

License

The gem is available as open source under the terms of the MIT License.

TODOs

  • Improve the documentation
  • Add migration generator for :log_entries