2009-08-02 19:37:54 -04:00
|
|
|
module Fog
|
|
|
|
class Model
|
|
|
|
|
2009-08-30 17:43:01 -04:00
|
|
|
def self.attribute(name, other_names = [])
|
|
|
|
class_eval <<-EOS, __FILE__, __LINE__
|
|
|
|
attr_accessor :#{name}
|
|
|
|
EOS
|
|
|
|
attributes << name
|
|
|
|
for other_name in [*other_names]
|
|
|
|
aliases[other_name] = name
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-10-23 13:27:23 -04:00
|
|
|
def self.identity(name, other_names = [])
|
|
|
|
@identity = name
|
|
|
|
self.attribute(name, other_names)
|
|
|
|
end
|
|
|
|
|
2009-08-30 17:43:01 -04:00
|
|
|
def self.aliases
|
|
|
|
@aliases ||= {}
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.attributes
|
|
|
|
@attributes ||= []
|
|
|
|
end
|
|
|
|
|
2009-10-23 13:27:23 -04:00
|
|
|
def identity
|
|
|
|
send(self.class.instance_variable_get('@identity'))
|
|
|
|
end
|
|
|
|
|
2009-08-30 17:14:11 -04:00
|
|
|
def initialize(new_attributes = {})
|
|
|
|
merge_attributes(new_attributes)
|
2009-08-02 19:37:54 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def inspect
|
|
|
|
data = "#<#{self.class.name}"
|
2009-09-01 01:40:07 -04:00
|
|
|
for attribute in self.class.attributes
|
|
|
|
data << " #{attribute}=#{send(attribute).inspect}"
|
2009-08-02 19:37:54 -04:00
|
|
|
end
|
|
|
|
data << ">"
|
|
|
|
end
|
|
|
|
|
2009-09-02 00:41:52 -04:00
|
|
|
def attributes
|
|
|
|
attributes = {}
|
|
|
|
for attribute in self.class.attributes
|
2009-09-15 00:36:24 -04:00
|
|
|
attributes[attribute] = send("#{attribute}")
|
2009-09-02 00:41:52 -04:00
|
|
|
end
|
|
|
|
attributes
|
|
|
|
end
|
|
|
|
|
2009-10-23 12:42:51 -04:00
|
|
|
def collection
|
|
|
|
@collection
|
|
|
|
end
|
|
|
|
|
2009-08-30 17:14:11 -04:00
|
|
|
def merge_attributes(new_attributes = {})
|
|
|
|
for key, value in new_attributes
|
2009-09-01 01:40:07 -04:00
|
|
|
if aliased_key = self.class.aliases[key]
|
2009-09-15 00:36:24 -04:00
|
|
|
send("#{aliased_key}=", value)
|
2009-08-30 17:43:01 -04:00
|
|
|
else
|
2009-09-15 00:36:24 -04:00
|
|
|
send("#{key}=", value)
|
2009-08-30 17:43:01 -04:00
|
|
|
end
|
2009-08-04 23:09:08 -04:00
|
|
|
end
|
2009-08-06 01:55:09 -04:00
|
|
|
self
|
2009-08-04 23:09:08 -04:00
|
|
|
end
|
|
|
|
|
2009-10-23 13:27:23 -04:00
|
|
|
def reload
|
|
|
|
new_attributes = collection.get(identity).attributes
|
|
|
|
merge_attributes(new_attributes)
|
|
|
|
end
|
|
|
|
|
2009-08-02 19:37:54 -04:00
|
|
|
private
|
|
|
|
|
2009-10-23 12:42:51 -04:00
|
|
|
def collection=(new_collection)
|
|
|
|
@collection = new_collection
|
|
|
|
end
|
|
|
|
|
2009-08-02 19:37:54 -04:00
|
|
|
def connection=(new_connection)
|
|
|
|
@connection = new_connection
|
|
|
|
end
|
|
|
|
|
|
|
|
def connection
|
|
|
|
@connection
|
|
|
|
end
|
|
|
|
|
2009-08-04 13:51:54 -04:00
|
|
|
def remap_attributes(attributes, mapping)
|
|
|
|
for key, value in mapping
|
2009-08-17 21:34:44 -04:00
|
|
|
if attributes.key?(key)
|
2009-08-04 13:51:54 -04:00
|
|
|
attributes[value] = attributes.delete(key)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2009-08-02 19:37:54 -04:00
|
|
|
end
|
|
|
|
end
|