Sha256: 6f2db805f3c89226a21a3316027843663252e30fe51b455afc5cdaa57b437d24
Contents?: true
Size: 1.78 KB
Versions: 2
Compression:
Stored size: 1.78 KB
Contents
module Fuzzily module Model # Needs fields: trigram, owner_type, owner_id, score # Needs index on [owner_type, trigram] and [owner_type, owner_id] def self.included(by) by.ancestors.include?(ActiveRecord::Base) or raise 'Not included in an ActiveRecord subclass' scope_method = ActiveRecord::VERSION::MAJOR == 2 ? :named_scope : :scope by.class_eval do return if class_variable_defined?(:@@fuzzily_trigram_model) belongs_to :owner, :polymorphic => true validates_presence_of :owner validates_uniqueness_of :trigram, :scope => [:owner_type, :owner_id] validates_length_of :trigram, :is => 3 validates_presence_of :score validates_presence_of :fuzzy_field send scope_method, :for_model, lambda { |model| { :conditions => { :owner_type => model.kind_of?(Class) ? model.name : model } }} send scope_method, :for_field, lambda { |field_name| { :conditions => { :fuzzy_field => field_name } }} send scope_method, :with_trigram, lambda { |trigrams| { :conditions => { :trigram => trigrams } }} class_variable_set(:@@fuzzily_trigram_model, true) end by.extend(ClassMethods) end module ClassMethods # options: # - model (mandatory) # - field (mandatory) # - limit (default 10) def matches_for(text, options = {}) options[:limit] ||= 10 self. scoped(:select => 'owner_id, owner_type, SUM(score) AS total_score'). scoped(:group => :owner_id). scoped(:order => 'total_score DESC'). scoped(:limit => options[:limit]). with_trigram(text.extend(String).trigrams). map(&:owner) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
fuzzily-0.2.0 | lib/fuzzily/model.rb |
fuzzily-0.1.0 | lib/fuzzily/model.rb |