class ChewyQuery::Builder::Nodes::Regexp

Constants

FLAGS

Public Class Methods

new(name, regexp, *args) click to toggle source
# File lib/chewy_query/builder/nodes/regexp.rb, line 7
def initialize(name, regexp, *args)
  @name = name.to_s
  @regexp = regexp.respond_to?(:source) ? regexp.source : regexp.to_s
  @options = args.extract_options!

  if args.any? || @options[:flags].present?
    @options[:flags] = FLAGS & (args.any? ? args.flatten : @options[:flags]).map(&:to_s).map(&:downcase)
  end
end

Public Instance Methods

__render__() click to toggle source
# File lib/chewy_query/builder/nodes/regexp.rb, line 17
def __render__
  body = @options[:flags] ?
    { value: @regexp, flags: @options[:flags].map(&:to_s).map(&:upcase).uniq.join('|') } : @regexp

  filter = { @name => body }

  if @options.key?(:cache)
    filter[:_cache] = !!@options[:cache]
    filter[:_cache_key] = @options[:cache].is_a?(TrueClass) || @options[:cache].is_a?(FalseClass) ?
      @regexp.underscore : @options[:cache]
  end
  { regexp: filter }
end