Module: Mongoid::Contextual::Aggregable::Mongo
- Included in:
- Mongo
- Defined in:
- lib/mongoid/contextual/aggregable/mongo.rb
Overview
Contains behaviour for aggregating values in Mongo.
Instance Method Summary collapse
-
#aggregates(field) ⇒ Hash
Get all the aggregate values for the provided field.
-
#avg(field) ⇒ Float
Get the average value of the provided field.
-
#max(field = nil) ⇒ Float, Document
Get the max value of the provided field.
-
#min(field = nil) ⇒ Float, Document
Get the min value of the provided field.
-
#sum(field = nil) ⇒ Float
Get the sum value of the provided field.
Instance Method Details
#aggregates(field) ⇒ Hash
Get all the aggregate values for the provided field.
25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/mongoid/contextual/aggregable/mongo.rb', line 25 def aggregates(field) if query.count > 0 result = collection.aggregate(pipeline(field)).to_a if result.empty? { "count" => query.count, "avg" => 0, "sum" => 0 } else result.first end else { "count" => 0 } end end |
#avg(field) ⇒ Float
Get the average value of the provided field.
48 49 50 |
# File 'lib/mongoid/contextual/aggregable/mongo.rb', line 48 def avg(field) aggregates(field)["avg"] end |
#max(field = nil) ⇒ Float, Document
Get the max value of the provided field. If provided a block, will return the Document with the greatest value for the field, in accordance with Ruby’s enumerable API.
70 71 72 |
# File 'lib/mongoid/contextual/aggregable/mongo.rb', line 70 def max(field = nil) block_given? ? super() : aggregates(field)["max"] end |
#min(field = nil) ⇒ Float, Document
Get the min value of the provided field. If provided a block, will return the Document with the smallest value for the field, in accordance with Ruby’s enumerable API.
92 93 94 |
# File 'lib/mongoid/contextual/aggregable/mongo.rb', line 92 def min(field = nil) block_given? ? super() : aggregates(field)["min"] end |
#sum(field = nil) ⇒ Float
Get the sum value of the provided field. If provided a block, will return the sum in accordance with Ruby’s enumerable API.
110 111 112 |
# File 'lib/mongoid/contextual/aggregable/mongo.rb', line 110 def sum(field = nil) block_given? ? super() : aggregates(field)["sum"] || 0 end |