Class: MongoMapper::FinderOptions

Inherits:
Object
  • Object
show all
Defined in:
lib/mongomapper/finder_options.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ FinderOptions

Returns a new instance of FinderOptions.

Raises:

  • (ArgumentError)


36
37
38
39
40
# File 'lib/mongomapper/finder_options.rb', line 36

def initialize(options)
  raise ArgumentError, "FinderOptions must be a hash" unless options.is_a?(Hash)
  @options = options.symbolize_keys
  @conditions = @options.delete(:conditions) || {}
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



3
4
5
# File 'lib/mongomapper/finder_options.rb', line 3

def options
  @options
end

Class Method Details

.to_mongo_criteria(conditions, parent_key = nil) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/mongomapper/finder_options.rb', line 5

def self.to_mongo_criteria(conditions, parent_key=nil)
  criteria = {}
  conditions.each_pair do |field, value|
    case value
      when Array
        operator_present = field.to_s =~ /^\$/            
        criteria[field] = if operator_present
                            value
                          else
                            {'$in' => value}
                          end
      when Hash
        criteria[field] = to_mongo_criteria(value, field)
      else            
        criteria[field] = value
    end
  end
  
  criteria
end

.to_mongo_options(options) ⇒ Object



26
27
28
29
30
31
32
33
34
# File 'lib/mongomapper/finder_options.rb', line 26

def self.to_mongo_options(options)
  options = options.dup
  {
    :fields => to_mongo_fields(options.delete(:fields) || options.delete(:select)),
    :offset => (options.delete(:offset) || 0).to_i,
    :limit  => (options.delete(:limit) || 0).to_i,
    :sort   => options.delete(:sort) || to_mongo_sort(options.delete(:order))
  }
end

Instance Method Details

#criteriaObject



42
43
44
# File 'lib/mongomapper/finder_options.rb', line 42

def criteria
  self.class.to_mongo_criteria(@conditions)
end

#to_aObject



50
51
52
# File 'lib/mongomapper/finder_options.rb', line 50

def to_a
  [criteria, options]
end