Sha256: b4b5a60bd2877fd663c61532a6da8e584cf4d5f27a559b0f4201c0e8da8baab3

Contents?: true

Size: 1.1 KB

Versions: 5

Compression:

Stored size: 1.1 KB

Contents

module Lockdown
  module Model
    def self.included(base)
      base.send :include, Lockdown::Model::InstanceMethods
    end

    module InstanceMethods
      def self.included(base)
        base.class_eval do
          alias_method :create_without_stamps,  :create
          alias_method :create,  :create_with_stamps
          alias_method :update_without_stamps,  :update
          alias_method :update,  :update_with_stamps
        end
      end

      def current_profile_id
        Thread.current[:profile_id]
      end


      def create_with_stamps
        profile_id = current_profile_id || Profile::SYSTEM
        self[:created_by] = profile_id if self.respond_to?(:created_by) 
        self[:updated_by] = profile_id if self.respond_to?(:updated_by) 
        create_without_stamps
      end
                  
      def update_with_stamps
        profile_id = current_profile_id || Profile::SYSTEM
        self[:updated_by] = profile_id if self.respond_to?(:updated_by)
        update_without_stamps
      end
    end # InstanceMethods
  end # Model
end # Lockdown

Lockdown.orm_parent.send :include, Lockdown::Model

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
lockdown-0.3.13 lib/lockdown/model.rb
lockdown-0.3.12 lib/lockdown/model.rb
lockdown-0.3.14 lib/lockdown/model.rb
lockdown-0.3.15 lib/lockdown/model.rb
lockdown-0.4.0 lib/lockdown/model.rb