Class: Mongoid::Criteria::Queryable::Key

Inherits:
Object
  • Object
show all
Defined in:
build/mongoid-7.3/lib/mongoid/criteria/queryable/key.rb

Overview

Key objects represent specifications for building query expressions utilizing MongoDB selectors.

Simple key-value conditions are translated directly into expression hashes by Mongoid without utilizing Key objects. For example, the following condition:

Foo.where(price: 1)

… is translated to the following simple expression:

{price: 1}

More complex conditions would start involving Key objects. For example:

Foo.where(:price.gt => 1)

… causes a Key instance to be created thusly:

Key.new(:price, :__override__, '$gt')

This Key instance utilizes operator but not expanded nor block. The corresponding MongoDB query expression is:

{price: {'$gt' => 1}}

A yet more more complex example is the following condition:

Foo.geo_spatial(:boundary.intersects_point => [1, 10])

Processing this condition will cause a Key instance to be created as follows:

Key.new(:location, :__override__, '$geoIntersects', '$geometry') do |value|
  { "type" => POINT, "coordinates" => value }
end

… eventually producing the following MongoDB query expression:

{

boundary: {
  '$geoIntersects' => {
    '$geometry' => {
      type: "Point" ,
      coordinates: [ 1, 10 ]
    }
  }
}

}

Key instances can be thought of as procs that map a value to the MongoDB query expression required to obtain the key’s condition, given the value.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, strategy, operator, expanded = nil, &block) ⇒ Key

Instantiate the new key.

Examples:

Instantiate a key.

Key.new("age", :__override__, "$gt")

Instantiate a key for sorting.

Key.new(:field, :__override__, 1)

Parameters:

  • name (String, Symbol)

    The field name.

  • strategy (Symbol)

    The name of the merge strategy.

  • operator (String | Integer)

    The MongoDB operator, or sort direction (1 or -1).

  • expanded (String) (defaults to: nil)

    The Mongo expanded operator.

Since:

  • 1.0.0



119
120
121
122
123
124
125
126
# File 'build/mongoid-7.3/lib/mongoid/criteria/queryable/key.rb', line 119

def initialize(name, strategy, operator, expanded = nil, &block)
  unless operator.is_a?(String) || operator.is_a?(Integer)
    raise ArgumentError, "Operator must be a string or an integer: #{operator.inspect}"
  end

  @name, @strategy, @operator, @expanded, @block =
    name, strategy, operator, expanded, block
end

Instance Attribute Details

#blockProc (readonly)

Returns The optional block to transform values.

Returns:

  • (Proc)

    The optional block to transform values.



76
77
78
# File 'build/mongoid-7.3/lib/mongoid/criteria/queryable/key.rb', line 76

def block
  @block
end

#expandedString (readonly)

Returns The MongoDB expanded query operator.

Returns:

  • (String)

    The MongoDB expanded query operator.



70
71
72
# File 'build/mongoid-7.3/lib/mongoid/criteria/queryable/key.rb', line 70

def expanded
  @expanded
end

#nameString | Symbol (readonly)

Returns The name of the field.

Returns:

  • (String | Symbol)

    The name of the field.



64
65
66
# File 'build/mongoid-7.3/lib/mongoid/criteria/queryable/key.rb', line 64

def name
  @name
end

#operatorString (readonly)

Returns The MongoDB query operator.

Returns:

  • (String)

    The MongoDB query operator.



67
68
69
# File 'build/mongoid-7.3/lib/mongoid/criteria/queryable/key.rb', line 67

def operator
  @operator
end

#strategySymbol (readonly)

Returns The name of the merge strategy.

Returns:

  • (Symbol)

    The name of the merge strategy.



73
74
75
# File 'build/mongoid-7.3/lib/mongoid/criteria/queryable/key.rb', line 73

def strategy
  @strategy
end

Instance Method Details

#==(other) ⇒ true, false Also known as: eql?

Does the key equal another object?

Examples:

Is the key equal to another?

key == other
key.eql? other

Parameters:

  • other (Object)

    The object to compare to.

Returns:

  • (true, false)

    If the objects are equal.

Since:

  • 1.0.0



89
90
91
92
# File 'build/mongoid-7.3/lib/mongoid/criteria/queryable/key.rb', line 89

def ==(other)
  return false unless other.is_a?(Key)
  name == other.name && operator == other.operator && expanded == other.expanded
end

#__expr_part__(object, negating = false) ⇒ Hash

Gets the raw selector that would be passed to Mongo from this key.

Examples:

Specify the raw selector.

key.__expr_part__(50)

Parameters:

  • object (Object)

    The value to be included.

  • negating (true, false) (defaults to: false)

    If the selection should be negated.

Returns:

  • (Hash)

    The raw MongoDB selector.

Since:

  • 1.0.0



139
140
141
# File 'build/mongoid-7.3/lib/mongoid/criteria/queryable/key.rb', line 139

def __expr_part__(object, negating = false)
  { name.to_s => transform_value(object, negating) }
end

#__sort_option__Hash Also known as: __sort_pair__

Get the key as raw Mongo sorting options.

Examples:

Get the key as a sort.

key.__sort_option__

Returns:

  • (Hash)

    The field/direction pair.

Since:

  • 1.0.0



171
172
173
# File 'build/mongoid-7.3/lib/mongoid/criteria/queryable/key.rb', line 171

def __sort_option__
  { name => operator }
end

#hashFixnum

Calculate the hash code for a key.

Returns:

  • (Fixnum)

    The hash code for the key.

Since:

  • 1.1.0



100
101
102
# File 'build/mongoid-7.3/lib/mongoid/criteria/queryable/key.rb', line 100

def hash
  [name, operator, expanded].hash
end

#to_sString

Convert the key to a string.

Examples:

Convert the key to a string.

key.to_s

Returns:

  • (String)

    The key as a string.

Since:

  • 1.1.0



184
185
186
# File 'build/mongoid-7.3/lib/mongoid/criteria/queryable/key.rb', line 184

def to_s
  @name.to_s
end

#transform_value(value, negating = false) ⇒ Object



143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# File 'build/mongoid-7.3/lib/mongoid/criteria/queryable/key.rb', line 143

def transform_value(value, negating = false)
  if block
    expr = block[value]
  else
    expr = value
  end

  if expanded
    expr = {expanded => expr}
  end

  expr = {operator => expr}

  if negating && operator != '$not'
    expr = {'$not' => expr}
  end

  expr
end