Module: Fog::Attributes::InstanceMethods

Included in:
Collection, Model
Defined in:
lib/fog/core/attributes.rb

Instance Method Summary collapse

Instance Method Details

#_dump(_level) ⇒ Object



64
65
66
# File 'lib/fog/core/attributes.rb', line 64

def _dump(_level)
  Marshal.dump(attributes)
end

#all_associationsObject



87
88
89
90
91
92
# File 'lib/fog/core/attributes.rb', line 87

def all_associations
  self.class.associations.keys.reduce({}) do |hash, association|
    hash[masks[association]] = associations[association] || send(association)
    hash
  end
end

#all_associations_and_attributesObject



94
95
96
# File 'lib/fog/core/attributes.rb', line 94

def all_associations_and_attributes
  all_attributes.merge(all_associations)
end

#all_attributesObject



80
81
82
83
84
85
# File 'lib/fog/core/attributes.rb', line 80

def all_attributes
  self.class.attributes.reduce({}) do |hash, attribute|
    hash[masks[attribute]] = send(attribute)
    hash
  end
end

#associationsObject



72
73
74
# File 'lib/fog/core/attributes.rb', line 72

def associations
  @associations ||= {}
end

#attributesObject



68
69
70
# File 'lib/fog/core/attributes.rb', line 68

def attributes
  @attributes ||= {}
end

#dupObject



98
99
100
101
102
# File 'lib/fog/core/attributes.rb', line 98

def dup
  copy = super
  copy.dup_attributes!
  copy
end

#identityObject



104
105
106
# File 'lib/fog/core/attributes.rb', line 104

def identity
  send(self.class.instance_variable_get("@identity"))
end

#identity=(new_identity) ⇒ Object



108
109
110
# File 'lib/fog/core/attributes.rb', line 108

def identity=(new_identity)
  send("#{self.class.instance_variable_get("@identity")}=", new_identity)
end

#masksObject



76
77
78
# File 'lib/fog/core/attributes.rb', line 76

def masks
  self.class.masks
end

#merge_attributes(new_attributes = {}) ⇒ Object



112
113
114
115
116
117
118
119
120
121
122
123
124
# File 'lib/fog/core/attributes.rb', line 112

def merge_attributes(new_attributes = {})
  new_attributes.each_pair do |key, value|
    next if self.class.ignored_attributes.include?(key)
    if self.class.aliases[key]
      send("#{self.class.aliases[key]}=", value)
    elsif self.respond_to?("#{key}=", true)
      send("#{key}=", value)
    else
      attributes[key] = value
    end
  end
  self
end

#new_record?Boolean

Deprecated.

Use inverted form of #persisted?

Returns true if a remote resource has not been assigned an identity.

This was added for a ActiveRecord like feel but has been outdated by ActiveModel API using #persisted?

Returns:



142
143
144
145
# File 'lib/fog/core/attributes.rb', line 142

def new_record?
  Fog::Logger.deprecation("#new_record? is deprecated, use !persisted? instead [light_black](#{caller.first})[/]")
  !persisted?
end

#persisted?Boolean

Returns true if a remote resource has been assigned an identity and we can assume it has been persisted.

Returns:



130
131
132
# File 'lib/fog/core/attributes.rb', line 130

def persisted?
  !!identity
end

#requires(*args) ⇒ Object

check that the attributes specified in args exist and is not nil



148
149
150
151
152
153
154
155
# File 'lib/fog/core/attributes.rb', line 148

def requires(*args)
  missing = missing_attributes(args)
  if missing.length == 1
    raise(ArgumentError, "#{missing.first} is required for this operation")
  elsif missing.any?
    raise(ArgumentError, "#{missing[0...-1].join(", ")} and #{missing[-1]} are required for this operation")
  end
end

#requires_one(*args) ⇒ Object

Raises:

  • (ArgumentError)


157
158
159
160
161
# File 'lib/fog/core/attributes.rb', line 157

def requires_one(*args)
  missing = missing_attributes(args)
  return unless missing.length == args.length
  raise(ArgumentError, "#{missing[0...-1].join(", ")} or #{missing[-1]} are required for this operation")
end