Class: Morpheus::Cli::LibraryContainerScriptsCommand
- Inherits:
-
Object
- Object
- Morpheus::Cli::LibraryContainerScriptsCommand
show all
- Includes:
- CliCommand
- Defined in:
- lib/morpheus/cli/library_container_scripts_command.rb
Instance Attribute Summary
Attributes included from CliCommand
#no_prompt
Instance Method Summary
collapse
Methods included from CliCommand
#build_common_options, #build_option_type_options, #command_name, #default_subcommand, #establish_remote_appliance_connection, #full_command_usage, #handle_subcommand, included, #interactive?, #my_help_command, #my_terminal, #my_terminal=, #parse_id_list, #parse_list_options, #parse_list_subtitles, #print, #print_error, #print_to_file, #puts, #puts_error, #raise_command_error, #render_with_format, #run_command_for_each_arg, #subcommand_aliases, #subcommand_usage, #subcommands, #usage, #verify_access_token!
Instance Method Details
#_get(id, options) ⇒ Object
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
139
140
141
142
143
144
|
# File 'lib/morpheus/cli/library_container_scripts_command.rb', line 91
def _get(id, options)
begin
container_script = find_container_script_by_name_or_id(id)
if container_script.nil?
return 1
end
@container_scripts_interface.setopts(options)
if options[:dry_run]
print_dry_run @container_scripts_interface.dry.get(container_script['id'])
return
end
json_response = @container_scripts_interface.get(container_script['id'])
container_script = json_response['containerScript']
instances = json_response['instances'] || []
servers = json_response['servers'] || []
if options[:json]
puts as_json(json_response, options, "containerScript")
return 0
elsif options[:yaml]
puts as_yaml(json_response, options, "containerScript")
return 0
elsif options[:csv]
puts records_as_csv([json_response["containerScript"]], options)
return 0
end
print_h1 "Container Script Details"
print cyan
description_cols = {
"ID" => lambda {|it| it['id'] },
"Name" => lambda {|it| it['name'] },
"Type" => lambda {|it| format_container_script_type(it['scriptType']) },
"Phase" => lambda {|it| format_container_script_phase(it['scriptPhase']) },
"Owner" => lambda {|it| it['account'] ? it['account']['name'] : '' },
}
print_description_list(description_cols, container_script)
print_h2 "Script"
puts container_script['script']
print reset,"\n"
rescue RestClient::Exception => e
print_rest_exception(e, options)
return 1
end
end
|
#add(args) ⇒ Object
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
|
# File 'lib/morpheus/cli/library_container_scripts_command.rb', line 146
def add(args)
options = {}
params = {'scriptType' => 'bash', 'scriptPhase' => 'provision'}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[name]")
opts.on('--name VALUE', String, "Name") do |val|
params['name'] = val
end
opts.on('--type [bash|powershell]', String, "Script Type. Default is 'bash'") do |val|
params['scriptType'] = val
end
opts.on('--phase [provision|start|stop]', String, "Script Phase. Default is 'provision'") do |val|
params['scriptPhase'] = val
end
opts.on('--category VALUE', String, "Category") do |val|
params['category'] = val
end
opts.on('--script TEXT', String, "Contents of the script.") do |val|
params['script'] = 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.exists?(full_filename)
params['script'] = File.read(full_filename)
else
print_red_alert "File not found: #{full_filename}"
exit 1
end
if !params['name']
params['name'] = File.basename(full_filename)
end
end
build_common_options(opts, options, [:options, :payload, :json, :dry_run, :remote, :quiet])
opts. = "Create a new container script." + "\n" +
"[name] is required and can be passed as --name instead."
end
optparse.parse!(args)
if args[0]
params['name'] = args[0]
end
if !params['name']
print_error Morpheus::Terminal.angry_prompt
puts_error "wrong number of arguments, expected 0-1 and got (#{args.count}) #{args.inspect}\n#{optparse}"
return 1
end
connect(options)
begin
payload = nil
if options[:payload]
payload = options[:payload]
else
params.deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
payload = {'containerScript' => params}
end
@container_scripts_interface.setopts(options)
if options[:dry_run]
print_dry_run @container_scripts_interface.dry.create(payload)
return
end
json_response = @container_scripts_interface.create(payload)
if options[:json]
puts as_json(json_response, options)
elsif !options[:quiet]
container_script = json_response['containerScript']
print_green_success "Added container script #{container_script['name']}"
_get(container_script['id'], {})
end
return 0
rescue RestClient::Exception => e
print_rest_exception(e, options)
return 1
end
end
|
#connect(opts) ⇒ Object
10
11
12
13
|
# File 'lib/morpheus/cli/library_container_scripts_command.rb', line 10
def connect(opts)
@api_client = establish_remote_appliance_connection(opts)
@container_scripts_interface = Morpheus::APIClient.new(@access_token,nil,nil, @appliance_url).library_container_scripts
end
|
#get(args) ⇒ Object
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
# File 'lib/morpheus/cli/library_container_scripts_command.rb', line 73
def get(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[name]")
build_common_options(opts, options, [:json, :yaml, :csv, :fields, :dry_run, :remote])
end
optparse.parse!(args)
if args.count < 1
puts optparse
return 1
end
connect(options)
id_list = parse_id_list(args)
return run_command_for_each_arg(id_list) do |arg|
_get(arg, options)
end
end
|
#handle(args) ⇒ Object
15
16
17
|
# File 'lib/morpheus/cli/library_container_scripts_command.rb', line 15
def handle(args)
handle_subcommand(args)
end
|
#list(args) ⇒ Object
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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
|
# File 'lib/morpheus/cli/library_container_scripts_command.rb', line 19
def list(args)
options = {}
params = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage()
build_common_options(opts, options, [:list, :query, :json, :yaml, :csv, :fields, :dry_run, :remote])
opts. = "List container scripts."
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
begin
params.merge!(parse_list_options(options))
@container_scripts_interface.setopts(options)
if options[:dry_run]
print_dry_run @container_scripts_interface.dry.list(params)
return
end
json_response = @container_scripts_interface.list(params)
if options[:json]
puts as_json(json_response, options, "containerScripts")
return 0
elsif options[:csv]
puts records_as_csv(json_response['containerScripts'], options)
return 0
elsif options[:yaml]
puts as_yaml(json_response, options, "containerScripts")
return 0
end
container_scripts = json_response['containerScripts']
title = "Morpheus Library - Scripts"
subtitles = []
subtitles += parse_list_subtitles(options)
print_h1 title, subtitles
if container_scripts.empty?
print cyan,"No container scripts found.",reset,"\n"
else
print_container_scripts_table(container_scripts, options)
(json_response, {:label => "container script", :n_label => "container scripts"})
end
print reset,"\n"
rescue RestClient::Exception => e
print_rest_exception(e, options)
return 1
end
end
|
#remove(args) ⇒ Object
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
|
# File 'lib/morpheus/cli/library_container_scripts_command.rb', line 311
def remove(args)
options = {}
params = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[name]")
build_common_options(opts, options, [:json, :dry_run, :quiet, :auto_confirm])
end
optparse.parse!(args)
if args.count < 1
puts optparse
return 127
end
connect(options)
begin
container_script = find_container_script_by_name_or_id(args[0])
if container_script.nil?
return 1
end
unless options[:yes] || ::Morpheus::Cli::OptionTypes::confirm("Are you sure you would like to delete container script '#{container_script['name']}'?", options)
return false
end
payload = params
@container_scripts_interface.setopts(options)
if options[:dry_run]
print_dry_run @container_scripts_interface.dry.destroy(container_script["id"])
return
end
json_response = @container_scripts_interface.destroy(container_script["id"])
if options[:json]
puts as_json(json_response, options)
elsif !options[:quiet]
print_green_success "Deleted container script #{container_script['name']}"
end
return 0, nil
rescue RestClient::Exception => e
print_rest_exception(e, options)
return 1
end
end
|
#update(args) ⇒ Object
229
230
231
232
233
234
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
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
|
# File 'lib/morpheus/cli/library_container_scripts_command.rb', line 229
def update(args)
options = {}
params = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[name]")
opts.on('--name VALUE', String, "Name") do |val|
params['name'] = val
end
opts.on('--type [bash|powershell]', String, "Script Type") do |val|
params['scriptType'] = val
end
opts.on('--phase [start|stop]', String, "Script Phase") do |val|
params['scriptPhase'] = val
end
opts.on('--category VALUE', String, "Category") do |val|
params['category'] = val
end
opts.on('--script TEXT', String, "Contents of the script.") do |val|
params['script'] = 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.exists?(full_filename)
params['script'] = File.read(full_filename)
else
print_red_alert "File not found: #{full_filename}"
exit 1
end
end
build_common_options(opts, options, [:options, :payload, :json, :dry_run, :remote, :quiet])
opts. = "Update a container script." + "\n" +
"[name] is required. This is the name or id of a container script."
end
optparse.parse!(args)
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
connect(options)
begin
container_script = find_container_script_by_name_or_id(args[0])
if container_script.nil?
return 1
end
payload = nil
if options[:payload]
payload = options[:payload]
else
params.deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
payload = {'containerScript' => params}
end
@container_scripts_interface.setopts(options)
if options[:dry_run]
print_dry_run @container_scripts_interface.dry.update(container_script["id"], payload)
return
end
json_response = @container_scripts_interface.update(container_script["id"], payload)
if options[:json]
puts as_json(json_response, options)
elsif !options[:quiet]
print_green_success "Updated container script #{container_script['name']}"
_get(container_script['id'], {})
end
return 0
rescue RestClient::Exception => e
print_rest_exception(e, options)
return 1
end
end
|