Sha256: 0b1c463a3a61746b7e4e3ad99b5a890122c9ad95b31a861fac5e8cb90aae5014

Contents?: true

Size: 1.47 KB

Versions: 17

Compression:

Stored size: 1.47 KB

Contents

# frozen_string_literal: true

module ActiveRecord
  # = Active Record No Touching
  module NoTouching
    extend ActiveSupport::Concern

    module ClassMethods
      # Lets you selectively disable calls to +touch+ for the
      # duration of a block.
      #
      # ==== Examples
      #   ActiveRecord::Base.no_touching do
      #     Project.first.touch  # does nothing
      #     Message.first.touch  # does nothing
      #   end
      #
      #   Project.no_touching do
      #     Project.first.touch  # does nothing
      #     Message.first.touch  # works, but does not touch the associated project
      #   end
      #
      def no_touching(&block)
        NoTouching.apply_to(self, &block)
      end
    end

    class << self
      def apply_to(klass) #:nodoc:
        klasses.push(klass)
        yield
      ensure
        klasses.pop
      end

      def applied_to?(klass) #:nodoc:
        klasses.any? { |k| k >= klass }
      end

      private
        def klasses
          Thread.current[:no_touching_classes] ||= []
        end
    end

    # Returns +true+ if the class has +no_touching+ set, +false+ otherwise.
    #
    #   Project.no_touching do
    #     Project.first.no_touching? # true
    #     Message.first.no_touching? # false
    #   end
    #
    def no_touching?
      NoTouching.applied_to?(self.class)
    end

    def touch_later(*) # :nodoc:
      super unless no_touching?
    end

    def touch(*) # :nodoc:
      super unless no_touching?
    end
  end
end

Version data entries

17 entries across 17 versions & 4 rubygems

Version Path
activerecord-6.0.2.2 lib/active_record/no_touching.rb
argon-1.3.1 vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/no_touching.rb
symbolic_enum-1.1.5 vendor/bundle/ruby/2.7.0/gems/activerecord-6.0.2.1/lib/active_record/no_touching.rb
activerecord-6.0.2.1 lib/active_record/no_touching.rb
activerecord-6.0.2 lib/active_record/no_touching.rb
activerecord-6.0.2.rc2 lib/active_record/no_touching.rb
activerecord-6.0.2.rc1 lib/active_record/no_touching.rb
activerecord-6.0.1 lib/active_record/no_touching.rb
chatops-rpc-0.0.2 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/activerecord-6.0.0/lib/active_record/no_touching.rb
activerecord-6.0.1.rc1 lib/active_record/no_touching.rb
chatops-rpc-0.0.1 fixtures/chatops-controller-example/vendor/bundle/ruby/2.5.0/gems/activerecord-6.0.0/lib/active_record/no_touching.rb
activerecord-6.0.0 lib/active_record/no_touching.rb
activerecord-6.0.0.rc2 lib/active_record/no_touching.rb
activerecord-6.0.0.rc1 lib/active_record/no_touching.rb
activerecord-6.0.0.beta3 lib/active_record/no_touching.rb
activerecord-6.0.0.beta2 lib/active_record/no_touching.rb
activerecord-6.0.0.beta1 lib/active_record/no_touching.rb