Sha256: 81f2f067eebac5113f0fd0fda2aaa140cd82c671674e56865516ca0a99af1581

Contents?: true

Size: 1.13 KB

Versions: 4

Compression:

Stored size: 1.13 KB

Contents

require 'active_support/core_ext/object' # provides the `try` method

module PaperTrail
  module Sinatra

    # Register this module inside your Sinatra application to gain access to
    # controller-level methods used by PaperTrail.
    def self.registered(app)
      app.use RequestStore::Middleware
      app.helpers self
      app.before { set_paper_trail_whodunnit }
    end

    protected

    # Returns the user who is responsible for any changes that occur.
    # By default this calls `current_user` and returns the result.
    #
    # Override this method in your controller to call a different
    # method, e.g. `current_person`, or anything you like.
    def user_for_paper_trail
      return unless defined?(current_user)
      ActiveSupport::VERSION::MAJOR >= 4 ? current_user.try!(:id) : current_user.try(:id)
    rescue NoMethodError
      current_user
    end

    private

    # Tells PaperTrail who is responsible for any changes that occur.
    def set_paper_trail_whodunnit
      ::PaperTrail.whodunnit = user_for_paper_trail if ::PaperTrail.enabled?
    end

  end

  ::Sinatra.register PaperTrail::Sinatra if defined?(::Sinatra)
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
paper_trail-4.2.0 lib/paper_trail/frameworks/sinatra.rb
paper_trail-4.1.0 lib/paper_trail/frameworks/sinatra.rb
paper_trail-4.0.2 lib/paper_trail/frameworks/sinatra.rb
paper_trail-4.0.1 lib/paper_trail/frameworks/sinatra.rb