Sha256: 8ca068c0bd6c334569c98d94a5a233982431e76abfe491c7885a0c20af63a428
Contents?: true
Size: 1.95 KB
Versions: 9
Compression:
Stored size: 1.95 KB
Contents
# frozen_string_literal: true class ThinkingSphinx::ActiveRecord::Interpreter < ::ThinkingSphinx::Core::Interpreter def define_source(&block) @source = @index.append_source instance_eval &block end def group_by(*columns) __source.groupings += columns end def has(*columns) build_properties( ::ThinkingSphinx::ActiveRecord::Attribute, columns ).each { |attribute| __source.add_attribute attribute } end def indexes(*columns) build_properties( ::ThinkingSphinx::ActiveRecord::Field, columns ).each { |field| __source.add_field field } end def join(*columns) __source.associations += columns.collect { |column| ::ThinkingSphinx::ActiveRecord::Association.new column } end def polymorphs(column, options) __source.polymorphs << ::ThinkingSphinx::ActiveRecord::Polymorpher.new( __source, column, options[:to] ) end def sanitize_sql(*arguments) __source.model.send :sanitize_sql, *arguments end def set_database(hash_or_key) configuration = hash_or_key.is_a?(::Hash) ? hash_or_key : ::ActiveRecord::Base.configurations[hash_or_key.to_s] __source.set_database_settings configuration.symbolize_keys end def set_property(properties) properties.each do |key, value| @index.send("#{key}=", value) if @index.class.settings.include?(key) __source.send("#{key}=", value) if __source.class.settings.include?(key) __source.options[key] = value if source_option?(key) @index.options[key] = value if search_option?(key) end end def where(*conditions) __source.conditions += conditions end private def __source @source ||= @index.append_source end def build_properties(klass, columns) options = columns.extract_options! columns.collect { |column| klass.new(__source.model, column, options) } end def source_option?(key) ::ThinkingSphinx::ActiveRecord::SQLSource::OPTIONS.include?(key) end end
Version data entries
9 entries across 9 versions & 1 rubygems