Class: MongoMapper::Plugins::Associations::ManyDocumentsProxy

Inherits:
Collection show all
Includes:
DynamicQuerying::ClassMethods
Defined in:
lib/mongo_mapper/plugins/associations/proxy/many_documents_proxy.rb

Direct Known Subclasses

ManyDocumentsAsProxy, ManyPolymorphicProxy

Instance Attribute Summary

Attributes inherited from Proxy

#association, #proxy_owner, #target

Instance Method Summary collapse

Methods included from DynamicQuerying::ClassMethods

#dynamic_find

Methods inherited from Collection

#[], #each, #empty?, #length, #read, #reset, #size, #to_a, #write

Methods inherited from Proxy

define_proxy_method, #initialize, #inspect, #loaded, #loaded?, #proxy_method, #proxy_respond_to?, #read, #reload, #reset, #respond_to?, #write

Constructor Details

This class inherits a constructor from MongoMapper::Plugins::Associations::Proxy

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(method, *args, &block) ⇒ Object (private)



115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
# File 'lib/mongo_mapper/plugins/associations/proxy/many_documents_proxy.rb', line 115

def method_missing(method, *args, &block)
  return super unless klass.respond_to?(method)

  result = nil

  query.with_scope(query.criteria_hash) do
    result = klass.send(method, *args, &block)
  end

  case result
  when Plucky::Query
    query.merge result

  # If we got a single record of this class as a result, return it
  when klass
    result

  # If we got an array of this class as a result, return it
  when Array
    if result[0].is_a? klass
      result
    else
      super
    end
  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/proxy/many_documents_proxy.rb', line 25

def <<(*docs)
  ensure_owner_saved
  flatten_deeper(docs).each { |doc| prepare(doc).save }
  reset
end

#build(attrs = {}) {|doc| ... } ⇒ Object

Yields:

  • (doc)


33
34
35
36
37
38
39
40
# File 'lib/mongo_mapper/plugins/associations/proxy/many_documents_proxy.rb', line 33

def build(attrs={})
  doc = klass.new(attrs)
  apply_scope(doc)
  yield doc if block_given?
  @target ||= [] unless loaded?
  @target << doc
  doc
end

#create(attrs = {}) {|doc| ... } ⇒ Object

Yields:

  • (doc)


42
43
44
45
46
47
48
49
# File 'lib/mongo_mapper/plugins/associations/proxy/many_documents_proxy.rb', line 42

def create(attrs={})
  doc = klass.new(attrs)
  apply_scope(doc)
  yield doc if block_given?
  doc.save
  reset
  doc
end

#create!(attrs = {}) {|doc| ... } ⇒ Object

Yields:

  • (doc)


51
52
53
54
55
56
57
58
# File 'lib/mongo_mapper/plugins/associations/proxy/many_documents_proxy.rb', line 51

def create!(attrs={})
  doc = klass.new(attrs)
  apply_scope(doc)
  yield doc if block_given?
  doc.save!
  reset
  doc
end

#delete_all(options = {}) ⇒ Object



65
66
67
68
# File 'lib/mongo_mapper/plugins/associations/proxy/many_documents_proxy.rb', line 65

def delete_all(options={})
  query(options).remove
  reset
end

#destroy_all(options = {}) ⇒ Object



60
61
62
63
# File 'lib/mongo_mapper/plugins/associations/proxy/many_documents_proxy.rb', line 60

def destroy_all(options={})
  all(options).each { |doc| doc.destroy }
  reset
end

#nullifyObject



70
71
72
73
# File 'lib/mongo_mapper/plugins/associations/proxy/many_documents_proxy.rb', line 70

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/proxy/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



75
76
77
# File 'lib/mongo_mapper/plugins/associations/proxy/many_documents_proxy.rb', line 75

def save_to_collection(options={})
  @target.each { |doc| doc.save(options) } if @target
end