Class: MongoMapper::Plugins::Associations::ManyDocumentsProxy
Instance Attribute Summary
Attributes inherited from Proxy
#association, #proxy_owner, #target
Instance Method Summary
collapse
#dynamic_find
Methods inherited from Collection
#include?, #reset, #to_ary
Methods inherited from Proxy
#as_json, #blank?, #initialize, #inspect, #loaded, #loaded?, #nil?, #present?, #proxy_respond_to?, #reload, #reset, #respond_to?, #send, #to_json
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(method, *args, &block) ⇒ Object
80
81
82
83
84
85
86
87
88
|
# File 'lib/mongo_mapper/plugins/associations/many_documents_proxy.rb', line 80
def method_missing(method, *args, &block)
if klass.respond_to?(method)
result = klass.send(method, *args, &block)
result.is_a?(Plucky::Query) ?
query.merge(result) : super
else
super
end
end
|
Instance Method Details
#<<(*docs) ⇒ Object
Also known as:
push, concat
24
25
26
27
28
|
# File 'lib/mongo_mapper/plugins/associations/many_documents_proxy.rb', line 24
def <<(*docs)
ensure_owner_saved
flatten_deeper(docs).each { |doc| prepare(doc).save }
reset
end
|
#build(attrs = {}) ⇒ Object
32
33
34
35
36
37
38
|
# File 'lib/mongo_mapper/plugins/associations/many_documents_proxy.rb', line 32
def build(attrs={})
doc = klass.new(attrs)
apply_scope(doc)
@target ||= [] unless loaded?
@target << doc
doc
end
|
#create(attrs = {}) ⇒ Object
40
41
42
43
44
45
|
# File 'lib/mongo_mapper/plugins/associations/many_documents_proxy.rb', line 40
def create(attrs={})
doc = klass.new(attrs)
apply_scope(doc).save
reset
doc
end
|
#create!(attrs = {}) ⇒ Object
47
48
49
50
51
52
|
# File 'lib/mongo_mapper/plugins/associations/many_documents_proxy.rb', line 47
def create!(attrs={})
doc = klass.new(attrs)
apply_scope(doc).save!
reset
doc
end
|
#delete_all(options = {}) ⇒ Object
59
60
61
62
|
# File 'lib/mongo_mapper/plugins/associations/many_documents_proxy.rb', line 59
def delete_all(options={})
query(options).remove
reset
end
|
#destroy_all(options = {}) ⇒ Object
54
55
56
57
|
# File 'lib/mongo_mapper/plugins/associations/many_documents_proxy.rb', line 54
def destroy_all(options={})
all(options).each { |doc| doc.destroy }
reset
end
|
64
65
66
67
|
# File 'lib/mongo_mapper/plugins/associations/many_documents_proxy.rb', line 64
def nullify
all.each { |doc| doc.update_attributes(self.foreign_key => nil) }
reset
end
|
#replace(docs) ⇒ Object
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# File 'lib/mongo_mapper/plugins/associations/many_documents_proxy.rb', line 9
def replace(docs)
load_target
(target - docs).each do |t|
case options[:dependent]
when :destroy then t.destroy
when :delete_all then t.delete
else t.update_attributes(self.foreign_key => nil)
end
end
docs.each { |doc| prepare(doc).save }
reset
end
|
#save_to_collection(options = {}) ⇒ Object
69
70
71
|
# File 'lib/mongo_mapper/plugins/associations/many_documents_proxy.rb', line 69
def save_to_collection(options={})
@target.each { |doc| doc.save(options) } if @target
end
|