Module: Mongoid::Criteria::Findable
- Included in:
- Mongoid::Criteria
- Defined in:
- lib/mongoid/criteria/findable.rb
Instance Method Summary collapse
-
#execute_or_raise(ids, multi) ⇒ Document | Array<Document>
Execute the criteria or raise an error if no documents found.
-
#find(*args) ⇒ Document | Array<Document>
Find the matching document(s) in the criteria for the provided id(s).
-
#for_ids(ids) ⇒ Criteria
Adds a criterion to the
Criteria
that specifies an id that must be matched. -
#multiple_from_db(ids) ⇒ Array<Document>
Get the documents from the identity map, and if not found hit the database.
Instance Method Details
#execute_or_raise(ids, multi) ⇒ Document | Array<Document>
Execute the criteria or raise an error if no documents found.
18 19 20 21 22 |
# File 'lib/mongoid/criteria/findable.rb', line 18 def execute_or_raise(ids, multi) result = multiple_from_db(ids) check_for_missing_documents!(result, ids) multi ? result : result.first end |
#find(*args) ⇒ Document | Array<Document>
Note:
Each argument can be an individual id, an array of ids or a nested array. Each array will be flattened.
Find the matching document(s) in the criteria for the provided id(s).
38 39 40 41 42 |
# File 'lib/mongoid/criteria/findable.rb', line 38 def find(*args) ids = args.__find_args__ raise_invalid if ids.any?(&:nil?) for_ids(ids).execute_or_raise(ids, args.multi_arged?) end |
#for_ids(ids) ⇒ Criteria
Adds a criterion to the Criteria
that specifies an id that must be matched.
55 56 57 58 59 60 61 62 |
# File 'lib/mongoid/criteria/findable.rb', line 55 def for_ids(ids) ids = mongoize_ids(ids) if ids.size > 1 send(id_finder, { _id: { "$in" => ids }}) else send(id_finder, { _id: ids.first }) end end |
#multiple_from_db(ids) ⇒ Array<Document>
Get the documents from the identity map, and if not found hit the database.
73 74 75 76 77 |
# File 'lib/mongoid/criteria/findable.rb', line 73 def multiple_from_db(ids) return entries if ids = mongoize_ids(ids) ids.empty? ? [] : from_database(ids) end |