Class: Nurego::NuregoObject
- Inherits:
-
Object
- Object
- Nurego::NuregoObject
show all
- Includes:
- Enumerable
- Defined in:
- lib/nurego/nurego_object.rb
Constant Summary
collapse
- @@permanent_attributes =
Set.new([:api_key, :id])
Instance Attribute Summary collapse
Class Method Summary
collapse
Instance Method Summary
collapse
Constructor Details
#initialize(id = nil, api_key = nil) ⇒ NuregoObject
Returns a new instance of NuregoObject.
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# File 'lib/nurego/nurego_object.rb', line 13
def initialize(id=nil, api_key=nil)
if id.kind_of?(Hash)
@retrieve_options = id.dup
@retrieve_options.delete(:id)
id = id[:id]
else
@retrieve_options = {}
end
@api_key = api_key
@values = {}
@unsaved_values = Set.new
@transient_values = Set.new
@values[:id] = id if id
end
|
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(name, *args) ⇒ Object
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
# File 'lib/nurego/nurego_object.rb', line 141
def method_missing(name, *args)
if name.to_s.end_with?('=')
attr = name.to_s[0...-1].to_sym
add_accessors([attr])
begin
mth = method(name)
rescue NameError
raise NoMethodError.new("Cannot set #{attr} on this object. HINT: you can't set: #{@@permanent_attributes.to_a.join(', ')}")
end
return mth.call(args[0])
else
return @values[name] if @values.has_key?(name)
end
begin
super
rescue NoMethodError => e
if @transient_values.include?(name)
raise NoMethodError.new(e.message + ". HINT: The '#{name}' attribute was set in the past, however. It was then wiped when refreshing the object with the result returned by Nurego's API, probably as a result of a save(). The attributes currently available on this object are: #{@values.keys.join(', ')}")
else
raise
end
end
end
|
Instance Attribute Details
#api_key ⇒ Object
Returns the value of attribute api_key.
5
6
7
|
# File 'lib/nurego/nurego_object.rb', line 5
def api_key
@api_key
end
|
Class Method Details
.construct_from(values, api_key = nil) ⇒ Object
32
33
34
35
36
|
# File 'lib/nurego/nurego_object.rb', line 32
def self.construct_from(values, api_key=nil)
obj = self.new(values[:id], api_key)
obj.refresh_from(values, api_key)
obj
end
|
Instance Method Details
#[](k) ⇒ Object
72
73
74
|
# File 'lib/nurego/nurego_object.rb', line 72
def [](k)
@values[k.to_sym]
end
|
#[]=(k, v) ⇒ Object
76
77
78
|
# File 'lib/nurego/nurego_object.rb', line 76
def []=(k, v)
send(:"#{k}=", v)
end
|
#as_json(*a) ⇒ Object
92
93
94
|
# File 'lib/nurego/nurego_object.rb', line 92
def as_json(*a)
@values.as_json(*a)
end
|
#each(&blk) ⇒ Object
100
101
102
|
# File 'lib/nurego/nurego_object.rb', line 100
def each(&blk)
@values.each(&blk)
end
|
#inspect ⇒ Object
42
43
44
45
|
# File 'lib/nurego/nurego_object.rb', line 42
def inspect
id_string = (self.respond_to?(:id) && !self.id.nil?) ? " id=#{self.id}" : ""
"#<#{self.class}:0x#{self.object_id.to_s(16)}#{id_string}> JSON: " + Nurego::JSON.dump(@values, :pretty => true)
end
|
#keys ⇒ Object
80
81
82
|
# File 'lib/nurego/nurego_object.rb', line 80
def keys
@values.keys
end
|
#refresh_from(values, api_key, partial = false) ⇒ Object
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# File 'lib/nurego/nurego_object.rb', line 47
def refresh_from(values, api_key, partial=false)
@api_key = api_key
removed = partial ? Set.new : Set.new(@values.keys - values.keys)
added = Set.new(values.keys - @values.keys)
instance_eval do
remove_accessors(removed)
add_accessors(added)
end
removed.each do |k|
@values.delete(k)
@transient_values.add(k)
@unsaved_values.delete(k)
end
values.each do |k, v|
@values[k] = Util.convert_to_nurego_object(v, api_key)
@transient_values.delete(k)
@unsaved_values.delete(k)
end
end
|
#to_hash ⇒ Object
96
97
98
|
# File 'lib/nurego/nurego_object.rb', line 96
def to_hash
@values
end
|
#to_json(*a) ⇒ Object
88
89
90
|
# File 'lib/nurego/nurego_object.rb', line 88
def to_json(*a)
Nurego::JSON.dump(@values)
end
|
#to_s(*args) ⇒ Object
38
39
40
|
# File 'lib/nurego/nurego_object.rb', line 38
def to_s(*args)
Nurego::JSON.dump(@values, :pretty => true)
end
|
#values ⇒ Object
84
85
86
|
# File 'lib/nurego/nurego_object.rb', line 84
def values
@values.values
end
|