Sha256: 3831eef39ea84f78906f2570cd3b027f12feca3f0a6fe0a5538886fb69d32b97

Contents?: true

Size: 1.34 KB

Versions: 1

Compression:

Stored size: 1.34 KB

Contents

module ActsAsTokenizable
  require 'acts_as_tokenizable/string_extensions'
  
  # default to_token method. needs to have a "name" property on the object.
  # override for more complex token generation
  def to_token
    raise NoMethodError.new("You must redefine to_token in your model. Example: self.name.to_token()")
  end
  
  #makes self.token=self.to_token, in a convoluted way
  def tokenize
    self.send("#{self.class.token_field_name}=", self.to_token)
  end
  
  module ClassMethods
    attr_accessor :token_field_name
    
    # search_token parameter is used by tokenized_by. This function allows for preparation
    # before tokenized_by function is invoked. Usually this means removing
    # stop words, replacing words.
    # By default it tokenizes each word and removes duplicates.
    def prepare_search_token(search_token)
      search_token.words_to_token
    end
  end
  
  def self.included(base)
    base.class_eval do
      extend ClassMethods
      
      named_scope :tokenized_by, lambda {|search_token|
        search_strings = []
        search_values = []
        prepare_search_token(search_token).words.each do |w|
          search_strings.push("#{table_name}.#{token_field_name} LIKE ?")
          search_values.push("%#{w}%")
        end
        {:conditions => [search_strings.join(' AND '), *search_values]}
      }
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
acts_as_tokenizable-0.3.2 lib/acts_as_tokenizable/acts_as_tokenizable.rb