Sha256: c465a00e5e1f3ed9bddd5db4a04027602288e96a8883f29f2f97fb96fe5dbb47

Contents?: true

Size: 1.82 KB

Versions: 156

Compression:

Stored size: 1.82 KB

Contents

module ActiveRecord
  module Associations
    class Preloader
      module ThroughAssociation #:nodoc:

        def through_reflection
          reflection.through_reflection
        end

        def source_reflection
          reflection.source_reflection
        end

        def associated_records_by_owner
          through_records = through_records_by_owner

          ActiveRecord::Associations::Preloader.new(
            through_records.values.flatten,
            source_reflection.name, options
          ).run

          through_records.each do |owner, records|
            records.map! { |r| r.send(source_reflection.name) }.flatten!
            records.compact!
          end
        end

        private

        def through_records_by_owner
          ActiveRecord::Associations::Preloader.new(
            owners, through_reflection.name,
            through_options
          ).run

          Hash[owners.map do |owner|
            through_records = Array.wrap(owner.send(through_reflection.name))

            # Dont cache the association - we would only be caching a subset
            if reflection.options[:source_type] && through_reflection.collection?
              owner.association(through_reflection.name).reset
            end

            [owner, through_records]
          end]
        end

        def through_options
          through_options = {}

          if options[:source_type]
            through_options[:conditions] = { reflection.foreign_type => options[:source_type] }
          else
            if options[:conditions]
              through_options[:include]    = options[:include] || options[:source]
              through_options[:conditions] = options[:conditions]
            end

            through_options[:order] = options[:order]
          end

          through_options
        end
      end
    end
  end
end

Version data entries

156 entries across 131 versions & 11 rubygems

Version Path
activerecord-3.2.10 lib/active_record/associations/preloader/through_association.rb
activerecord-3.1.9 lib/active_record/associations/preloader/through_association.rb
dirty_history-0.7.3 dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/preloader/through_association.rb
dirty_history-0.7.2 dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/preloader/through_association.rb
dirty_history-0.7.1 dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/preloader/through_association.rb
challah-rolls-0.2.0 vendor/bundle/gems/activerecord-3.2.8/lib/active_record/associations/preloader/through_association.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.0.pre/vendor/bundle/gems/activerecord-3.2.7/lib/active_record/associations/preloader/through_association.rb
challah-rolls-0.2.0 vendor/bundle/gems/activerecord-3.2.9/lib/active_record/associations/preloader/through_association.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/activerecord-3.2.9/lib/active_record/associations/preloader/through_association.rb
challah-rolls-0.2.0 vendor/bundle/gems/activerecord-3.2.7/lib/active_record/associations/preloader/through_association.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/activerecord-3.2.8/lib/active_record/associations/preloader/through_association.rb
challah-0.8.3 vendor/bundle/gems/activerecord-3.2.9/lib/active_record/associations/preloader/through_association.rb
challah-0.8.3 vendor/bundle/gems/activerecord-3.2.8/lib/active_record/associations/preloader/through_association.rb
dirty_history-0.7.0 dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/preloader/through_association.rb
activerecord-3.2.9 lib/active_record/associations/preloader/through_association.rb
activerecord-3.2.9.rc3 lib/active_record/associations/preloader/through_association.rb
activerecord-3.2.9.rc2 lib/active_record/associations/preloader/through_association.rb
activerecord-3.2.9.rc1 lib/active_record/associations/preloader/through_association.rb
dirty_history-0.6.7 dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/preloader/through_association.rb
dirty_history-0.6.6 dirty_history/ruby/1.9.1/gems/activerecord-3.1.1/lib/active_record/associations/preloader/through_association.rb