Module: MongoMapper::Plugins::Keys

Extended by:
ActiveSupport::Concern
Included in:
Document, EmbeddedDocument
Defined in:
lib/mongo_mapper/plugins/keys.rb,
lib/mongo_mapper/plugins/keys/key.rb

Defined Under Namespace

Modules: ClassMethods Classes: Key

Constant Summary collapse

IS_RUBY_1_9 =
method(:const_defined?).arity == 1

Instance Method Summary collapse

Instance Method Details

#[]=(name, value) ⇒ Object



378
379
380
# File 'lib/mongo_mapper/plugins/keys.rb', line 378

def []=(name, value)
  write_key(name, value)
end

#assign(attrs = {}) ⇒ Object



322
323
324
325
# File 'lib/mongo_mapper/plugins/keys.rb', line 322

def assign(attrs={})
  warn "[DEPRECATION] #assign is deprecated, use #attributes="
  self.attributes = attrs
end

#attributesObject



318
319
320
# File 'lib/mongo_mapper/plugins/keys.rb', line 318

def attributes
  to_mongo(false).with_indifferent_access
end

#attributes=(attrs) ⇒ Object



285
286
287
288
289
290
291
292
293
294
295
# File 'lib/mongo_mapper/plugins/keys.rb', line 285

def attributes=(attrs)
  return if attrs == nil || attrs.blank?

  attrs.each_pair do |key, value|
    if respond_to?(:"#{key}=")
      self.send(:"#{key}=", value)
    else
      self[key] = value
    end
  end
end

#embedded_keysObject



390
391
392
# File 'lib/mongo_mapper/plugins/keys.rb', line 390

def embedded_keys
  @embedded_keys ||= keys.values.select(&:embeddable?)
end

#idObject



342
343
344
# File 'lib/mongo_mapper/plugins/keys.rb', line 342

def id
  self[:_id]
end

#id=(value) ⇒ Object



346
347
348
349
350
351
352
# File 'lib/mongo_mapper/plugins/keys.rb', line 346

def id=(value)
  if self.class.using_object_id?
    value = ObjectId.to_mongo(value)
  end

  self[:_id] = value
end

#initialize(attrs = {}) {|_self| ... } ⇒ Object

Yields:

  • (_self)

Yield Parameters:



265
266
267
268
269
270
271
# File 'lib/mongo_mapper/plugins/keys.rb', line 265

def initialize(attrs={})
  @_new = true
  init_ivars
  initialize_default_values(attrs)
  self.attributes = attrs
  yield self if block_given?
end

#initialize_from_database(attrs = {}, with_cast = false) ⇒ Object



273
274
275
276
277
278
279
# File 'lib/mongo_mapper/plugins/keys.rb', line 273

def initialize_from_database(attrs={}, with_cast = false)
  @_new = false
  init_ivars
  initialize_default_values(attrs)
  load_from_database(attrs, with_cast)
  self
end

#key_namesObject



382
383
384
# File 'lib/mongo_mapper/plugins/keys.rb', line 382

def key_names
  @key_names ||= keys.keys
end

#keysObject



354
355
356
# File 'lib/mongo_mapper/plugins/keys.rb', line 354

def keys
  self.class.keys
end

#non_embedded_keysObject



386
387
388
# File 'lib/mongo_mapper/plugins/keys.rb', line 386

def non_embedded_keys
  @non_embedded_keys ||= keys.values.select { |key| !key.embeddable? }
end

#persisted?Boolean

Returns:



281
282
283
# File 'lib/mongo_mapper/plugins/keys.rb', line 281

def persisted?
  !new? && !destroyed?
end

#read_key(key_name) ⇒ Object Also known as: [], attribute



358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
# File 'lib/mongo_mapper/plugins/keys.rb', line 358

def read_key(key_name)
  key_name_sym = key_name.to_sym
  if @_dynamic_attributes && @_dynamic_attributes.key?(key_name_sym)
    @_dynamic_attributes[key_name_sym]
  elsif key = keys[key_name.to_s]
    if key.ivar && instance_variable_defined?(key.ivar)
      value = instance_variable_get(key.ivar)
    else
      if key.ivar
        instance_variable_set key.ivar, key.get(nil)
      else
        @_dynamic_attributes[key_name_sym] = key.get(nil)
      end
    end
  end
end

#to_mongo(include_abbreviatons = true) ⇒ Object



297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
# File 'lib/mongo_mapper/plugins/keys.rb', line 297

def to_mongo(include_abbreviatons = true)
  BSON::OrderedHash.new.tap do |attrs|
    self.class.unaliased_keys.each do |name, key|
      value = self.read_key(key.name)
      if key.type == ObjectId || !value.nil?
        attrs[include_abbreviatons && key.persisted_name || name] = key.set(value)
      end
    end

    embedded_associations.each do |association|
      if documents = instance_variable_get(association.ivar)
        if association.is_a?(Associations::OneAssociation)
          attrs[association.name] = documents.to_mongo
        else
          attrs[association.name] = documents.map(&:to_mongo)
        end
      end
    end
  end
end

#update_attribute(name, value) ⇒ Object



337
338
339
340
# File 'lib/mongo_mapper/plugins/keys.rb', line 337

def update_attribute(name, value)
  self.send(:"#{name}=", value)
  save(:validate => false)
end

#update_attributes(attrs = {}) ⇒ Object



327
328
329
330
# File 'lib/mongo_mapper/plugins/keys.rb', line 327

def update_attributes(attrs={})
  self.attributes = attrs
  save
end

#update_attributes!(attrs = {}) ⇒ Object



332
333
334
335
# File 'lib/mongo_mapper/plugins/keys.rb', line 332

def update_attributes!(attrs={})
  self.attributes = attrs
  save!
end