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



124
125
126
# File 'lib/fog/core/attributes.rb', line 124

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

#attributesObject



128
129
130
# File 'lib/fog/core/attributes.rb', line 128

def attributes
  @attributes ||= {}
end

#dupObject



132
133
134
135
136
# File 'lib/fog/core/attributes.rb', line 132

def dup
  copy = super
  copy.dup_attributes!
  copy
end

#identityObject



138
139
140
# File 'lib/fog/core/attributes.rb', line 138

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

#identity=(new_identity) ⇒ Object



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

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

#merge_attributes(new_attributes = {}) ⇒ Object



146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'lib/fog/core/attributes.rb', line 146

def merge_attributes(new_attributes = {})
  for key, value in new_attributes
    unless self.class.ignored_attributes.include?(key)
      if aliased_key = self.class.aliases[key]
        send("#{aliased_key}=", value)
      elsif self.respond_to?("#{key}=",true)
        send("#{key}=", value)
      else
        attributes[key] = value
      end
    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:



177
178
179
180
# File 'lib/fog/core/attributes.rb', line 177

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:



165
166
167
# File 'lib/fog/core/attributes.rb', line 165

def persisted?
  !!identity
end

#requires(*args) ⇒ Object

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



183
184
185
186
187
188
189
190
# File 'lib/fog/core/attributes.rb', line 183

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



192
193
194
195
196
197
# File 'lib/fog/core/attributes.rb', line 192

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