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
81
82
83
84
85
86
87
88
89
|
# File 'lib/mongo_mapper/plugins/associations/many_documents_proxy.rb', line 81
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
25
26
27
28
29
|
# File 'lib/mongo_mapper/plugins/associations/many_documents_proxy.rb', line 25
def <<(*docs)
ensure_owner_saved
flatten_deeper(docs).each { |doc| prepare(doc).save }
reset
end
|
#build(attrs = {}) ⇒ Object
33
34
35
36
37
38
39
|
# File 'lib/mongo_mapper/plugins/associations/many_documents_proxy.rb', line 33
def build(attrs={})
doc = klass.new(attrs)
apply_scope(doc)
@target ||= [] unless loaded?
@target << doc
doc
end
|
#create(attrs = {}) ⇒ Object
41
42
43
44
45
46
|
# File 'lib/mongo_mapper/plugins/associations/many_documents_proxy.rb', line 41
def create(attrs={})
doc = klass.new(attrs)
apply_scope(doc).save
reset
doc
end
|
#create!(attrs = {}) ⇒ Object
48
49
50
51
52
53
|
# File 'lib/mongo_mapper/plugins/associations/many_documents_proxy.rb', line 48
def create!(attrs={})
doc = klass.new(attrs)
apply_scope(doc).save!
reset
doc
end
|
#delete_all(options = {}) ⇒ Object
60
61
62
63
|
# File 'lib/mongo_mapper/plugins/associations/many_documents_proxy.rb', line 60
def delete_all(options={})
query(options).remove
reset
end
|
#destroy_all(options = {}) ⇒ Object
55
56
57
58
|
# File 'lib/mongo_mapper/plugins/associations/many_documents_proxy.rb', line 55
def destroy_all(options={})
all(options).each { |doc| doc.destroy }
reset
end
|
65
66
67
68
|
# File 'lib/mongo_mapper/plugins/associations/many_documents_proxy.rb', line 65
def nullify
all.each { |doc| doc.update_attributes(self.foreign_key => nil) }
reset
end
|
#replace(docs) ⇒ Object
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# File 'lib/mongo_mapper/plugins/associations/many_documents_proxy.rb', line 10
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
70
71
72
|
# File 'lib/mongo_mapper/plugins/associations/many_documents_proxy.rb', line 70
def save_to_collection(options={})
@target.each { |doc| doc.save(options) } if @target
end
|