Class: Morpheus::Cli::ExecutionRequestCommand
- Inherits:
-
Object
- Object
- Morpheus::Cli::ExecutionRequestCommand
show all
- Includes:
- CliCommand
- Defined in:
- lib/morpheus/cli/commands/execution_request_command.rb
Instance Attribute Summary
Attributes included from CliCommand
#no_prompt
Instance Method Summary
collapse
Methods included from CliCommand
#add_query_parameter, #apply_options, #build_common_options, #build_get_options, #build_list_options, #build_option_type_options, #build_standard_add_many_options, #build_standard_add_options, #build_standard_api_options, #build_standard_delete_options, #build_standard_get_options, #build_standard_list_options, #build_standard_post_options, #build_standard_put_options, #build_standard_remove_options, #build_standard_update_options, #command_description, #command_name, #confirm, #confirm!, #default_sigdig, #default_subcommand, #establish_remote_appliance_connection, #execute_api, #execute_api_payload, #execute_api_request, #find_all, #find_all_json, #find_by_id, #find_by_name, #find_by_name_or_id, #find_record, #find_record_json, #full_command_usage, #get_interface, #get_list_key, #get_object_key, #get_subcommand_description, #handle_each_payload, #handle_subcommand, included, #interactive?, #my_help_command, #my_terminal, #my_terminal=, #parse_array, #parse_bytes_param, #parse_get_options!, #parse_id_list, #parse_labels, #parse_list_options, #parse_list_options!, #parse_list_subtitles, #parse_options, #parse_parameter_as_resource_id!, #parse_passed_options, #parse_payload, #parse_query_options, #print, #print_error, #println, #prog_name, #puts, #puts_error, #raise_args_error, #raise_command_error, #render_response, #run_command_for_each_arg, #subcommand_aliases, #subcommand_description, #subcommand_usage, #subcommands, #usage, #validate_outfile, #verify_args!, #visible_subcommands
Constructor Details
Returns a new instance of ExecutionRequestCommand.
16
17
18
|
# File 'lib/morpheus/cli/commands/execution_request_command.rb', line 16
def initialize()
end
|
Instance Method Details
#connect(opts) ⇒ Object
20
21
22
23
24
25
26
|
# File 'lib/morpheus/cli/commands/execution_request_command.rb', line 20
def connect(opts)
@api_client = establish_remote_appliance_connection(opts)
@execution_request_interface = @api_client.execution_request
end
|
#default_refresh_interval ⇒ Object
32
33
34
|
# File 'lib/morpheus/cli/commands/execution_request_command.rb', line 32
def default_refresh_interval
5
end
|
#execute(args) ⇒ Object
140
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
|
# File 'lib/morpheus/cli/commands/execution_request_command.rb', line 140
def execute(args)
options = {}
params = {}
script_content = nil
send_keys = nil
options[:refresh_until_finished] = true
optparse = Morpheus::Cli::OptionParser.new do|opts|
opts.banner = subcommand_usage("[options]")
opts.on('--server ID', String, "Server ID") do |val|
params['serverId'] = val
end
opts.on('--instance ID', String, "Instance ID") do |val|
params['instanceId'] = val
end
opts.on('--container ID', String, "Container ID") do |val|
params['containerId'] = val
end
opts.on('--request ID', String, "Execution Request ID") do |val|
params['requestId'] = val
end
opts.on('--script SCRIPT', "Script to be executed" ) do |val|
script_content = val
end
opts.on('--optionTypes [true|false]', String, "Include optionTypes in the response. Default is false.") do |val|
params['optionTypes'] = (val.to_s == '' || val.to_s == 'on' || val.to_s == 'true')
end
opts.on('--send-keys [true|false]', "Send key mappings to the hypervisor console so commands such as <LEFT>, <RIGHT> and <WAIT> can be used." ) do |val|
send_keys = val.to_s == 'on' || val.to_s == 'true' || val.to_s.empty?
end
opts.on('--refresh [SECONDS]', String, "Refresh until execution is finished. Default interval is #{default_refresh_interval} seconds.") do |val|
options[:refresh_until_finished] = true
if !val.to_s.empty?
options[:refresh_interval] = val.to_f
end
end
opts.on(nil, '--no-refresh', "Do not refresh. The default behavior is to refresh until finished." ) do
options[:refresh_until_finished] = false
end
build_common_options(opts, options, [:options, :payload, :json, :dry_run, :quiet, :remote])
opts. = "Execute an arbitrary script." + "\n" +
"[server] or [instance] or [container] is required. This is the id of a server, instance or container." + "\n" +
"[script] is required. This is the script that is to be executed."
end
optparse.parse!(args)
connect(options)
if args.count != 0
print_error Morpheus::Terminal.angry_prompt
puts_error "wrong number of arguments, expected 0 and got (#{args.count}) #{args.inspect}\n#{optparse}"
return 1
end
if params['serverId'].nil? && params['instanceId'].nil? && params['containerId'].nil? && params['requestId'].nil?
puts_error "#{Morpheus::Terminal.angry_prompt}missing required option: --server or --instance or --container\n#{optparse}"
return 1
end
begin
payload = {}
if options[:payload]
payload = options[:payload]
else
payload.deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
if script_content.nil?
v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'script', 'type' => 'code-editor', 'fieldLabel' => 'Script', 'required' => true, 'description' => 'The script content'}], options[:options])
script_content = v_prompt['script']
end
payload['script'] = script_content
if !send_keys.nil?
payload['sendKeys'] = send_keys
end
end
@execution_request_interface.setopts(options)
if options[:dry_run]
print_dry_run @execution_request_interface.dry.create(params, payload)
return 0
end
json_response = @execution_request_interface.create(params, payload)
if options[:quiet]
return 0
elsif options[:json]
puts as_json(json_response, options)
return 0
end
execution_request = json_response['executionRequest']
print_green_success "Executing request #{execution_request['uniqueId']}"
if options[:refresh_until_finished]
get([execution_request['uniqueId'], "--refresh", options[:refresh_interval] ? options[:refresh_interval].to_s : nil].compact + (options[:remote] ? ["-r",options[:remote]] : []))
else
get([execution_request['uniqueId']] + (options[:remote] ? ["-r",options[:remote]] : []))
end
return 0
rescue RestClient::Exception => e
print_rest_exception(e, options)
exit 1
end
end
|
#execute_against_lease(args) ⇒ Object
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
|
# File 'lib/morpheus/cli/commands/execution_request_command.rb', line 241
def execute_against_lease(args)
options = {}
params = {}
do_refresh = true
script_content = nil
optparse = Morpheus::Cli::OptionParser.new do|opts|
opts.banner = subcommand_usage("[uid] [options]")
opts.on('--script SCRIPT', "Script to be executed" ) do |val|
script_content = val
end
opts.on('--file FILE', "File containing the script. This can be used instead of --script" ) do |filename|
full_filename = File.expand_path(filename)
if File.exist?(full_filename)
script_content = File.read(full_filename)
else
print_red_alert "File not found: #{full_filename}"
exit 1
end
end
opts.on(nil, '--no-refresh', "Do not refresh until finished" ) do
do_refresh = false
end
build_common_options(opts, options, [:options, :payload, :json, :dry_run, :quiet, :remote])
opts. = "Execute request against lease.\n" +
"[uid] is required. This is the unique id of the execution request.\n" +
"[script] is required. This is the script that is to be executed."
end
optparse.parse!(args)
connect(options)
if args.count != 1
print_error Morpheus::Terminal.angry_prompt
puts_error "wrong number of arguments, expected 1 and got (#{args.count}) #{args.inspect}\n#{optparse}"
return 1
end
execution_request_id = args[0]
begin
payload = {}
if options[:payload]
payload = options[:payload]
else
payload.deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
if script_content
payload['script'] = script_content
end
end
@execution_request_interface.setopts(options)
if options[:dry_run]
print_dry_run @execution_request_interface.dry.execute_against_lease(execution_request_id, params, payload)
return 0
end
json_response = @execution_request_interface.execute_against_lease(execution_request_id, params, payload)
if options[:quiet]
return 0
elsif options[:json]
puts as_json(json_response, options)
return 0
end
execution_request = json_response['executionRequest']
print_green_success "Executing request #{execution_request['uniqueId']} against lease"
if do_refresh
get([execution_request['uniqueId'], "--refresh"] + (options[:remote] ? ["-r",options[:remote]] : []))
else
get([execution_request['uniqueId']] + (options[:remote] ? ["-r",options[:remote]] : []))
end
return 0
rescue RestClient::Exception => e
print_rest_exception(e, options)
exit 1
end
end
|
316
317
318
319
320
321
322
323
324
325
326
327
|
# File 'lib/morpheus/cli/commands/execution_request_command.rb', line 316
def format_execution_request_status(execution_request, return_color=cyan)
out = ""
status_str = execution_request['status']
if status_str == 'complete'
out << "#{green}#{status_str.upcase}#{return_color}"
elsif status_str == 'failed' || status_str == 'expired'
out << "#{red}#{status_str.upcase}#{return_color}"
else
out << "#{cyan}#{status_str.upcase}#{return_color}"
end
out
end
|
#get(args) ⇒ Object
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
|
# File 'lib/morpheus/cli/commands/execution_request_command.rb', line 36
def get(args)
raw_args = args
options = {}
params = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[uid]")
build_common_options(opts, options, [:query, :json, :yaml, :csv, :fields, :dry_run, :remote])
opts.on('--refresh [SECONDS]', String, "Refresh until execution is finished. Default interval is #{default_refresh_interval} seconds.") do |val|
options[:refresh_until_finished] = true
if !val.to_s.empty?
options[:refresh_interval] = val.to_f
end
end
opts. = "Get details about an execution request." + "\n" +
"[uid] is required. This is the unique id of an execution request."
end
optparse.parse!(args)
connect(options)
if args.count != 1
print_error Morpheus::Terminal.angry_prompt
puts_error "wrong number of arguments, expected 1 and got (#{args.count}) #{args.inspect}\n#{optparse}"
return 1
end
execution_request_id = args[0]
begin
params.merge!(parse_list_options(options))
@execution_request_interface.setopts(options)
if options[:dry_run]
print_dry_run @execution_request_interface.dry.get(execution_request_id, params)
return
end
json_response = @execution_request_interface.get(execution_request_id, params)
if options[:json]
puts as_json(json_response, options, "executionRequest")
return 0
elsif options[:yaml]
puts as_yaml(json_response, options, "executionRequest")
return 0
elsif options[:csv]
puts records_as_csv([json_response['executionRequest']], options)
return 0
end
execution_request = json_response['executionRequest']
if options[:refresh_until_finished]
if options[:refresh_interval].nil? || options[:refresh_interval].to_f < 0
options[:refresh_interval] = default_refresh_interval
end
if !(execution_request['status'] == 'pending' || execution_request['status'] == 'new')
else
print cyan
refresh_display_seconds = options[:refresh_interval] % 1.0 == 0 ? options[:refresh_interval].to_i : options[:refresh_interval]
print "Execution request has not yet finished. Refreshing every #{refresh_display_seconds} seconds"
while execution_request['status'] == 'pending' || execution_request['status'] == 'new' do
sleep(options[:refresh_interval])
print cyan,".",reset
json_response = @execution_request_interface.get(execution_request_id, params)
execution_request = json_response['executionRequest']
end
print "\n", reset
end
end
print_h1 "Execution Request Details"
print cyan
description_cols = {
"Unique ID" => lambda {|it| it['uniqueId'] },
"Server ID" => lambda {|it| it['serverId'] },
"Instance ID" => lambda {|it| it['instanceId'] },
"Container ID" => lambda {|it| it['containerId'] },
"Expires At" => lambda {|it| format_local_dt it['expiresAt'] },
"Exit Code" => lambda {|it| it['exitCode'] },
"Status" => lambda {|it| format_execution_request_status(it) },
}
description_cols.delete("Server ID") if execution_request['serverId'].nil?
description_cols.delete("Instance ID") if execution_request['instanceId'].nil?
description_cols.delete("Container ID") if execution_request['containerId'].nil?
description_cols.delete("Exit Code") if execution_request['exitCode'].nil?
print_description_list(description_cols, execution_request)
if execution_request['stdErr'].to_s.strip != '' && execution_request['stdErr'] != "stdin: is not a tty\n"
print_h2 "Error"
puts execution_request['stdErr'].to_s.strip
end
if execution_request['stdOut']
print_h2 "Output"
puts execution_request['stdOut'].to_s.strip
end
print reset, "\n"
return 0
rescue RestClient::Exception => e
print_rest_exception(e, options)
return 1
end
end
|
#handle(args) ⇒ Object
28
29
30
|
# File 'lib/morpheus/cli/commands/execution_request_command.rb', line 28
def handle(args)
handle_subcommand(args)
end
|