Module: Mongoid::Persistence::ClassMethods
- Defined in:
- lib/mongoid/persistence.rb
Overview
:nodoc:
Instance Method Summary collapse
-
#create(attributes = {}, options = {}, &block) ⇒ Document
Create a new document.
-
#create!(attributes = {}, options = {}, &block) ⇒ Document
Create a new document.
-
#delete_all(conditions = nil) ⇒ Integer
Delete all documents given the supplied conditions.
-
#destroy_all(conditions = nil) ⇒ Integer
Delete all documents given the supplied conditions.
-
#fail_callback!(document, method) ⇒ Object
Raise an error if a callback failed.
-
#fail_validate!(document) ⇒ Object
Raise an error if validation failed.
Instance Method Details
#create(attributes = {}, options = {}, &block) ⇒ Document
Create a new document. This will instantiate a new document and insert it in a single call. Will always return the document whether save passed or not.
208 209 210 211 212 |
# File 'lib/mongoid/persistence.rb', line 208 def create(attributes = {}, = {}, &block) _creating do new(attributes, , &block).tap { |doc| doc.save } end end |
#create!(attributes = {}, options = {}, &block) ⇒ Document
Create a new document. This will instantiate a new document and insert it in a single call. Will always return the document whether save passed or not, and if validation fails an error will be raise.
227 228 229 230 231 232 233 234 |
# File 'lib/mongoid/persistence.rb', line 227 def create!(attributes = {}, = {}, &block) _creating do new(attributes, , &block).tap do |doc| fail_validate!(doc) if doc.insert.errors.any? fail_callback!(doc, :create!) if doc.new? end end end |
#delete_all(conditions = nil) ⇒ Integer
Delete all documents given the supplied conditions. If no conditions are passed, the entire collection will be dropped for performance benefits. Does not fire any callbacks.
249 250 251 252 253 254 255 256 257 |
# File 'lib/mongoid/persistence.rb', line 249 def delete_all(conditions = nil) conds = conditions || {} selector = conds[:conditions] || conds selector.merge!(:_type => name) if hereditary? collection.find(selector).count.tap do collection.remove(selector, Safety.) Threaded. end end |
#destroy_all(conditions = nil) ⇒ Integer
Delete all documents given the supplied conditions. If no conditions are passed, the entire collection will be dropped for performance benefits. Fires the destroy callbacks if conditions were passed.
272 273 274 275 276 277 278 |
# File 'lib/mongoid/persistence.rb', line 272 def destroy_all(conditions = nil) conds = conditions || {} documents = where(conds[:conditions] || conds) documents.count.tap do documents.each { |doc| doc.destroy } end end |
#fail_callback!(document, method) ⇒ Object
Raise an error if a callback failed.
299 300 301 |
# File 'lib/mongoid/persistence.rb', line 299 def fail_callback!(document, method) raise Errors::Callback.new(document.class, method) end |
#fail_validate!(document) ⇒ Object
Raise an error if validation failed.
286 287 288 |
# File 'lib/mongoid/persistence.rb', line 286 def fail_validate!(document) raise Errors::Validations.new(document) end |