Sha256: fdc3d83ffe941c1afc716edd33f8bad01ddcf03b39b1a213046c4d3aee6b9ca8

Contents?: true

Size: 1.91 KB

Versions: 5

Compression:

Stored size: 1.91 KB

Contents

module ActsAsTaggableOn::Taggable::TaggedWithQuery
  class QueryBase
    def initialize(taggable_model, tag_model, tagging_model, tag_list, options)
      @taggable_model = taggable_model
      @tag_model      = tag_model
      @tagging_model  = tagging_model
      @tag_list       = tag_list
      @options        = options
    end

    private

    attr_reader :taggable_model, :tag_model, :tagging_model, :tag_list, :options

    def taggable_arel_table
      @taggable_arel_table ||= taggable_model.arel_table
    end

    def tag_arel_table
      @tag_arel_table ||= tag_model.arel_table
    end

    def tagging_arel_table
      @tagging_arel_table ||=tagging_model.arel_table
    end

    def tag_match_type(tag)
      matches_attribute = tag_arel_table[:name]
      matches_attribute = matches_attribute.lower unless ActsAsTaggableOn.strict_case_match

      if options[:wild].present?
        matches_attribute.matches("%#{escaped_tag(tag)}%", "!", ActsAsTaggableOn.strict_case_match)
      else
        matches_attribute.matches(escaped_tag(tag), "!", ActsAsTaggableOn.strict_case_match)
      end
    end

    def tags_match_type
      matches_attribute = tag_arel_table[:name]
      matches_attribute = matches_attribute.lower unless ActsAsTaggableOn.strict_case_match

      if options[:wild].present?
        matches_attribute.matches_any(tag_list.map{|tag| "%#{escaped_tag(tag)}%"}, "!", ActsAsTaggableOn.strict_case_match)
      else
        matches_attribute.matches_any(tag_list.map{|tag| "#{escaped_tag(tag)}"}, "!", ActsAsTaggableOn.strict_case_match)
      end
    end

    def escaped_tag(tag)
      tag = tag.downcase unless ActsAsTaggableOn.strict_case_match
      ActsAsTaggableOn::Utils.escape_like(tag)
    end

    def adjust_taggings_alias(taggings_alias)
      if taggings_alias.size > 75
        taggings_alias = 'taggings_alias_' + Digest::SHA1.hexdigest(taggings_alias)
      end
      taggings_alias
    end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
acts-as-taggable-on-fix-8.1.1 lib/acts_as_taggable_on/taggable/tagged_with_query/query_base.rb
acts-as-taggable-on-fix-8.1.0 lib/acts_as_taggable_on/taggable/tagged_with_query/query_base.rb
acts-as-taggable-on-8.1.0 lib/acts_as_taggable_on/taggable/tagged_with_query/query_base.rb
acts-as-taggable-on-8.0.0 lib/acts_as_taggable_on/taggable/tagged_with_query/query_base.rb
acts-as-taggable-on-7.0.0 lib/acts_as_taggable_on/taggable/tagged_with_query/query_base.rb