Sha256: 9d5137fcd7a418a7d701d6203ab7a8169c974d68933ef35328f481a0dd208566
Contents?: true
Size: 1.67 KB
Versions: 2
Compression:
Stored size: 1.67 KB
Contents
module ActiveMetadata::Persistence::History def self.included(receiver) receiver.send :include, InstanceMethods end module InstanceMethods def save_history return if ActiveMetadata.skip_history? self.changes.each do |key, value| next if ActiveMetadata::CONFIG['history_skip_fields'].include?(key) || !change_is_valid_for_history?(value) ActiveMetadata::History.create! :value => value[1],:model_class => metadata_class, :model_id => metadata_id,:label => key.to_s, :created_by => current_user_id invalidate_history_cache_for key.to_s self.send(:send_notification, key, value[0], value[1], :history_message, current_user_id) unless skip_history_notification? end end def history_for field, order="created_at DESC" Rails.cache.fetch(history_cache_key(field), :expires_in => ActiveMetadata::CONFIG['cache_expires_in'].minutes) do fetch_histories_for field, order end end private def invalidate_history_cache_for field Rails.cache.delete history_cache_key(field) end def fetch_histories_for field, order ActiveMetadata::History.all(:conditions => {:model_class => metadata_class, :model_id => metadata_id,:label => field}, :order => order) end private # Private # # - change The change array coming from AR changes method # # Return false if chnage has the following aspect: # * [nil, nil] # * ["", nil] # * [nil, ""] def change_is_valid_for_history? change sanitized_change = change.dup.compact sanitized_change.empty? || (sanitized_change.size == 1 && sanitized_change[0].to_s.blank?) ? false : true end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
active_metadata-0.8.8 | lib/active_metadata/persistence/history.rb |
active_metadata-0.8.7.1 | lib/active_metadata/persistence/history.rb |