mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
30446e5ac1
Many changes: -Become more of a proper Fog Service. -Drop most of the Collection/Model customizations. -Add a hook for services to do something after #new with the instance -Move to the ToHashDocument parser ... so no more having to actually make parsers. -Fog::Vcloud::Extension is kind of like Fog::Service, but for writing extension modules to Fog::Vcloud. -Fix up existing specs/mocks (they're not complete atm, but the existing ones are up to date). -Fog::Vcloud::Terremark::Ecloud gets almost all extensions implemented (almost). -Fog::Vcloud::Terremark::Ecloud bumped to working with the current TMRK API release. -Factor out some TMRK/ecloud specifc mock data into the ecloud module. -Probably forgetting something.
183 lines
4.6 KiB
Ruby
183 lines
4.6 KiB
Ruby
module Fog
|
|
module Attributes
|
|
module ClassMethods
|
|
|
|
def _load(marshalled)
|
|
new(Marshal.load(marshalled))
|
|
end
|
|
|
|
def aliases
|
|
@aliases ||= {}
|
|
end
|
|
|
|
def attributes
|
|
@attributes ||= []
|
|
end
|
|
|
|
def attribute(name, options = {})
|
|
# FIXME: handle legacy where options would have been one or more aliases
|
|
if !options.is_a?(Hash)
|
|
options = {:aliases => options}
|
|
end
|
|
class_eval <<-EOS, __FILE__, __LINE__
|
|
attr_reader :#{name}
|
|
EOS
|
|
case options[:type]
|
|
when :boolean
|
|
class_eval <<-EOS, __FILE__, __LINE__
|
|
def #{name}=(new_#{name})
|
|
@#{name} = case new_#{name}
|
|
when 'true'
|
|
true
|
|
when 'false'
|
|
false
|
|
end
|
|
end
|
|
EOS
|
|
when :float
|
|
class_eval <<-EOS, __FILE__, __LINE__
|
|
def #{name}=(new_#{name})
|
|
@#{name} = new_#{name}.to_f
|
|
end
|
|
EOS
|
|
when :integer
|
|
class_eval <<-EOS, __FILE__, __LINE__
|
|
def #{name}=(new_#{name})
|
|
@#{name} = new_#{name}.to_i
|
|
end
|
|
EOS
|
|
when :string
|
|
class_eval <<-EOS, __FILE__, __LINE__
|
|
def #{name}=(new_#{name})
|
|
@#{name} = new_#{name}.to_s
|
|
end
|
|
EOS
|
|
when :time
|
|
class_eval <<-EOS, __FILE__, __LINE__
|
|
def #{name}=(new_#{name})
|
|
if !new_#{name}.is_a?(Time)
|
|
@#{name} = Time.parse(new_#{name})
|
|
else
|
|
@#{name} = new_#{name}
|
|
end
|
|
end
|
|
EOS
|
|
when :array
|
|
class_eval <<-EOS, __FILE__, __LINE__
|
|
def #{name}=(new_#{name})
|
|
@#{name} = if new_#{name}.is_a?(Array)
|
|
new_#{name}
|
|
else
|
|
@#{name} = [ new_#{name} ]
|
|
end
|
|
end
|
|
EOS
|
|
else
|
|
if squash = options[:squash]
|
|
class_eval <<-EOS, __FILE__, __LINE__
|
|
def #{name}=(new_data)
|
|
if new_data.is_a?(Hash)
|
|
if new_data[:#{squash}]
|
|
@#{name} = new_data[:#{squash}]
|
|
else
|
|
@#{name} = [ new_data ]
|
|
end
|
|
else
|
|
@#{name} = new_data
|
|
end
|
|
end
|
|
EOS
|
|
else
|
|
class_eval <<-EOS, __FILE__, __LINE__
|
|
attr_writer :#{name}
|
|
EOS
|
|
end
|
|
end
|
|
@attributes ||= []
|
|
@attributes |= [name]
|
|
for new_alias in [*options[:aliases]]
|
|
aliases[new_alias] = name
|
|
end
|
|
end
|
|
|
|
def identity(name, other_names = [])
|
|
@identity = name
|
|
self.attribute(name, {:aliases => other_names})
|
|
end
|
|
|
|
def ignore_attributes(*args)
|
|
@ignored_attributes = args
|
|
end
|
|
|
|
def ignored_attributes
|
|
@ignored_attributes ||= []
|
|
end
|
|
|
|
end
|
|
|
|
module InstanceMethods
|
|
|
|
def _dump
|
|
Marshal.dump(attributes)
|
|
end
|
|
|
|
def attributes
|
|
attributes = {}
|
|
for attribute in self.class.attributes
|
|
attributes[attribute] = send("#{attribute}")
|
|
end
|
|
attributes
|
|
end
|
|
|
|
def identity
|
|
send(self.class.instance_variable_get('@identity'))
|
|
end
|
|
|
|
def identity=(new_identity)
|
|
send("#{self.class.instance_variable_get('@identity')}=", new_identity)
|
|
end
|
|
|
|
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)
|
|
else
|
|
send("#{key}=", value)
|
|
end
|
|
end
|
|
end
|
|
self
|
|
end
|
|
|
|
def new_record?
|
|
!identity
|
|
end
|
|
|
|
def requires(*args)
|
|
missing = []
|
|
for arg in [:connection] | args
|
|
missing << arg unless send("#{arg}")
|
|
end
|
|
unless missing.empty?
|
|
if missing.length == 1
|
|
raise(ArgumentError, "#{missing.first} is required for this operation")
|
|
else
|
|
raise(ArgumentError, "#{missing[0...-1].join(", ")} and #{missing[-1]} are required for this operation")
|
|
end
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
def remap_attributes(attributes, mapping)
|
|
for key, value in mapping
|
|
if attributes.key?(key)
|
|
attributes[value] = attributes.delete(key)
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|
|
end
|
|
end
|