Sha256: 99732a5b02d10728b61c06855cc51a97a3a1bf07e6ddb765564fccc7d1a47845

Contents?: true

Size: 1.3 KB

Versions: 1

Compression:

Stored size: 1.3 KB

Contents

module ActiveRecord
  module ActsAs
    module QueryMethods
      def where!(opts, *rest)
        if acting_as? && opts.is_a?(Hash)
          if table_name_opts = opts.delete(table_name)
            opts = opts.merge(table_name_opts)
          end

          # Filter out the conditions that should be applied to the `acting_as_model`, which are
          # those that neither target specific tables explicitly (where the condition value
          # is a hash or the condition key contains a dot) nor are attributes of the submodel.
          opts, acts_as_opts = opts.stringify_keys.partition do |k, v|
            v.is_a?(Hash) ||
            k =~ /\./     ||
            column_names.include?(k.to_s)
          end.map(&:to_h)

          if acts_as_opts.any?
            opts[acting_as_model.table_name] = acts_as_opts
          end
        end

        super opts, *rest
      end
    end

    module ScopeForCreate
      def scope_for_create(attributes = nil)
        scope = ActiveRecord.version.to_s.to_f >= 5.2 ? super(attributes) : where_values_hash
        if acting_as?
          scope.merge!(where_values_hash(acting_as_model.table_name))
        end
        scope.merge(create_with_value)
      end
    end
  end

  Relation.send(:prepend, ActsAs::QueryMethods)
  Relation.send(:prepend, ActsAs::ScopeForCreate)
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
active_record-acts_as-3.0.0 lib/active_record/acts_as/querying.rb