Class: Morpheus::Cli::NetworkTransportZonesCommand

Inherits:
Object
  • Object
show all
Includes:
CliCommand, ProvisioningHelper, WhoamiHelper
Defined in:
lib/morpheus/cli/commands/network_transport_zones_command.rb

Instance Attribute Summary

Attributes included from CliCommand

#no_prompt

Instance Method Summary collapse

Methods included from WhoamiHelper

#current_account, #current_user, #current_user_permissions, included, #is_master_account, #load_whoami

Methods included from ProvisioningHelper

#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_permissions_v2, #prompt_resize_volumes, #prompt_security_groups, #prompt_service_plan_options, #prompt_volumes, #provision_types_interface, #reject_service_plan_option_types, #servers_interface

Methods included from CliCommand

#add_query_parameter, #apply_options, #build_common_options, #build_get_options, #build_list_options, #build_option_type_options, #build_payload, #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_refresh_interval, #default_sigdig, #default_subcommand, #establish_remote_appliance_connection, #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_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_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

Instance Method Details

#_get(server, scope_id, options) ⇒ Object



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
# File 'lib/morpheus/cli/commands/network_transport_zones_command.rb', line 97

def _get(server, scope_id, options)
  params = parse_list_options(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, params)
    else
      print_dry_run @network_servers_interface.dry.list_scopes(server['id'], {name: scope_id}, params)
    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 Transport Zone 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 
        description_cols["Visibility"] = lambda {|it| it['visibility']}
        description_cols["Tenants"] = lambda {|it| it['tenants'].collect {|tenant| tenant['name']}.join(', ')}
      end

      server['type']['scopeOptionTypes'].reject {|it| it['type'] == 'hidden'}.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 "Transport zones not supported for #{server['type']['name']}"
  end
  println reset
end

#_list(server, options) ⇒ Object



47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/morpheus/cli/commands/network_transport_zones_command.rb', line 47

def _list(server, options)
  params = parse_list_options(options)
  @network_servers_interface.setopts(options)

  if options[:dry_run]
    print_dry_run @network_servers_interface.dry.list_scopes(server['id'], params)
    return
  end

  if server['type']['hasScopes']
    json_response = @network_servers_interface.list_scopes(server['id'], params)
    render_response(json_response, options, 'networkScopes') do
      print_h1 "Network transport zones For: #{server['name']}"
      print cyan
      print_scopes(server, json_response['networkScopes'])
    end
  else
    print_red_alert "Transport zones 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/commands/network_transport_zones_command.rb', line 142

def add(args)
  options = {:options=>{}}
  params = {}
  optparse = Morpheus::Cli::OptionParser.new do|opts|
    opts.banner = subcommand_usage("[server]")
    opts.on('-n', '--name VALUE', String, "Name" ) do |val|
      options[:options]['name'] = val.to_s
    end
    opts.on('-D', '--description VALUE', String, "Description") do |val|
      options[: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.footer = "Create a network transport zone." + "\n" +
      "[server] is optional. 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 0-1 and got (#{args.count}) #{args.inspect}\n#{optparse}"
    return 1
  end

  server_id = args.count > 0 ? args[0] : Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'networkServer', 'type' => 'select', 'fieldLabel' => 'Network Server', 'selectOptions' => search_network_servers.collect {|it| {'name' => it['name'], 'value' => it['id']}}, 'required' => true, 'description' => 'Select Network Server.'}],options[:options],@api_client,{})['networkServer']
  server = find_network_server(server_id)
  return 1 if server.nil?

  if !server['type']['hasScopes']
    print_red_alert "Transport zones 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']}

    # prompt options
    option_result = Morpheus::Cli::OptionTypes.prompt(option_types, options[:options].deep_merge({:context_map => {'scope' => ''}}), @api_client, {'networkServerId' => server['id']}, nil, true)

    # prompt permissions
    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 Transport Zone #{json_response['id']}\n"
    _get(server, json_response['id'], options)
  end
end

#connect(opts) ⇒ Object



11
12
13
14
15
16
# File 'lib/morpheus/cli/commands/network_transport_zones_command.rb', line 11

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



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
# File 'lib/morpheus/cli/commands/network_transport_zones_command.rb', line 69

def get(args)
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[server] [transport zone]")
    build_common_options(opts, options, [:json, :yaml, :csv, :fields, :dry_run, :remote])
    opts.footer = "Display details on a network transport zone." + "\n" +
      "[server] is optional. This is the name or id of a network server.\n" +
      "[transport zone] is optional. This is the id of a network transport zone.\n"
  end

  optparse.parse!(args)
  connect(options)

  if args.count > 2
    print_error Morpheus::Terminal.angry_prompt
    puts_error "wrong number of arguments, expected 0-2 and got (#{args.count}) #{args.inspect}\n#{optparse}"
    return 1
  end

  server_id = args.count > 0 ? args[0] : Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'networkServer', 'type' => 'select', 'fieldLabel' => 'Network Server', 'selectOptions' => search_network_servers.collect {|it| {'name' => it['name'], 'value' => it['id']}}, 'required' => true, 'description' => 'Select Network Server.'}],options[:options],@api_client,{})['networkServer']
  server = find_network_server(server_id)
  return 1 if server.nil?

  scope_id = args.count > 1 ? args[1] : Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'rule', 'type' => 'select', 'fieldLabel' => 'Transport Zone', 'selectOptions' => search_scopes(server['id']).collect {|it| {'name' => it['name'], 'value' => it['id']}}, 'required' => true, 'description' => 'Select Transport Zone.'}],options[:options],@api_client,{})['rule']

  _get(server, scope_id, options)
end

#handle(args) ⇒ Object



18
19
20
# File 'lib/morpheus/cli/commands/network_transport_zones_command.rb', line 18

def handle(args)
  handle_subcommand(args)
end

#list(args) ⇒ Object



22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/morpheus/cli/commands/network_transport_zones_command.rb', line 22

def list(args)
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[server]")
    build_common_options(opts, options, [:list, :query, :json, :yaml, :csv, :fields, :dry_run, :remote])
    opts.footer = "List network transport zones." + "\n" +
      "[server] is optional. This is the name or id of a network server."
  end

  optparse.parse!(args)
  connect(options)

  if args.count > 1
    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

  server_id = args.count > 0 ? args[0] : Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'networkServer', 'type' => 'select', 'fieldLabel' => 'Network Server', 'selectOptions' => search_network_servers.collect {|it| {'name' => it['name'], 'value' => it['id']}}, 'required' => true, 'description' => 'Select Network Server.'}],options[:options],@api_client,{})['networkServer']
  server = find_network_server(server_id)
  return 1 if server.nil?

  _list(server, options)
end

#remove(args) ⇒ Object



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
324
325
326
327
# File 'lib/morpheus/cli/commands/network_transport_zones_command.rb', line 284

def remove(args)
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[server] [transport zone]")
    build_common_options(opts, options, [:auto_confirm, :json, :dry_run, :quiet, :remote])
    opts.footer = "Delete a network transport zone.\n" +
      "[server] is optional. This is the name or id of an existing network server.\n" +
      "[transport zone] is optional. This is the name or id of an existing network transport zone."
  end
  optparse.parse!(args)
  if args.count > 2
    raise_command_error "wrong number of arguments, expected 0-2 and got (#{args.count}) #{args}\n#{optparse}"
  end
  connect(options)

  server_id = args.count > 0 ? args[0] : Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'networkServer', 'type' => 'select', 'fieldLabel' => 'Network Server', 'selectOptions' => search_network_servers.collect {|it| {'name' => it['name'], 'value' => it['id']}}, 'required' => true, 'description' => 'Select Network Server.'}],options[:options],@api_client,{})['networkServer']
  server = find_network_server(server_id)
  return 1 if server.nil?

  if !server['type']['hasScopes']
    print_red_alert "Transport zones not supported for #{server['type']['name']}"
    return 1
  end

  scope_id = args.count > 1 ? args[1] : Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'scope', 'type' => 'select', 'fieldLabel' => 'Transport Zone', 'selectOptions' => search_scopes(server['id']).collect {|it| {'name' => it['name'], 'value' => it['id']}}, 'required' => true, 'description' => 'Select Transport Zone.'}],options[:options],@api_client,{})['scope']
  scope = find_scope(server['id'], scope_id)
  return 1 if scope.nil?

  unless options[:yes] || ::Morpheus::Cli::OptionTypes::confirm("Are you sure you would like to remove the network transport zone '#{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 Transport Zone #{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
279
280
281
282
# File 'lib/morpheus/cli/commands/network_transport_zones_command.rb', line 207

def update(args)
  options = {:options=>{}}
  params = {}
  optparse = Morpheus::Cli::OptionParser.new do|opts|
    opts.banner = subcommand_usage("[server] [transport zone]")
    opts.on('-n', '--name VALUE', String, "Name" ) do |val|
      options[:options]['name'] = val.to_s
    end
    opts.on('-D', '--description VALUE', String, "Description") do |val|
      options[: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.footer = "Update a network transport zone.\n" +
      "[server] is optional. This is the name or id of an existing network server.\n" +
      "[transport zone] is optional. This is the name or id of an existing network transport zone."
  end
  optparse.parse!(args)
  if args.count > 2
    raise_command_error "wrong number of arguments, expected 0-2 and got (#{args.count}) #{args}\n#{optparse}"
  end
  connect(options)

  server_id = args.count > 0 ? args[0] : Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'networkServer', 'type' => 'select', 'fieldLabel' => 'Network Server', 'selectOptions' => search_network_servers.collect {|it| {'name' => it['name'], 'value' => it['id']}}, 'required' => true, 'description' => 'Select Network Server.'}],options[:options],@api_client,{})['networkServer']
  server = find_network_server(server_id)
  return 1 if server.nil?

  if !server['type']['hasScopes']
    print_red_alert "Transport zones not supported for #{server['type']['name']}"
    return 1
  end

  scope_id = args.count > 1 ? args[1] : Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'scope', 'type' => 'select', 'fieldLabel' => 'Transport Zone', 'selectOptions' => search_scopes(server['id']).collect {|it| {'name' => it['name'], 'value' => it['id']}}, 'required' => true, 'description' => 'Select Transport Zone.'}],options[:options],@api_client,{})['scope']
  scope = find_scope(server['id'], scope_id)
  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
    edit_option_types = option_types.reject {|it| !it['editable'] || !it['showOnEdit']}

    if edit_option_types.count > 0
      print Morpheus::Cli::OptionTypes.display_option_types_help(
        option_types,
        {:include_context => true, :context_map => {'scope' => ''}, :color => cyan, :title => "Available Transport Zone Options"}
      )
    end
    exit 1
  end

  #payload = {'networkScope' => scope.deep_merge(payload['networkScope'])}

  @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 Transport Zone #{scope['id']}\n"
    _get(server, scope['id'], options)
  end
end