Class: Megam::Components

Inherits:
ServerAPI show all
Defined in:
lib/megam/core/components.rb

Instance Attribute Summary

Attributes inherited from ServerAPI

#api_key, #email, #host

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from ServerAPI

#megam_rest

Constructor Details

#initialize(email = nil, api_key = nil, host = nil) ⇒ Components

Returns a new instance of Components.



19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/megam/core/components.rb', line 19

def initialize(email = nil, api_key = nil, host = nil)
  @id = nil
  @name = nil
  @tosca_type = nil
  @inputs = []
  @outputs = []
  @artifacts = {}
  @artifact_type = nil
  @content = nil
  @artifact_requirements = []
  @related_components = []
  @operations = []
  @status = nil
  @repo = {}
  @rtype = nil
  @source = nil
  @oneclick = nil
  @url = nil
  @created_at = nil

  super(email, api_key, host)
end

Class Method Details

.create(params) ⇒ Object



282
283
284
285
# File 'lib/megam/core/components.rb', line 282

def self.create(params)
  asm = from_hash(params, params['email'], params['api_key'], params['host'])
  asm.create
end

.from_hash(o, tmp_email = nil, tmp_api_key = nil, tmp_host = nil) ⇒ Object



261
262
263
264
265
# File 'lib/megam/core/components.rb', line 261

def self.from_hash(o, tmp_email = nil, tmp_api_key = nil, tmp_host = nil)
  asm = new(tmp_email, tmp_api_key, tmp_host)
  asm.from_hash(o)
  asm
end

.json_create(o) ⇒ Object



235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
# File 'lib/megam/core/components.rb', line 235

def self.json_create(o)
  asm = new
  asm.id(o['id']) if o.key?('id')
  asm.name(o['name']) if o.key?('name')
  asm.tosca_type(o['tosca_type']) if o.key?('tosca_type')
  asm.inputs(o['inputs']) if o.key?('inputs')
  asm.outputs(o['outputs']) if o.key?('outputs')

  ar = o['artifacts']
  asm.artifacts[:artifact_type] = ar['artifact_type'] if ar && ar.key?('artifact_type')
  asm.artifacts[:content] = ar['content'] if ar && ar.key?('content')
  asm.artifacts[:artifact_requirements] = ar['artifact_requirements'] if ar && ar.key?('artifact_requirements')

  asm.related_components(o['related_components']) if o.key?('related_components')
  asm.operations(o['operations']) if o.key?('operations')
  asm.status(o['status']) if o.key?('status')

  ro = o['repo']
  asm.repo[:rtype] = ro['rtype'] if ro && ro.key?('rtype')
  asm.repo[:source] = ro['source'] if ro && ro.key?('source')
  asm.repo[:oneclick] = ro['oneclick'] if ro && ro.key?('oneclick')
  asm.repo[:url] = ro['url'] if ro && ro.key?('url')
  asm.created_at(o['created_at']) if o.key?('created_at')
  asm
end

.show(params) ⇒ Object

Load a account by email_p



288
289
290
291
# File 'lib/megam/core/components.rb', line 288

def self.show(params)
  asm = new(params['email'], params['api_key'], params['host'])
  asm.megam_rest.get_components(params['id'])
end

.update(params) ⇒ Object



293
294
295
296
# File 'lib/megam/core/components.rb', line 293

def self.update(params)
  asm = from_hash(params, params['email'] || params[:email], params['api_key'] || params[:api_key], params['host'] || params[:host])
  asm.update
end

Instance Method Details

#artifact_requirements(arg = []) ⇒ Object



110
111
112
113
114
115
116
# File 'lib/megam/core/components.rb', line 110

def artifact_requirements(arg = [])
  if arg != []
    @artifact_requirements = arg
  else
    @artifact_requirements
  end
end

#artifact_type(arg = nil) ⇒ Object



94
95
96
97
98
99
100
# File 'lib/megam/core/components.rb', line 94

def artifact_type(arg = nil)
  if !arg.nil?
    @artifact_type = arg
  else
    @artifact_type
  end
end

#artifacts(arg = nil) ⇒ Object



86
87
88
89
90
91
92
# File 'lib/megam/core/components.rb', line 86

def artifacts(arg = nil)
  if !arg.nil?
    @artifacts = arg
  else
    @artifacts
  end
end

#componentsObject



42
43
44
# File 'lib/megam/core/components.rb', line 42

def components
  self
end

#content(arg = nil) ⇒ Object



102
103
104
105
106
107
108
# File 'lib/megam/core/components.rb', line 102

def content(arg = nil)
  if !arg.nil?
    @content = arg
  else
    @content
  end
end

#created_at(arg = nil) ⇒ Object



182
183
184
185
186
187
188
# File 'lib/megam/core/components.rb', line 182

def created_at(arg = nil)
  if !arg.nil?
    @created_at = arg
  else
    @created_at
  end
end

#error?Boolean

Returns:

  • (Boolean)


190
191
192
# File 'lib/megam/core/components.rb', line 190

def error?
  crocked = true if some_msg.key?(:msg_type) && some_msg[:msg_type] == 'error'
end

#for_jsonObject



218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
# File 'lib/megam/core/components.rb', line 218

def for_json
  result = {
    'id' => id,
    'name' => name,
    'tosca_type' => tosca_type,
    'inputs' => inputs,
    'outputs' => outputs,
    'artifacts' => artifacts,
    'related_components' => related_components,
    'operations' => operations,
    'status' => status,
    'repo' => repo,
    'created_at' => created_at
  }
  result
end

#from_hash(o) ⇒ Object



267
268
269
270
271
272
273
274
275
276
277
278
279
280
# File 'lib/megam/core/components.rb', line 267

def from_hash(o)
  @id                              = o['id'] if o.key?('id')
  @name                            = o['name'] if o.key?('name')
  @tosca_type                      = o['tosca_type'] if o.key?('tosca_type')
  @inputs                          = o['inputs'] if o.key?('inputs')
  @outputs                         = o['outputs'] if o.key?('outputs')
  @artifacts                       = o['artifacts'] if o.key?('artifacts')
  @related_components              = o['related_components'] if o.key?('related_components')
  @operations                      = o['operations'] if o.key?('operations')
  @status                          = o['status'] if o.key?('status')
  @repo                            = o['repo'] if o.key?('repo')
  @created_at                      = o['created_at'] if o.key?('created_at')
  self
end

#id(arg = nil) ⇒ Object



46
47
48
49
50
51
52
# File 'lib/megam/core/components.rb', line 46

def id(arg = nil)
  if !arg.nil?
    @id = arg
  else
    @id
  end
end

#inputs(arg = []) ⇒ Object



70
71
72
73
74
75
76
# File 'lib/megam/core/components.rb', line 70

def inputs(arg = [])
  if arg != []
    @inputs = arg
  else
    @inputs
  end
end

#name(arg = nil) ⇒ Object



54
55
56
57
58
59
60
# File 'lib/megam/core/components.rb', line 54

def name(arg = nil)
  if !arg.nil?
    @name = arg
  else
    @name
  end
end

#oneclick(arg = nil) ⇒ Object



166
167
168
169
170
171
172
# File 'lib/megam/core/components.rb', line 166

def oneclick(arg = nil)
  if !arg.nil?
    @oneclick = arg
  else
    @oneclick
  end
end

#operations(arg = []) ⇒ Object



126
127
128
129
130
131
132
# File 'lib/megam/core/components.rb', line 126

def operations(arg = [])
  if arg != []
    @operations = arg
  else
    @operations
  end
end

#outputs(arg = []) ⇒ Object



78
79
80
81
82
83
84
# File 'lib/megam/core/components.rb', line 78

def outputs(arg = [])
  if arg != []
    @outputs = arg
  else
    @outputs
  end
end


118
119
120
121
122
123
124
# File 'lib/megam/core/components.rb', line 118

def related_components(arg = [])
  if arg != []
    @related_components = arg
  else
    @related_components
  end
end

#repo(arg = nil) ⇒ Object



142
143
144
145
146
147
148
# File 'lib/megam/core/components.rb', line 142

def repo(arg = nil)
   if !arg.nil?
     @repo = arg
   else
     @repo
   end
end

#rtype(arg = nil) ⇒ Object



150
151
152
153
154
155
156
# File 'lib/megam/core/components.rb', line 150

def rtype(arg = nil)
   if !arg.nil?
     @rtype = arg
   else
     @rtype
   end
end

#source(arg = nil) ⇒ Object



158
159
160
161
162
163
164
# File 'lib/megam/core/components.rb', line 158

def source(arg = nil)
   if !arg.nil?
     @source = arg
   else
     @source
   end
end

#status(arg = nil) ⇒ Object



134
135
136
137
138
139
140
# File 'lib/megam/core/components.rb', line 134

def status(arg = nil)
   if !arg.nil?
     @status = arg
   else
     @status
   end
end

#to_hashObject

Transform the ruby obj -> to a Hash



195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# File 'lib/megam/core/components.rb', line 195

def to_hash
  index_hash = {}
  index_hash['json_claz'] = self.class.name
  index_hash['id'] = id
  index_hash['name'] = name
  index_hash['tosca_type'] = tosca_type
  index_hash['inputs'] = inputs
  index_hash['outputs'] = outputs
  index_hash['artifacts'] = artifacts
  index_hash['related_components'] = related_components
  index_hash['operations'] = operations
  index_hash['status'] = status
  index_hash['repo'] = repo
  index_hash['created_at'] = created_at
  index_hash
end

#to_json(*a) ⇒ Object

Serialize this object as a hash: called from JsonCompat. Verify if this called from JsonCompat during testing.



214
215
216
# File 'lib/megam/core/components.rb', line 214

def to_json(*a)
  for_json.to_json(*a)
end

#to_sObject



303
304
305
# File 'lib/megam/core/components.rb', line 303

def to_s
  Megam::Stuff.styled_hash(to_hash)
end

#tosca_type(arg = nil) ⇒ Object



62
63
64
65
66
67
68
# File 'lib/megam/core/components.rb', line 62

def tosca_type(arg = nil)
  if !arg.nil?
    @tosca_type = arg
  else
    @tosca_type
  end
end

#updateObject

Create the node via the REST API



299
300
301
# File 'lib/megam/core/components.rb', line 299

def update
  megam_rest.update_component(to_hash)
end

#url(arg = nil) ⇒ Object



174
175
176
177
178
179
180
# File 'lib/megam/core/components.rb', line 174

def url(arg = nil)
   if !arg.nil?
     @url = arg
   else
     @url
   end
end