Class: AMEE::Profile::ItemValue
Instance Attribute Summary collapse
Attributes inherited from Object
#profile_date, #profile_uid
Attributes inherited from Object
#connection, #created, #modified, #name, #path, #uid
Class Method Summary
collapse
Instance Method Summary
collapse
Methods inherited from Object
#full_path
Constructor Details
#initialize(data = {}) ⇒ ItemValue
Returns a new instance of ItemValue.
5
6
7
8
9
10
11
12
13
|
# File 'lib/amee/profile_item_value.rb', line 5
def initialize(data = {})
@value = data ? data[:value] : nil
@type = data ? data[:type] : nil
@unit = data ? data[:unit] : nil
@per_unit = data ? data[:per_unit] : nil
@from_profile = data ? data[:from_profile] : nil
@from_data = data ? data[:from_data] : nil
super
end
|
Instance Attribute Details
Returns the value of attribute per_unit.
17
18
19
|
# File 'lib/amee/profile_item_value.rb', line 17
def per_unit
@per_unit
end
|
Returns the value of attribute type.
15
16
17
|
# File 'lib/amee/profile_item_value.rb', line 15
def type
@type
end
|
Returns the value of attribute unit.
16
17
18
|
# File 'lib/amee/profile_item_value.rb', line 16
def unit
@unit
end
|
Class Method Details
.from_json(json, path) ⇒ Object
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# File 'lib/amee/profile_item_value.rb', line 40
def self.from_json(json, path)
doc = JSON.parse(json)['itemValue']
data = {}
data[:uid] = doc['uid']
data[:created] = DateTime.parse(doc['created'])
data[:modified] = DateTime.parse(doc['modified'])
data[:name] = doc['name']
data[:path] = path.gsub(/^\/profiles/, '')
data[:value] = doc['value']
data[:unit] = doc['unit']
data[:per_unit] = doc['perUnit']
data[:type] = doc['itemValueDefinition']['valueDefinition']['valueType']
ItemValue.new(data)
rescue
raise AMEE::BadData.new("Couldn't load ProfileItemValue from JSON. Check that your URL is correct.\n#{json}")
end
|
.from_xml(xml, path) ⇒ Object
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# File 'lib/amee/profile_item_value.rb', line 59
def self.from_xml(xml, path)
doc = REXML::Document.new(xml)
data = {}
data[:uid] = REXML::XPath.first(doc, "/Resources/ProfileItemValueResource/ItemValue/@uid").to_s
data[:created] = DateTime.parse(REXML::XPath.first(doc, "/Resources/ProfileItemValueResource/ItemValue/@Created").to_s)
data[:modified] = DateTime.parse(REXML::XPath.first(doc, "/Resources/ProfileItemValueResource/ItemValue/@Modified").to_s)
data[:name] = REXML::XPath.first(doc, '/Resources/ProfileItemValueResource/ItemValue/Name').text
data[:path] = path.gsub(/^\/profiles/, '')
data[:value] = REXML::XPath.first(doc, '/Resources/ProfileItemValueResource/ItemValue/Value').text
data[:unit] = REXML::XPath.first(doc, '/Resources/ProfileItemValueResource/ItemValue/Unit').text rescue nil
data[:per_unit] = REXML::XPath.first(doc, '/Resources/ProfileItemValueResource/ItemValue/PerUnit').text rescue nil
data[:type] = REXML::XPath.first(doc, '/Resources/ProfileItemValueResource/ItemValue/ItemValueDefinition/ValueDefinition/ValueType').text
data[:from_profile] = REXML::XPath.first(doc, '/Resources/ProfileItemValueResource/ItemValue/ItemValueDefinition/FromProfile').text == "true" ? true : false
data[:from_data] = REXML::XPath.first(doc, '/Resources/ProfileItemValueResource/ItemValue/ItemValueDefinition/FromData').text == "true" ? true : false
ItemValue.new(data)
rescue
raise AMEE::BadData.new("Couldn't load ProfileItemValue from XML. Check that your URL is correct.\n#{xml}")
end
|
.get(connection, path) ⇒ Object
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
# File 'lib/amee/profile_item_value.rb', line 80
def self.get(connection, path)
response = connection.get(path).body
if response.is_json?
value = ItemValue.from_json(response, path)
else
value = ItemValue.from_xml(response, path)
end
value.connection = connection
return value
rescue
raise AMEE::BadData.new("Couldn't load ProfileItemValue. Check that your URL is correct.\n#{response}")
end
|
Instance Method Details
#from_data? ⇒ Boolean
36
37
38
|
# File 'lib/amee/profile_item_value.rb', line 36
def from_data?
@from_data
end
|
#from_profile? ⇒ Boolean
32
33
34
|
# File 'lib/amee/profile_item_value.rb', line 32
def from_profile?
@from_profile
end
|
97
98
99
100
101
102
|
# File 'lib/amee/profile_item_value.rb', line 97
def save!
options = {:value => value}
options[:unit] = unit if unit
options[:perUnit] = per_unit if per_unit
response = @connection.put(full_path, options).body
end
|
19
20
21
22
23
24
25
26
|
# File 'lib/amee/profile_item_value.rb', line 19
def value
case type
when "DECIMAL"
@value.to_f
else
@value
end
end
|
#value=(val) ⇒ Object
28
29
30
|
# File 'lib/amee/profile_item_value.rb', line 28
def value=(val)
@value = val
end
|