Class: Fog::CloudSigma::CloudsigmaModel
- Inherits:
-
Model
- Object
- Model
- Fog::CloudSigma::CloudsigmaModel
show all
- Defined in:
- lib/fog/cloudsigma/nested_model.rb
Direct Known Subclasses
Fog::Compute::CloudSigma::Balance, Fog::Compute::CloudSigma::CurrentUsage, Fog::Compute::CloudSigma::FWPolicy, Fog::Compute::CloudSigma::IP, Fog::Compute::CloudSigma::IPConf, Fog::Compute::CloudSigma::Nic, Fog::Compute::CloudSigma::PriceCalculation, Fog::Compute::CloudSigma::PriceRecord, Fog::Compute::CloudSigma::Pricing, Fog::Compute::CloudSigma::Profile, Fog::Compute::CloudSigma::Rule, Fog::Compute::CloudSigma::Server, Fog::Compute::CloudSigma::Subscription, Fog::Compute::CloudSigma::UsageRecord, Fog::Compute::CloudSigma::VLAN, Fog::Compute::CloudSigma::Volume
Class Method Summary
collapse
Class Method Details
.model_attribute(name, model, options = {}) ⇒ Object
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
# File 'lib/fog/cloudsigma/nested_model.rb', line 28
def model_attribute(name, model, options={})
attributes_key = options[:aliases] || name
class_eval <<-EOS, __FILE__, __LINE__
def #{name}
#{name}_attrs = attributes[:#{attributes_key}]
if #{name}_attrs
refreshed_#{name} = #{name}_attrs ? #{model}.new(#{name}_attrs) : nil
attributes[:#{attributes_key}] = refreshed_#{name}.attributes
refreshed_#{name}
else
nil
end
end
def #{name}=(new_#{name})
if new_#{name}
attributes[:#{attributes_key}] = new_#{name}.kind_of?(Hash) ? new_#{name} : new_#{name}.attributes
else
nil
end
end
EOS
@attributes ||= []
@attributes |= [name]
for new_alias in [*options[:aliases]]
aliases[new_alias] = name
end
end
|
.model_attribute_array(name, model, options = {}) ⇒ Object
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# File 'lib/fog/cloudsigma/nested_model.rb', line 5
def model_attribute_array(name, model, options={})
attributes_key = options[:aliases] || name
class_eval <<-EOS, __FILE__, __LINE__
def #{name}
#{name}_attrs = attributes[:#{attributes_key}] || []
refreshed_#{name} = #{name}_attrs.map { |x| #{model}.new(x) }
attributes[:#{attributes_key}] = refreshed_#{name}.map { |x| x.attributes }
refreshed_#{name}
end
def #{name}=(new_#{name})
new_#{name} ||= []
attributes[:#{attributes_key}] = new_#{name}.map { |x| x.kind_of?(Hash) ? x : x.attributes}
end
EOS
@attributes ||= []
@attributes |= [name]
for new_alias in [*options[:aliases]]
aliases[new_alias] = name
end
end
|