Class: Morpheus::Cli::NetworkScopesCommand
Instance Attribute Summary
Attributes included from CliCommand
#no_prompt
Instance Method Summary
collapse
#current_account, #current_user, #current_user_permissions, included, #is_master_account, #load_whoami
#accounts_interface, #add_perms_options, #api_client, #apps_interface, #cloud_datastores_interface, #clouds_interface, #datastores_interface, #find_app_by_id, #find_app_by_name, #find_app_by_name_or_id, #find_cloud_by_id_for_provisioning, #find_cloud_by_name_for_provisioning, #find_cloud_by_name_or_id_for_provisioning, #find_cloud_resource_pool_by_name_or_id, #find_group_by_id_for_provisioning, #find_group_by_name_for_provisioning, #find_group_by_name_or_id_for_provisioning, #find_host_by_id, #find_host_by_name, #find_host_by_name_or_id, #find_instance_by_id, #find_instance_by_name, #find_instance_by_name_or_id, #find_instance_type_by_code, #find_instance_type_by_id, #find_instance_type_by_name, #find_instance_type_by_name_or_id, #find_instance_type_layout_by_id, #find_server_by_id, #find_server_by_name, #find_server_by_name_or_id, #find_workflow_by_id, #find_workflow_by_name, #find_workflow_by_name_or_id, #format_app_status, #format_blueprint_type, #format_container_connection_string, #format_container_status, #format_instance_connection_string, #format_instance_container_display_name, #format_instance_status, #format_metadata, #format_snapshot_status, #get_available_accounts, #get_available_clouds, #get_available_environments, #get_available_groups, #get_available_plans, #get_provision_type_for_zone_type, #get_static_environments, included, #instance_type_layouts_interface, #instance_types_interface, #instances_interface, #load_balance_protocols_dropdown, #options_interface, #parse_blueprint_type, #parse_host_id_list, #parse_instance_id_list, #parse_metadata, #parse_resource_id_list, #parse_server_id_list, #print_permissions, #prompt_evars, #prompt_exposed_ports, #prompt_instance_load_balancer, #prompt_metadata, #prompt_network_interfaces, #prompt_new_instance, #prompt_permissions, #prompt_resize_volumes, #prompt_security_groups, #prompt_volumes, #provision_types_interface, #reject_service_plan_option_types, #servers_interface
Methods included from CliCommand
#apply_options, #build_common_options, #build_option_type_options, #build_standard_add_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, #default_refresh_interval, #default_sigdig, #default_subcommand, #establish_remote_appliance_connection, #full_command_usage, #get_subcommand_description, #handle_subcommand, included, #interactive?, #my_help_command, #my_terminal, #my_terminal=, #parse_bytes_param, #parse_id_list, #parse_list_options, #parse_list_subtitles, #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
Instance Method Details
#_get(server, scope_id, options) ⇒ Object
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
|
# File 'lib/morpheus/cli/network_scopes_command.rb', line 98
def _get(server, scope_id, options)
@network_servers_interface.setopts(options)
if options[:dry_run]
if scope_id.to_s =~ /\A\d{1,}\Z/
print_dry_run @network_servers_interface.dry.get_scope(server['id'], scope_id.to_i)
else
print_dry_run @network_servers_interface.dry.list_scopes(server['id'], {name: scope_id})
end
return
end
if server['type']['hasScopes']
scope = find_scope(server['id'], scope_id)
return 1 if scope.nil?
render_response({networkScope: scope}, options, 'networkScope') do
print_h1 "Network Scope Details"
print cyan
description_cols = {
"ID" => lambda {|it| it['id']},
"Name" => lambda {|it| it['name']},
"Description" => lambda {|it| it['description']},
"Status" => lambda {|it| it['status']}
}
if is_master_account
description_cols["Visibility"] = lambda {|it| it['visibility']}
description_cols["Tenants"] = lambda {|it| it['tenants'].collect {|tenant| tenant['name']}.join(', ')}
end
server['type']['scopeOptionTypes'].sort_by {|it| it['displayOrder']}.each do |option_type|
description_cols[option_type['fieldLabel']] = lambda {|it| Morpheus::Cli::OptionTypes.get_option_value(it, option_type, true)}
end
print_description_list(description_cols, scope)
end
else
print_red_alert "Scopes not supported for #{server['type']['name']}"
end
println reset
end
|
#_list(server, options) ⇒ Object
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# File 'lib/morpheus/cli/network_scopes_command.rb', line 51
def _list(server, options)
@network_servers_interface.setopts(options)
if options[:dry_run]
print_dry_run @network_servers_interface.dry.list_scopes(server['id'])
return
end
if server['type']['hasScopes']
json_response = @network_servers_interface.list_scopes(server['id'])
render_response(json_response, options, 'networkScopes') do
print_h1 "Network Scopes For: #{server['name']}"
print cyan
print_scopes(server, json_response['networkScopes'])
end
else
print_red_alert "Scopes not supported for #{server['type']['name']}"
end
print reset
end
|
#add(args) ⇒ Object
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
|
# File 'lib/morpheus/cli/network_scopes_command.rb', line 142
def add(args)
options = {:options=>{}}
params = {}
optparse = Morpheus::Cli::OptionParser.new do|opts|
opts.banner = subcommand_usage("[server]")
opts.on( '--name NAME', "Name" ) do |val|
options[:name] = val.to_s
end
opts.on("--description [TEXT]", String, "Description") do |val|
options[:description] = val.to_s
end
add_perms_options(opts, options, ['plans', 'groups'])
build_common_options(opts, options, [:options, :payload, :json, :dry_run, :remote])
opts. = "Create a network scope." + "\n" +
"[server] is required. This is the name or id of a network server.\n";
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
server = find_network_server(args[0])
if server.nil?
return 1
end
if !server['type']['hasScopes']
print_red_alert "Scopes not supported for #{server['type']['name']}"
return 1
end
if options[:payload]
payload = options[:payload]
else
params['name'] = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'name', 'type' => 'text', 'fieldLabel' => 'Name', 'required' => true, 'description' => 'Name.'}],options[:options],@api_client,{})['name']
params['description'] = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'description', 'type' => 'text', 'fieldLabel' => 'Description', 'required' => false, 'description' => 'Description.'}],options[:options],@api_client,{})['description']
option_types = server['type']['scopeOptionTypes'].sort_by {|it| it['displayOrder']}
option_result = Morpheus::Cli::OptionTypes.prompt(option_types, options[:options].deep_merge({:context_map => {'scope' => ''}}), @api_client, {'networkServerId' => server['id']}, nil, true)
perms = prompt_permissions(options, ['plans', 'groups'])
perms = {'visibility' => perms['resourcePool']['visibility'], 'tenants' => perms['tenantPermissions']['accounts'].collect {|it| {'id' => it}}}
payload = {'networkScope' => params.deep_merge(option_result).deep_merge(perms)}
end
@network_servers_interface.setopts(options)
if options[:dry_run]
print_dry_run @network_servers_interface.dry.create_scope(server['id'], payload)
return
end
json_response = @network_servers_interface.create_scope(server['id'], payload)
render_response(json_response, options, 'networkScope') do
print_green_success "\nAdded Network Scope #{json_response['id']}\n"
_get(server, json_response['id'], options)
end
end
|
#connect(opts) ⇒ Object
15
16
17
18
19
20
|
# File 'lib/morpheus/cli/network_scopes_command.rb', line 15
def connect(opts)
@api_client = establish_remote_appliance_connection(opts)
@account_interface = @api_client.accounts
@network_servers_interface = @api_client.network_servers
@options_interface = @api_client.options
end
|
#get(args) ⇒ Object
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
|
# File 'lib/morpheus/cli/network_scopes_command.rb', line 72
def get(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[server] [scope]")
build_common_options(opts, options, [:json, :yaml, :csv, :fields, :dry_run, :remote])
opts. = "Display details on a network scope." + "\n" +
"[server] is required. This is the name or id of a network server.\n" +
"[scope] is required. This is the id of a network scope.\n"
end
optparse.parse!(args)
connect(options)
if args.count < 2
puts optparse
return 1
end
server = find_network_server(args[0])
if server.nil?
return 1
end
_get(server, args[1], options)
end
|
#handle(args) ⇒ Object
22
23
24
|
# File 'lib/morpheus/cli/network_scopes_command.rb', line 22
def handle(args)
handle_subcommand(args)
end
|
#list(args) ⇒ Object
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# File 'lib/morpheus/cli/network_scopes_command.rb', line 26
def list(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[server]")
build_common_options(opts, options, [:json, :yaml, :csv, :fields, :dry_run, :remote])
opts. = "List network scopes." + "\n" +
"[server] is required. This is the name or id of a network server."
end
optparse.parse!(args)
connect(options)
if args.count < 1
puts optparse
return 1
end
server = find_network_server(args[0])
if server.nil?
return 1
end
_list(server, options)
end
|
#remove(args) ⇒ Object
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
315
316
317
318
319
320
321
322
323
|
# File 'lib/morpheus/cli/network_scopes_command.rb', line 280
def remove(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[server] [scope]")
build_common_options(opts, options, [:auto_confirm, :json, :dry_run, :quiet, :remote])
opts. = "Delete a network scope.\n" +
"[server] is required. This is the name or id of an existing network server.\n" +
"[scope] is required. This is the name or id of an existing network scope."
end
optparse.parse!(args)
if args.count != 2
raise_command_error "wrong number of arguments, expected 2 and got (#{args.count}) #{args}\n#{optparse}"
end
connect(options)
server = find_network_server(args[0])
if server.nil?
return 1
end
if !server['type']['hasScopes']
print_red_alert "Scopes not supported for #{server['type']['name']}"
return 1
end
scope = find_scope(server['id'], args[1])
return 1 if scope.nil?
unless options[:yes] || ::Morpheus::Cli::OptionTypes::confirm("Are you sure you would like to remove the network scope '#{scope['name']}' from server '#{server['name']}'?", options)
return 9, "aborted command"
end
@network_servers_interface.setopts(options)
if options[:dry_run]
print_dry_run @network_servers_interface.dry.destroy_scope(server['id'], scope['id'])
return
end
json_response = @network_servers_interface.destroy_scope(server['id'], scope['id'])
render_response(json_response, options, 'networkScope') do
print_green_success "\nDeleted Network Scope #{scope['name']}\n"
_list(server, options)
end
end
|
#update(args) ⇒ Object
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
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
|
# File 'lib/morpheus/cli/network_scopes_command.rb', line 207
def update(args)
options = {:options=>{}}
params = {}
optparse = Morpheus::Cli::OptionParser.new do|opts|
opts.banner = subcommand_usage("[server] [scope]")
opts.on( '--name NAME', "Name" ) do |val|
params['name'] = val.to_s
end
opts.on("--description [TEXT]", String, "Description") do |val|
params['description'] = val.to_s
end
add_perms_options(opts, options, ['plans', 'groups'])
build_common_options(opts, options, [:options, :payload, :json, :dry_run, :remote])
opts. = "Update a network scope.\n" +
"[server] is required. This is the name or id of an existing network server.\n" +
"[scope] is required. This is the name or id of an existing network scope."
end
optparse.parse!(args)
if args.count != 2
raise_command_error "wrong number of arguments, expected 2 and got (#{args.count}) #{args}\n#{optparse}"
end
connect(options)
server = find_network_server(args[0])
if server.nil?
return 1
end
if !server['type']['hasScopes']
print_red_alert "Scopes not supported for #{server['type']['name']}"
return 1
end
scope = find_scope(server['id'], args[1])
return 1 if scope.nil?
payload = parse_payload(options) || {'networkScope' => params}
payload['networkScope'].deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options] && !payload['networkScope'].nil?
if !options[:visibility].nil?
payload['networkScope']['visibility'] = options[:visibility]
end
if !options[:tenants].nil?
payload['networkScope']['tenants'] = options[:tenants].collect {|id| {id: id.to_i}}
end
if payload['networkScope'].empty?
option_types = server['type']['scopeOptionTypes'].sort_by {|it| it['displayOrder']}
print_green_success "Nothing to update"
println cyan
print Morpheus::Cli::OptionTypes.display_option_types_help(
option_types,
{:include_context => true, :context_map => {'scope' => ''}, :color => cyan, :title => "Available Scope Options"}
)
exit 1
end
@network_servers_interface.setopts(options)
if options[:dry_run]
print_dry_run @network_servers_interface.dry.update_scope(server['id'], scope['id'], payload)
return
end
json_response = @network_servers_interface.update_scope(server['id'], scope['id'], payload)
render_response(json_response, options, 'networkScope') do
print_green_success "\nUpdated Network Scope #{scope['id']}\n"
_get(server, scope['id'], options)
end
end
|