module Sunspot #:nodoc: module Rails #:nodoc: # # This module provides Sunspot Adapter implementations for ActiveRecord # models. # module Adapters class ActiveRecordInstanceAdapter < Sunspot::Adapters::InstanceAdapter # # Return the primary key for the adapted instance # # ==== Returns # # Integer:: Database ID of model # def id @instance.id end end class ActiveRecordDataAccessor < Sunspot::Adapters::DataAccessor # options for the find attr_accessor :include, :select def initialize(clazz) super(clazz) @inherited_attributes = [:include, :select] end # # Set the fields to select from the database. This will be passed # to ActiveRecord. # # ==== Parameters # # value:: String of comma-separated columns or array of columns # def select=(value) value = value.join(', ') if value.respond_to?(:join) @select = value end # # Get one ActiveRecord instance out of the database by ID # # ==== Parameters # # id:: Database ID of model to retreive # # ==== Returns # # ActiveRecord::Base:: ActiveRecord model # def load(id) @clazz.first(options_for_find.merge( :conditions => { @clazz.primary_key => id} )) end # # Get a collection of ActiveRecord instances out of the database by ID # # ==== Parameters # # ids:: Database IDs of models to retrieve # # ==== Returns # # Array:: Collection of ActiveRecord models # def load_all(ids) @clazz.all(options_for_find.merge( :conditions => { @clazz.primary_key => ids.map { |id| id }} )) end private def options_for_find options = {} options[:include] = @include unless @include.blank? options[:select] = @select unless @select.blank? options end end end end end