Class: Megam::AppRequest
- Defined in:
- lib/megam/core/app_request.rb
Instance Attribute Summary
Attributes inherited from ServerAPI
Class Method Summary collapse
- .create(o, tmp_email = nil, tmp_api_key = nil) ⇒ Object
- .from_hash(o, tmp_email = nil, tmp_api_key = nil) ⇒ Object
-
.json_create(o) ⇒ Object
Create a Megam::Node from NodeResult-JSON.
-
.list(node_name, tmp_email = nil, tmp_api_key = nil) ⇒ Object
Load a account by email_p.
Instance Method Summary collapse
- #appdefns_id(arg = nil) ⇒ Object
- #appreq ⇒ Object
-
#create ⇒ Object
Create the node via the REST API.
- #created_at(arg = nil) ⇒ Object
- #error? ⇒ Boolean
- #for_json ⇒ Object
- #from_hash(o) ⇒ Object
- #id(arg = nil) ⇒ Object
-
#initialize(email = nil, api_key = nil) ⇒ AppRequest
constructor
A new instance of AppRequest.
- #lc_additional(arg = nil) ⇒ Object
- #lc_apply(arg = nil) ⇒ Object
- #lc_when(arg = nil) ⇒ Object
- #node_name(arg = nil) ⇒ Object
- #req_type(arg = nil) ⇒ Object
- #some_msg(arg = nil) ⇒ Object
-
#to_hash ⇒ Object
Transform the ruby obj -> to a Hash.
-
#to_json(*a) ⇒ Object
Serialize this object as a hash: called from JsonCompat.
- #to_s ⇒ Object
Methods inherited from ServerAPI
Constructor Details
#initialize(email = nil, api_key = nil) ⇒ AppRequest
Returns a new instance of AppRequest.
19 20 21 22 23 24 25 26 27 28 29 30 |
# File 'lib/megam/core/app_request.rb', line 19 def initialize(email=nil, api_key=nil) @id = nil @req_type = nil @appdefns_id = nil @node_name = nil @lc_apply = nil @lc_additional = nil @lc_when = nil @created_at = nil @some_msg = {} super(email,api_key) end |
Class Method Details
.create(o, tmp_email = nil, tmp_api_key = nil) ⇒ Object
205 206 207 208 |
# File 'lib/megam/core/app_request.rb', line 205 def self.create(o,tmp_email=nil, tmp_api_key=nil) acct = from_hash(o,tmp_email, tmp_api_key) acct.create end |
.from_hash(o, tmp_email = nil, tmp_api_key = nil) ⇒ Object
187 188 189 190 191 |
# File 'lib/megam/core/app_request.rb', line 187 def self.from_hash(o,tmp_email=nil, tmp_api_key=nil) appreq = self.new(tmp_email, tmp_api_key) appreq.from_hash(o) appreq end |
.json_create(o) ⇒ Object
Create a Megam::Node from NodeResult-JSON
[{ “id”:“NOD362212018897289216”, “accounts_id”:“ACT362211962353876992”, “json_claz”:“Megam::Node”, “request”:{ “req_id”:“NOD362212018897289216”, “command”:“commands” }, “predefs”:{ “name”:“”, “scm”:“”, “war”:“”, “db”:“”, “queue”:“” } }]
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 |
# File 'lib/megam/core/app_request.rb', line 168 def self.json_create(o) appreq = new appreq.id(o["id"]) if o.has_key?("id") appreq.req_type(o["req_type"]) if o.has_key?("req_type") appreq.appdefns_id(o["appdefns_id"]) if o.has_key?("appdefns_id") appreq.node_name(o["node_name"]) if o.has_key?("node_name") appreq.lc_apply(o["lc_apply"]) if o.has_key?("lc_apply") appreq.lc_additional(o["lc_additional"]) if o.has_key?("lc_additional") appreq.lc_when(o["lc_when"]) if o.has_key?("lc_when") appreq.created_at(o["created_at"]) if o.has_key?("created_at") appreq.some_msg[:code] = o["code"] if o.has_key?("code") appreq.some_msg[:msg_type] = o["msg_type"] if o.has_key?("msg_type") appreq.some_msg[:msg]= o["msg"] if o.has_key?("msg") appreq.some_msg[:links] = o["links"] if o.has_key?("links") appreq end |
.list(node_name, tmp_email = nil, tmp_api_key = nil) ⇒ Object
Load a account by email_p
216 217 218 219 220 |
# File 'lib/megam/core/app_request.rb', line 216 def self.list(node_name,tmp_email=nil, tmp_api_key=nil) appreq = self.new(tmp_email, tmp_api_key) appreq.megam_rest.get_appreq(node_name) #self end |
Instance Method Details
#appdefns_id(arg = nil) ⇒ Object
53 54 55 56 57 58 59 |
# File 'lib/megam/core/app_request.rb', line 53 def appdefns_id(arg=nil) if arg != nil @appdefns_id = arg else @appdefns_id end end |
#appreq ⇒ Object
32 33 34 |
# File 'lib/megam/core/app_request.rb', line 32 def appreq self end |
#create ⇒ Object
Create the node via the REST API
211 212 213 |
# File 'lib/megam/core/app_request.rb', line 211 def create megam_rest.post_appreq(to_hash) end |
#created_at(arg = nil) ⇒ Object
93 94 95 96 97 98 99 |
# File 'lib/megam/core/app_request.rb', line 93 def created_at(arg=nil) if arg != nil @created_at = arg else @created_at end end |
#error? ⇒ Boolean
108 109 110 |
# File 'lib/megam/core/app_request.rb', line 108 def error? crocked = true if (some_msg.has_key?(:msg_type) && some_msg[:msg_type] == "error") end |
#for_json ⇒ Object
134 135 136 137 138 139 140 141 142 143 144 145 146 |
# File 'lib/megam/core/app_request.rb', line 134 def for_json result = { "id" => id, "req_type" => req_type, "appdefns_id" => appdefns_id, "node_name" => node_name, "lc_apply" => lc_apply, "lc_additional" => lc_additional, "lc_when" => lc_when, "created_at" => created_at } result end |
#from_hash(o) ⇒ Object
193 194 195 196 197 198 199 200 201 202 203 |
# File 'lib/megam/core/app_request.rb', line 193 def from_hash(o) @id = o["id"] if o.has_key?("id") @req_type = o["req_type"] if o.has_key?("req_type") @appdefns_id = o["appdefns_id"] if o.has_key?("appdefns_id") @node_name = o["node_name"] if o.has_key?("node_name") @lc_apply = o["lc_apply"] if o.has_key?("lc_apply") @lc_additional = o["lc_additional"] if o.has_key?("lc_additional") @lc_when = o["lc_when"] if o.has_key?("lc_when") @created_at = o["created_at"] if o.has_key?("created_at") self end |
#id(arg = nil) ⇒ Object
37 38 39 40 41 42 43 |
# File 'lib/megam/core/app_request.rb', line 37 def id(arg=nil) if arg != nil @id = arg else @id end end |
#lc_additional(arg = nil) ⇒ Object
77 78 79 80 81 82 83 |
# File 'lib/megam/core/app_request.rb', line 77 def lc_additional(arg=nil) if arg != nil @lc_additional = arg else @lc_additional end end |
#lc_apply(arg = nil) ⇒ Object
69 70 71 72 73 74 75 |
# File 'lib/megam/core/app_request.rb', line 69 def lc_apply(arg=nil) if arg != nil @lc_apply = arg else @lc_apply end end |
#lc_when(arg = nil) ⇒ Object
85 86 87 88 89 90 91 |
# File 'lib/megam/core/app_request.rb', line 85 def lc_when(arg=nil) if arg != nil @lc_when = arg else @lc_when end end |
#node_name(arg = nil) ⇒ Object
61 62 63 64 65 66 67 |
# File 'lib/megam/core/app_request.rb', line 61 def node_name(arg=nil) if arg != nil @node_name = arg else @node_name end end |
#req_type(arg = nil) ⇒ Object
45 46 47 48 49 50 51 |
# File 'lib/megam/core/app_request.rb', line 45 def req_type(arg=nil) if arg != nil @req_type = arg else @req_type end end |
#some_msg(arg = nil) ⇒ Object
100 101 102 103 104 105 106 |
# File 'lib/megam/core/app_request.rb', line 100 def some_msg(arg=nil) if arg != nil @some_msg = arg else @some_msg end end |
#to_hash ⇒ Object
Transform the ruby obj -> to a Hash
113 114 115 116 117 118 119 120 121 122 123 124 125 126 |
# File 'lib/megam/core/app_request.rb', line 113 def to_hash index_hash = Hash.new index_hash["json_claz"] = self.class.name index_hash["id"] = id index_hash["req_type"] = req_type index_hash["appdefns_id"] = appdefns_id index_hash["node_name"] = node_name index_hash["lc_apply"] = lc_apply index_hash["lc_additional"] = lc_additional index_hash["lc_when"] = lc_when index_hash["created_at"] = created_at index_hash["some_msg"] = some_msg index_hash end |
#to_json(*a) ⇒ Object
Serialize this object as a hash: called from JsonCompat. Verify if this called from JsonCompat during testing.
130 131 132 |
# File 'lib/megam/core/app_request.rb', line 130 def to_json(*a) for_json.to_json(*a) end |
#to_s ⇒ Object
222 223 224 |
# File 'lib/megam/core/app_request.rb', line 222 def to_s Megam::Stuff.styled_hash(to_hash) end |