Sha256: ceb0a2fde34dcba73dc34b8a6ace84c989f9b8db172f1a49d0c981c6007912a6

Contents?: true

Size: 1.16 KB

Versions: 6

Compression:

Stored size: 1.16 KB

Contents

module Audited
  class Sweeper < ActiveModel::Observer
    observe Audited.audit_class

    def before(controller)
      self.controller = controller
      true
    end

    def after(controller)
      self.controller = nil
    end

    def before_create(audit)
      audit.user ||= current_user
      audit.remote_address = controller.try(:request).try(:ip)
    end

    def current_user
      controller.send(Audited.current_user_method) if controller.respond_to?(Audited.current_user_method, true)
    end

    def add_observer!(klass)
      super
      define_callback(klass)
    end

    def define_callback(klass)
      observer = self
      callback_meth = :"_notify_audited_sweeper"
      klass.send(:define_method, callback_meth) do
        observer.update(:before_create, self)
      end
      klass.send(:before_create, callback_meth)
    end

    def controller
      ::Audited.store[:current_controller]
    end

    def controller=(value)
      ::Audited.store[:current_controller] = value
    end
  end
end

if defined?(ActionController) and defined?(ActionController::Base)
  ActionController::Base.class_eval do
    around_filter Audited::Sweeper.instance
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
notifiably_audited-3.0.0 lib/audited/sweeper.rb
notifiably_audited-0.0.7 lib/audited/sweeper.rb
notifiably_audited-0.0.5 lib/audited/sweeper.rb
notifiably_audited-0.0.4 lib/audited/sweeper.rb
notifiably_audited-0.0.3 lib/audited/sweeper.rb
notifiably_audited-0.0.2 lib/audited/sweeper.rb