Class: Megam::BoltRequest
- Inherits:
-
Object
- Object
- Megam::BoltRequest
- Defined in:
- lib/megam/core/bolt_request.rb
Class Method Summary collapse
- .create(o) ⇒ Object
- .from_hash(o) ⇒ Object
-
.json_create(o) ⇒ Object
Create a Megam::Node from NodeResult-JSON.
-
.list(node_name) ⇒ Object
Load a account by email_p.
Instance Method Summary collapse
- #boltdefns_id(arg = nil) ⇒ Object
- #boltreqs ⇒ 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 ⇒ BoltRequest
constructor
def self.hash_tree Hash.new do |hash, key| hash = hash_tree end end.
- #lc_additional(arg = nil) ⇒ Object
- #lc_apply(arg = nil) ⇒ Object
- #lc_when(arg = nil) ⇒ Object
- #megam_rest ⇒ 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
Constructor Details
#initialize ⇒ BoltRequest
def self.hash_tree
Hash.new do |hash, key|
hash[key] = hash_tree
end
end
28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/megam/core/bolt_request.rb', line 28 def initialize @id = nil @req_type = nil @boltdefns_id = nil @node_name = nil @lc_apply = nil @lc_additional = nil @lc_when = nil @created_at = nil @some_msg = {} end |
Class Method Details
.create(o) ⇒ Object
217 218 219 220 |
# File 'lib/megam/core/bolt_request.rb', line 217 def self.create(o) acct = from_hash(o) acct.create end |
.from_hash(o) ⇒ Object
199 200 201 202 203 |
# File 'lib/megam/core/bolt_request.rb', line 199 def self.from_hash(o) boltreqs = self.new() boltreqs.from_hash(o) boltreqs 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”:“” } }]
180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 |
# File 'lib/megam/core/bolt_request.rb', line 180 def self.json_create(o) boltreqs = new boltreqs.id(o["id"]) if o.has_key?("id") boltreqs.req_type(o["req_type"]) if o.has_key?("req_type") boltreqs.boltdefns_id(o["boltdefns_id"]) if o.has_key?("boltdefns_id") boltreqs.node_name(o["node_name"]) if o.has_key?("node_name") boltreqs.lc_apply(o["lc_apply"]) if o.has_key?("lc_apply") boltreqs.lc_additional(o["lc_additional"]) if o.has_key?("lc_additional") boltreqs.lc_when(o["lc_when"]) if o.has_key?("lc_when") boltreqs.created_at(o["created_at"]) if o.has_key?("created_at") boltreqs.some_msg[:code] = o["code"] if o.has_key?("code") boltreqs.some_msg[:msg_type] = o["msg_type"] if o.has_key?("msg_type") boltreqs.some_msg[:msg]= o["msg"] if o.has_key?("msg") boltreqs.some_msg[:links] = o["links"] if o.has_key?("links") boltreqs end |
.list(node_name) ⇒ Object
Load a account by email_p
228 229 230 231 |
# File 'lib/megam/core/bolt_request.rb', line 228 def self.list(node_name) boltreq = self.new() boltreq.megam_rest.get_boltreq(node_name) end |
Instance Method Details
#boltdefns_id(arg = nil) ⇒ Object
64 65 66 67 68 69 70 |
# File 'lib/megam/core/bolt_request.rb', line 64 def boltdefns_id(arg=nil) if arg != nil @boltdefns_id = arg else @boltdefns_id end end |
#boltreqs ⇒ Object
39 40 41 |
# File 'lib/megam/core/bolt_request.rb', line 39 def boltreqs self end |
#create ⇒ Object
Create the node via the REST API
223 224 225 |
# File 'lib/megam/core/bolt_request.rb', line 223 def create megam_rest.post_boltreq(to_hash) end |
#created_at(arg = nil) ⇒ Object
104 105 106 107 108 109 110 |
# File 'lib/megam/core/bolt_request.rb', line 104 def created_at(arg=nil) if arg != nil @created_at = arg else @created_at end end |
#error? ⇒ Boolean
120 121 122 |
# File 'lib/megam/core/bolt_request.rb', line 120 def error? crocked = true if (some_msg.has_key?(:msg_type) && some_msg[:msg_type] == "error") end |
#for_json ⇒ Object
146 147 148 149 150 151 152 153 154 155 156 157 158 |
# File 'lib/megam/core/bolt_request.rb', line 146 def for_json result = { "id" => id, "req_type" => req_type, "boltdefns_id" => boltdefns_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
205 206 207 208 209 210 211 212 213 214 215 |
# File 'lib/megam/core/bolt_request.rb', line 205 def from_hash(o) @id = o["id"] if o.has_key?("id") @req_type = o["req_type"] if o.has_key?("req_type") @boltdefns_id = o["boltdefns_id"] if o.has_key?("boltdefns_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
48 49 50 51 52 53 54 |
# File 'lib/megam/core/bolt_request.rb', line 48 def id(arg=nil) if arg != nil @id = arg else @id end end |
#lc_additional(arg = nil) ⇒ Object
88 89 90 91 92 93 94 |
# File 'lib/megam/core/bolt_request.rb', line 88 def lc_additional(arg=nil) if arg != nil @lc_additional = arg else @lc_additional end end |
#lc_apply(arg = nil) ⇒ Object
80 81 82 83 84 85 86 |
# File 'lib/megam/core/bolt_request.rb', line 80 def lc_apply(arg=nil) if arg != nil @lc_apply = arg else @lc_apply end end |
#lc_when(arg = nil) ⇒ Object
96 97 98 99 100 101 102 |
# File 'lib/megam/core/bolt_request.rb', line 96 def lc_when(arg=nil) if arg != nil @lc_when = arg else @lc_when end end |
#megam_rest ⇒ Object
43 44 45 46 |
# File 'lib/megam/core/bolt_request.rb', line 43 def megam_rest = { :email => Megam::Config[:email], :api_key => Megam::Config[:api_key]} Megam::API.new() end |
#node_name(arg = nil) ⇒ Object
72 73 74 75 76 77 78 |
# File 'lib/megam/core/bolt_request.rb', line 72 def node_name(arg=nil) if arg != nil @node_name = arg else @node_name end end |
#req_type(arg = nil) ⇒ Object
56 57 58 59 60 61 62 |
# File 'lib/megam/core/bolt_request.rb', line 56 def req_type(arg=nil) if arg != nil @req_type = arg else @req_type end end |
#some_msg(arg = nil) ⇒ Object
111 112 113 114 115 116 117 |
# File 'lib/megam/core/bolt_request.rb', line 111 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
125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
# File 'lib/megam/core/bolt_request.rb', line 125 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["boltdefns_id"] = boltdefns_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.
142 143 144 |
# File 'lib/megam/core/bolt_request.rb', line 142 def to_json(*a) for_json.to_json(*a) end |
#to_s ⇒ Object
233 234 235 236 |
# File 'lib/megam/core/bolt_request.rb', line 233 def to_s Megam::Stuff.styled_hash(to_hash) #"---> Megam::Account:[error=#{error?}]\n"+ end |