Sha256: d99251e0c972bf2cd0f4621d8af9b6a0024da4880d6bea760472bddd6ddc962a

Contents?: true

Size: 1018 Bytes

Versions: 9

Compression:

Stored size: 1018 Bytes

Contents

module ThinkingSphinx
  module ActiveRecord
    module HasManyAssociation
      def search(*args)
        options   = args.extract_options!
        options[:with] ||= {}
        options[:with].merge! default_filter
        
        args << options
        @reflection.klass.search(*args)
      end

      private
      
      def attribute_for_foreign_key
        foreign_key = @reflection.primary_key_name
        stack = [@reflection.options[:through]].compact
        
        @reflection.klass.define_indexes
        (@reflection.klass.sphinx_indexes || []).each do |index|
          attribute = index.attributes.detect { |attrib|
            attrib.columns.length == 1 &&
            attrib.columns.first.__name  == foreign_key.to_sym
          }
          return attribute unless attribute.nil?
        end
        
        raise "Missing Attribute for Foreign Key #{foreign_key}"
      end
      
      def default_filter
        {attribute_for_foreign_key.unique_name => @owner.id}
      end
    end
  end
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
thinking-sphinx-2.0.5 lib/thinking_sphinx/active_record/has_many_association.rb
thinking-sphinx-1.4.6 lib/thinking_sphinx/active_record/has_many_association.rb
sayso-thinking-sphinx-2.0.3.002 lib/thinking_sphinx/active_record/has_many_association.rb
sayso-thinking-sphinx-2.0.3.001 lib/thinking_sphinx/active_record/has_many_association.rb
thinking-sphinx-2.0.4 lib/thinking_sphinx/active_record/has_many_association.rb
thinking-sphinx-1.4.5 lib/thinking_sphinx/active_record/has_many_association.rb
thinking-sphinx-2.0.3 lib/thinking_sphinx/active_record/has_many_association.rb
thinking-sphinx-1.4.4 lib/thinking_sphinx/active_record/has_many_association.rb
thinking-sphinx-1.4.3 lib/thinking_sphinx/active_record/has_many_association.rb