Class: Morpheus::Cli::CatalogItemTypesCommand

Inherits:
Object
  • Object
show all
Includes:
CliCommand, LibraryHelper, OptionSourceHelper
Defined in:
lib/morpheus/cli/commands/catalog_item_types_command.rb

Overview

CLI command Catalog Item Types UI is Library > Blueprints > Catalog Items API is /api/catalog-item-types and returns catalogItemTypes

Instance Attribute Summary

Attributes included from CliCommand

#no_prompt

Instance Method Summary collapse

Methods included from OptionSourceHelper

#find_available_user_option, #find_cloud_option, #find_group_option, #find_tenant_option, #get_available_user_options, #get_cloud_options, #get_group_options, #get_tenant_options, included, #load_option_source_data, #options_interface, #parse_cloud_id_list, #parse_group_id_list, #parse_option_source_id_list, #parse_project_id_list, #parse_tenant_id_list, #parse_user_id_list

Methods included from LibraryHelper

#api_client, #find_container_type_by_id, #find_container_type_by_name, #find_container_type_by_name_or_id, #find_instance_type_by_id, #find_instance_type_by_name, #find_instance_type_by_name_or_id, #find_option_type_by_id, #find_option_type_by_name, #find_option_type_by_name_or_id, #find_option_type_list_by_id, #find_option_type_list_by_name, #find_option_type_list_by_name_or_id, #find_spec_template_by_id, #find_spec_template_by_name, #find_spec_template_by_name_or_id, #find_spec_template_type_by_id, #find_spec_template_type_by_name_or_code, #find_spec_template_type_by_name_or_code_id, #format_container_type_technology, #format_instance_type_technology, #get_all_spec_template_types, included, #load_balance_protocols_dropdown, #print_container_types_table, #print_instance_types_table, #print_resource_specs_table, #prompt_exposed_ports, #prompt_for_container_types, #prompt_for_option_types, #prompt_for_spec_templates

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_refresh_interval, #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

Instance Method Details

#_get(id, params, options) ⇒ Object



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

def _get(id, params, options)
  catalog_item_type = nil
  if id.to_s !~ /\A\d{1,}\Z/
    catalog_item_type = find_catalog_item_type_by_name(id)
    return 1, "catalog item type not found for #{id}" if catalog_item_type.nil?
    id = catalog_item_type['id']
  end
  @catalog_item_types_interface.setopts(options)
  if options[:dry_run]
    print_dry_run @catalog_item_types_interface.dry.get(id, params)
    return
  end
  # skip extra query, list has same data as show right now
  if catalog_item_type
    json_response = {catalog_item_type_object_key => catalog_item_type}
  else
    json_response = @catalog_item_types_interface.get(id, params)
  end
  catalog_item_type = json_response[catalog_item_type_object_key]
  # export just the config as json or yaml (default)
  if options[:show_config]
    if catalog_item_type['instanceSpec']
      puts catalog_item_type['instanceSpec']
      # print reset
      return 0, nil
    end
    unless options[:json] || options[:yaml] || options[:csv]
      options[:json] = true
    end
    return render_with_format(catalog_item_type['config'] || {}, options)
  end
  render_response(json_response, options, catalog_item_type_object_key) do
    print_h1 "Catalog Item Type Details", [], options
    print cyan
    show_columns = catalog_item_type_column_definitions
    show_columns.delete("Form") unless catalog_item_type['form']
    show_columns.delete("Blueprint") unless catalog_item_type['blueprint']
    show_columns.delete("Workflow") unless catalog_item_type['workflow']
    show_columns.delete("Context") unless catalog_item_type['context'] # workflow context
    print_description_list(show_columns, catalog_item_type)

    option_type_form = catalog_item_type['form']
    if option_type_form
      print_h2 "Form Inputs"
      form_inputs = (option_type_form['options'] || [])
      if option_type_form['fieldGroups']
        option_type_form['fieldGroups'].each { |field_group| form_inputs += (field_group['options'] || []) }
      end
      # print format_simple_option_types_table(form_inputs, options)
      print format_option_types_table(form_inputs, options, 'config.customOptions')
      print reset,"\n"
    else
      # print cyan,"No form inputs found for this catalog item.","\n",reset
    end

    if catalog_item_type['optionTypes'] && catalog_item_type['optionTypes'].size > 0
      print_h2 "Inputs"
      opt_columns = [
        {"ID" => lambda {|it| it['id'] } },
        {"NAME" => lambda {|it| it['name'] } },
        {"TYPE" => lambda {|it| it['type'] } },
        {"FIELD NAME" => lambda {|it| it['fieldName'] } },
        {"FIELD LABEL" => lambda {|it| it['fieldLabel'] } },
        {"DEFAULT" => lambda {|it| it['defaultValue'] } },
        {"REQUIRED" => lambda {|it| format_boolean it['required'] } },
      ]
      print as_pretty_table(catalog_item_type['optionTypes'], opt_columns)
    else
      # print cyan,"No option types found for this catalog item.","\n",reset
    end

    item_type_code = catalog_item_type['type'].to_s.downcase
    if options[:no_config] != true
      if item_type_code == 'instance'
        print_h2 "Config JSON"
        
          #print reset,(JSON.pretty_generate(config) rescue config),"\n",reset
          #print reset,(as_yaml(config, options) rescue config),"\n",reset
          config_string = catalog_item_type['instanceSpec'] || (as_json(catalog_item_type['config'], options) rescue "")
          config_lines = config_string.split("\n")
          config_line_count = config_lines.size
          max_lines = 10
          if config_lines.size > max_lines
            config_string = config_lines.first(max_lines).join("\n")
            config_string << "\n\n"
            config_string << "#{dark}(#{(config_line_count - max_lines)} more lines were not shown, use -c to show the config)#{reset}"
            #config_string << "\n"
          end
          # strip --- yaml header
          if config_string[0..3] == "---\n"
            config_string = config_string[4..-1]
          end
          print reset,config_string.chomp("\n"),"\n",reset
        
      elsif item_type_code == 'blueprint' || item_type_code == 'apptemplate' || item_type_code == 'app'
        print_h2 "App Spec"
        if catalog_item_type['appSpec']
          #print reset,(JSON.pretty_generate(config) rescue config),"\n",reset
          #print reset,(as_yaml(config, options) rescue config),"\n",reset
          config_string = catalog_item_type['appSpec'] || ""
          config_lines = config_string.split("\n")
          config_line_count = config_lines.size
          max_lines = 10
          if config_lines.size > max_lines
            config_string = config_lines.first(max_lines).join("\n")
            config_string << "\n\n"
            config_string << "#{dark}(#{(config_line_count - max_lines)} more lines were not shown, use -c to show the config)#{reset}"
            #config_string << "\n"
          end
          # strip --- yaml header
          if config_string[0..3] == "---\n"
            config_string = config_string[4..-1]
          end
          print reset,config_string.chomp("\n"),"\n",reset
        else
          print reset,"(blank)","\n",reset
        end
      elsif item_type_code == 'workflow' || item_type_code == 'operationalworkflow' || item_type_code == 'taskset'
        print_h2 "Workflow Config"
        if catalog_item_type['workflowConfig']
          #print reset,(JSON.pretty_generate(config) rescue config),"\n",reset
          #print reset,(as_yaml(config, options) rescue config),"\n",reset
          config_string = catalog_item_type['workflowConfig'] || ""
          config_lines = config_string.split("\n")
          config_line_count = config_lines.size
          max_lines = 10
          if config_lines.size > max_lines
            config_string = config_lines.first(max_lines).join("\n")
            config_string << "\n\n"
            config_string << "#{dark}(#{(config_line_count - max_lines)} more lines were not shown, use -c to show the config)#{reset}"
          end
          print reset,config_string.chomp("\n"),"\n",reset
        else
          print reset,"(blank)","\n",reset
        end
      end
    end

    # Content (Wiki Page)
    if !catalog_item_type["content"].to_s.empty? && options[:no_content] != true
      print_h2 "Content"
      print reset,catalog_item_type["content"].chomp("\n"),"\n",reset
    end

    print reset,"\n"
  end
  return 0, nil
end

#add(args) ⇒ Object



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
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
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
# File 'lib/morpheus/cli/commands/catalog_item_types_command.rb', line 268

def add(args)
  options = {:option_types => add_catalog_item_type_option_types}
  params = {}
  logo_file = nil
  dark_logo_file = nil
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[name] [options]")
    # opts.on('-t', '--type [instance|blueprint|workflow]', "Item Type, default is instance.") do |val|
    #   # params['type'] = val.to_s.downcase
    #   options[:options]['type'] = val.to_s.downcase
    # end
    build_option_type_options(opts, options, add_catalog_item_type_option_types)
    opts.on('-l', '--labels [LIST]', String, "Labels") do |val|
      options[:options]['labels'] = parse_labels(val)
    end
    opts.on('--logo FILE', String, "Upload a custom logo icon") do |val|
      filename = val
      logo_file = nil
      if filename == 'null'
        logo_file = 'null' # clear it
      else
        filename = File.expand_path(filename)
        if !File.exist?(filename)
          raise_command_error "File not found: #{filename}"
        end
        logo_file = File.new(filename, 'rb')
      end
    end
    opts.on('--dark-logo FILE', String, "Upload a custom dark logo icon") do |val|
      filename = val
      dark_logo_file = nil
      if filename == 'null'
        dark_logo_file = 'null' # clear it
      else
        filename = File.expand_path(filename)
        if !File.exist?(filename)
          raise_command_error "File not found: #{filename}"
        end
        dark_logo_file = File.new(filename, 'rb')
      end
    end
    opts.on('--config-file FILE', String, "Config from a local JSON or YAML file") do |val|
      options[:config_file] = val.to_s
      file_content = nil
      full_filename = File.expand_path(options[:config_file])
      if File.exist?(full_filename)
        file_content = File.read(full_filename)
      else
        print_red_alert "File not found: #{full_filename}"
        return 1
      end
      parse_result = parse_json_or_yaml(file_content)
      config_map = parse_result[:data]
      if config_map.nil?
        # todo: bubble up JSON.parse error message
        raise_command_error "Failed to parse config as YAML or JSON. Error: #{parse_result[:error]}"
        #raise_command_error "Failed to parse config as valid YAML or JSON."
      else
        params['config'] = config_map
        options[:options]['config'] = params['config'] # or file_content
      end
    end
    opts.on('--form-type form|optionTypes', String, "Form Type determines if input comes from a Form or list of Option Types") do |val|
      params['formType'] = val
    end
    opts.on('--form FORM', String, "Form Name or ID") do |val|
      params['form'] = val
    end
    opts.on('--option-types [x,y,z]', Array, "List of Option Type IDs") do |val|
      if list.nil?
        params['optionTypes'] = []
      else
        params['optionTypes'] = list.collect {|it| it.to_s.strip.empty? ? nil : it.to_s.strip }.compact.uniq
      end
    end
    opts.on('--optionTypes [x,y,z]', Array, "List of Option Type IDs") do |list|
      if list.nil?
        params['optionTypes'] = []
      else
        params['optionTypes'] = list.collect {|it| it.to_s.strip.empty? ? nil : it.to_s.strip }.compact.uniq
      end
    end
    opts.add_hidden_option('--optionTypes')
    build_option_type_options(opts, options, add_catalog_item_type_advanced_option_types)
    build_standard_add_options(opts, options)
    opts.footer = <<-EOT
Create a new catalog item type.
EOT
  end
  optparse.parse!(args)
  verify_args!(args:args, optparse:optparse, min:0, max:1)
  options[:options]['name'] = args[0] if args[0]
  connect(options)
  payload = {}
  if options[:payload]
    payload = options[:payload]
    payload.deep_merge!({catalog_item_type_object_key => parse_passed_options(options)})
  else
    payload.deep_merge!({catalog_item_type_object_key => parse_passed_options(options)})
    # Type prompt first
    #params['type'] = Morpheus::Cli::OptionTypes.no_prompt([{'fieldName' => 'type', 'fieldLabel' => 'Type', 'type' => 'select', 'selectOptions' => [{'name' => 'Instance', 'value' => 'instance'}, {'name' => 'Blueprint', 'value' => 'blueprint'}, {'name' => 'Workflow', 'value' => 'workflow'}], 'defaultValue' => 'instance', 'required' => true}], options[:options], @api_client, options[:params])['type']
    v_prompt = Morpheus::Cli::OptionTypes.prompt(add_catalog_item_type_option_types(), options[:options], @api_client, options[:params])
    params.deep_merge!(v_prompt)
    advanced_config = Morpheus::Cli::OptionTypes.no_prompt(add_catalog_item_type_advanced_option_types, options[:options], @api_client, options[:params])
    advanced_config.deep_compact!
    params.deep_merge!(advanced_config)
    # convert checkbox "on" and "off" to true and false
    params.booleanize!
    # convert type to refType until api accepts type
    # if params['type'] && !params['refType']
    #   if params['type'].to_s.downcase == 'instance'
    #     params['refType'] = 'InstanceType'
    #   elsif params['type'].to_s.downcase == 'blueprint'
    #     params['refType'] = 'AppTemplate'
    #   elsif params['type'].to_s.downcase == 'workflow'
    #     params['refType'] = 'OperationalWorkflow'
    #   end
    # end
    # convert config string to a map
    config = params['config']
    if config && config.is_a?(String)
      parse_result = parse_json_or_yaml(config)
      config_map = parse_result[:data]
      if config_map.nil?
        # todo: bubble up JSON.parse error message
        raise_command_error "Failed to parse config as YAML or JSON. Error: #{parse_result[:error]}"
        #raise_command_error "Failed to parse config as valid YAML or JSON."
      else
        params['config'] = config_map
      end
    end
    # massage association params a bit
    params['workflow'] = {'id' => params['workflow']}  if params['workflow'] && !params['workflow'].is_a?(Hash)
    params['blueprint'] = {'id' => params['blueprint']}  if params['blueprint'] && !params['blueprint'].is_a?(Hash)
    if params['formType'].to_s.empty?
      params['formType'] = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'formType', 'fieldLabel' => 'Form Type', 'type' => 'select', 'selectOptions' => [{'name' => 'Form', 'value' => 'form'}, {'name' => 'Inputs', 'value' => 'optionTypes'}], 'defaultValue' => 'optionTypes', 'required' => true}], options[:options], @api_client, options[:params])['formType']
    end
    if params['formType'] == 'form'
      # using formType = 'form'
      # prompt for Form
      options[:options]['form'] = params['form'] if params['form']
      form_id = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'form', 'fieldLabel' => 'Form', 'type' => 'select', 'optionSource' => 'forms', 'required' => true}], options[:options], @api_client, options[:params])['form']
      params['form'] = {'id' => form_id}
    else
      # using formType = 'optionTypes'
      # prompt for Option Types
      prompt_results = prompt_for_option_types(params, options, @api_client)
      if prompt_results[:success]
        params['optionTypes'] = prompt_results[:data] unless prompt_results[:data].nil?
      else
        return 1, "failed to parse optionTypes"
      end
    end
    payload[catalog_item_type_object_key].deep_merge!(params)
  end
  @catalog_item_types_interface.setopts(options)
  if options[:dry_run]
    print_dry_run @catalog_item_types_interface.dry.create(payload)
    return 0, nil
  end
  json_response = @catalog_item_types_interface.create(payload)
  if json_response['success']
    if logo_file || dark_logo_file
      begin
        @catalog_item_types_interface.(json_response['catalogItemType']['id'], logo_file, dark_logo_file)
      rescue RestClient::Exception => e
        print_red_alert "Failed to save logo!"
        print_rest_exception(e, options)
      end
    end
  end
  catalog_item_type = json_response[catalog_item_type_object_key]
  render_response(json_response, options, catalog_item_type_object_key) do
    print_green_success "Added catalog item type #{catalog_item_type['name']}"
    return _get(catalog_item_type["id"], {}, options)
  end
  return 0, nil
end

#connect(opts) ⇒ Object



17
18
19
20
21
# File 'lib/morpheus/cli/commands/catalog_item_types_command.rb', line 17

def connect(opts)
  @api_client = establish_remote_appliance_connection(opts)
  @catalog_item_types_interface = @api_client.catalog_item_types
  @option_types_interface = @api_client.option_types
end

#get(args) ⇒ Object



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

def get(args)
  params = {}
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[type]")
    opts.on( '-c', '--config', "Display raw config only." ) do
      options[:show_config] = true
    end
    # opts.on('--no-config', "Do not display Config YAML." ) do
    #   options[:no_config] = true
    # end
    opts.on('--no-content', "Do not display Content." ) do
      options[:no_content] = true
    end
    build_standard_get_options(opts, options)
    opts.footer = <<-EOT
Get details about a specific catalog item type.
[type] is required. This is the name or id of a catalog item type.
EOT
  end
  optparse.parse!(args)
  verify_args!(args:args, optparse:optparse, min:1)
  connect(options)
  id_list = parse_id_list(args)
  return run_command_for_each_arg(id_list) do |arg|
    _get(arg, params, options)
  end
end

#handle(args) ⇒ Object



23
24
25
# File 'lib/morpheus/cli/commands/catalog_item_types_command.rb', line 23

def handle(args)
  handle_subcommand(args)
end

#list(args) ⇒ Object



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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# File 'lib/morpheus/cli/commands/catalog_item_types_command.rb', line 27

def list(args)
  options = {}
  params = {}
  ref_ids = []
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[search]")
    opts.on( '--enabled [on|off]', String, "Filter by enabled" ) do |val|
      params['enabled'] = (val.to_s != 'false' && val.to_s != 'off')
    end
    opts.on( '--featured [on|off]', String, "Filter by featured" ) do |val|
      params['featured'] = (val.to_s != 'false' && val.to_s != 'off')
    end
    opts.on('-l', '--labels LABEL', String, "Filter by labels, can match any of the values") do |val|
      add_query_parameter(params, 'labels', parse_labels(val))
    end
    opts.on('--all-labels LABEL', String, "Filter by labels, must match all of the values") do |val|
      add_query_parameter(params, 'allLabels', parse_labels(val))
    end
    opts.on('--code CODE', String, "Filter by code" ) do |val|
      params[:code] = val
    end
    opts.on('-c', '--category CATEGORY', String, "Filter by category") do |val|
      add_query_parameter(params, 'category', val)
    end
    build_standard_list_options(opts, options)
    opts.footer = "List catalog item types."
  end
  optparse.parse!(args)
  connect(options)
  # verify_args!(args:args, optparse:optparse, count:0)
  if args.count > 0
    options[:phrase] = args.join(" ")
  end
  params.merge!(parse_list_options(options))
  @catalog_item_types_interface.setopts(options)
  if options[:dry_run]
    print_dry_run @catalog_item_types_interface.dry.list(params)
    return
  end
  json_response = @catalog_item_types_interface.list(params)
  catalog_item_types = json_response[catalog_item_type_list_key]
  render_response(json_response, options, catalog_item_type_list_key) do
    print_h1 "Morpheus Catalog Item Types", parse_list_subtitles(options), options
    if catalog_item_types.empty?
      print cyan,"No catalog item types found.",reset,"\n"
    else
      list_columns = catalog_item_type_list_column_definitions.upcase_keys!
      list_columns.delete("Blueprint")
      list_columns.delete("Workflow")
      list_columns.delete("Context")
      #list_columns["Config"] = lambda {|it| truncate_string(it['config'], 100) }
      print as_pretty_table(catalog_item_types, list_columns.upcase_keys!, options)
      print_results_pagination(json_response)
    end
    print reset,"\n"
  end
  if catalog_item_types.empty?
    return 1, "no catalog item types found"
  else
    return 0, nil
  end
end

#remove(args) ⇒ Object



661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
# File 'lib/morpheus/cli/commands/catalog_item_types_command.rb', line 661

def remove(args)
  options = {}
  params = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[type] [options]")
    build_standard_remove_options(opts, options)
    opts.footer = <<-EOT
Delete a catalog item type.
[type] is required. This is the name or id of a catalog item type.
EOT
  end
  optparse.parse!(args)
  verify_args!(args:args, optparse:optparse, count:1)
  connect(options)
  catalog_item_type = find_catalog_item_type_by_name_or_id(args[0])
  return 1 if catalog_item_type.nil?
  @catalog_item_types_interface.setopts(options)
  if options[:dry_run]
    print_dry_run @catalog_item_types_interface.dry.destroy(catalog_item_type['id'], params)
    return
  end
  unless options[:yes] || Morpheus::Cli::OptionTypes.confirm("Are you sure you want to delete the catalog item type #{catalog_item_type['name']}?")
    return 9, "aborted command"
  end
  json_response = @catalog_item_types_interface.destroy(catalog_item_type['id'], params)
  render_response(json_response, options) do
    print_green_success "Removed catalog item type #{catalog_item_type['name']}"
  end
  return 0, nil
end

#update(args) ⇒ Object



447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
# File 'lib/morpheus/cli/commands/catalog_item_types_command.rb', line 447

def update(args)
  options = {}
  params = {}
  payload = {}
  logo_file = nil
  dark_logo_file = nil
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[type] [options]")
    build_option_type_options(opts, options, update_catalog_item_type_option_types)
    opts.on('-l', '--labels [LIST]', String, "Labels") do |val|
      options[:options]['labels'] = parse_labels(val)
    end
    opts.on('--config-file FILE', String, "Config from a local JSON or YAML file") do |val|
      options[:config_file] = val.to_s
      file_content = nil
      full_filename = File.expand_path(options[:config_file])
      if File.exist?(full_filename)
        file_content = File.read(full_filename)
      else
        print_red_alert "File not found: #{full_filename}"
        return 1
      end
      parse_result = parse_json_or_yaml(file_content)
      config_map = parse_result[:data]
      if config_map.nil?
        # todo: bubble up JSON.parse error message
        raise_command_error "Failed to parse config as YAML or JSON. Error: #{parse_result[:error]}"
        #raise_command_error "Failed to parse config as valid YAML or JSON."
      else
        params['config'] = config_map
        options[:options]['config'] = params['config'] # or file_content
      end
    end
    opts.on('--form-type form|optionTypes', String, "Form Type determines if input comes from a Form or list of Option Types") do |val|
      params['formType'] = val
    end
    opts.on('--form FORM', String, "Form Name or ID") do |val|
      params['form'] = val
    end
    opts.on('--option-types [x,y,z]', Array, "List of Option Type IDs") do |list|
      if list.nil?
        params['optionTypes'] = []
      else
        params['optionTypes'] = list.collect {|it| it.to_s.strip.empty? ? nil : it.to_s.strip }.compact.uniq
      end
    end
    opts.on('--optionTypes [x,y,z]', Array, "List of Option Type IDs") do |list|
      if list.nil?
        params['optionTypes'] = []
      else
        params['optionTypes'] = list.collect {|it| it.to_s.strip.empty? ? nil : it.to_s.strip }.compact.uniq
      end
    end
    opts.add_hidden_option('--optionTypes')
    build_option_type_options(opts, options, update_catalog_item_type_advanced_option_types)
    build_standard_update_options(opts, options)
    opts.footer = <<-EOT
Update a catalog item type.
[type] is required. This is the name or id of a catalog item type.
EOT
  end
  optparse.parse!(args)
  verify_args!(args:args, optparse:optparse, count:1)
  connect(options)
  catalog_item_type = find_catalog_item_type_by_name_or_id(args[0])
  return 1 if catalog_item_type.nil?
  payload = {}
  if options[:payload]
    payload = options[:payload]
    payload.deep_merge!({catalog_item_type_object_key => parse_passed_options(options)})
  else
    payload.deep_merge!({catalog_item_type_object_key => parse_passed_options(options)})
    # do not prompt on update
    v_prompt = Morpheus::Cli::OptionTypes.no_prompt(update_catalog_item_type_option_types, options[:options], @api_client, options[:params])
    v_prompt.deep_compact!
    params.deep_merge!(v_prompt)
    advanced_config = Morpheus::Cli::OptionTypes.no_prompt(update_catalog_item_type_advanced_option_types, options[:options], @api_client, options[:params])
    advanced_config.deep_compact!
    params.deep_merge!(advanced_config)
    # convert checkbox "on" and "off" to true and false
    params.booleanize!
    
    # convert config string to a map
    config = params['config']
    if config && config.is_a?(String)
      parse_result = parse_json_or_yaml(config)
      config_map = parse_result[:data]
      if config_map.nil?
        # todo: bubble up JSON.parse error message
        raise_command_error "Failed to parse config as YAML or JSON. Error: #{parse_result[:error]}"
        #raise_command_error "Failed to parse config as valid YAML or JSON."
      else
        params['config'] = config_map
      end
    end
    if params['optionTypes']
      # todo: move to optionSource, so it will be /api/options/optionTypes  lol
      prompt_results = prompt_for_option_types(params, options, @api_client)
      if prompt_results[:success]
        params['optionTypes'] = prompt_results[:data] unless prompt_results[:data].nil?
      else
        return 1, "failed to parse optionTypes"
      end
    end
    # massage association params a bit
    params['workflow'] = {'id' => params['workflow']}  if params['workflow'] && !params['workflow'].is_a?(Hash)
    params['blueprint'] = {'id' => params['blueprint']}  if params['blueprint'] && !params['blueprint'].is_a?(Hash)
    payload.deep_merge!({catalog_item_type_object_key => params})
    if payload[catalog_item_type_object_key].empty? && (!logo_file && !dark_logo_file)# || options[:no_prompt]
      raise_command_error "Specify at least one option to update.\n#{optparse}"
    end
  end
  @catalog_item_types_interface.setopts(options)
  if options[:dry_run]
    print_dry_run @catalog_item_types_interface.dry.update(catalog_item_type['id'], payload)
    return
  end
  json_response = @catalog_item_types_interface.update(catalog_item_type['id'], payload)
  if json_response['success']
    if logo_file || dark_logo_file
      begin
        @catalog_item_types_interface.(json_response['catalogItemType']['id'], logo_file, dark_logo_file)
      rescue RestClient::Exception => e
        print_red_alert "Failed to save logo!"
        print_rest_exception(e, options)
      end
    end
  end
  catalog_item_type = json_response[catalog_item_type_object_key]
  render_response(json_response, options, catalog_item_type_object_key) do
    print_green_success "Updated catalog item type #{catalog_item_type['name']}"
    return _get(catalog_item_type["id"], {}, options)
  end
  return 0, nil
end

#update_dark_logo(args) ⇒ Object



622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
# File 'lib/morpheus/cli/commands/catalog_item_types_command.rb', line 622

def (args)
  options = {}
  params = {}
  filename = nil
  optparse = Morpheus::Cli::OptionParser.new do|opts|
    opts.banner = subcommand_usage("[type] [file]")
    build_common_options(opts, options, [:json, :dry_run, :remote])
    opts.footer = "Update the dark logo for a catalog item type." + "\n" +
                  "[type] is required. This is the name or id of a catalog item type." + "\n" +
                  "[file] is required. This is the path of the dark logo file"
  end
  optparse.parse!(args)
  verify_args!(args:args, optparse:optparse, count:2)
  connect(options)
  catalog_item_type = find_catalog_item_type_by_name_or_id(args[0])
  return 1 if catalog_item_type.nil?
  filename = args[1]
  dark_logo_file = nil
  if filename == 'null'
    dark_logo_file = 'null' # clear it
  else
    filename = File.expand_path(filename)
    if !File.exist?(filename)
      raise_command_error "File not found: #{filename}"
    end
    dark_logo_file = File.new(filename, 'rb')
  end
  @catalog_item_types_interface.setopts(options)
  if options[:dry_run]
    print_dry_run @catalog_item_types_interface.dry.(catalog_item_type['id'], nil, dark_logo_file)
    return
  end
  json_response = @catalog_item_types_interface.(catalog_item_type['id'], nil, dark_logo_file)
  render_response(json_response, options, catalog_item_type_object_key) do
    print_green_success "Updated catalog item type #{catalog_item_type['name']} logo"
    return _get(catalog_item_type["id"], {}, options)
  end
end

#update_logo(args) ⇒ Object



583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
# File 'lib/morpheus/cli/commands/catalog_item_types_command.rb', line 583

def (args)
  options = {}
  params = {}
  filename = nil
  optparse = Morpheus::Cli::OptionParser.new do|opts|
    opts.banner = subcommand_usage("[type] [file]")
    build_common_options(opts, options, [:json, :dry_run, :remote])
    opts.footer = "Update the logo for a catalog item type." + "\n" +
                  "[type] is required. This is the name or id of a catalog item type." + "\n" +
                  "[file] is required. This is the path of the logo file"
  end
  optparse.parse!(args)
  verify_args!(args:args, optparse:optparse, count:2)
  connect(options)
  catalog_item_type = find_catalog_item_type_by_name_or_id(args[0])
  return 1 if catalog_item_type.nil?
  filename = args[1]
  logo_file = nil
  if filename == 'null'
    logo_file = 'null' # clear it
  else
    filename = File.expand_path(filename)
    if !File.exist?(filename)
      raise_command_error "File not found: #{filename}"
    end
    logo_file = File.new(filename, 'rb')
  end
  @catalog_item_types_interface.setopts(options)
  if options[:dry_run]
    print_dry_run @catalog_item_types_interface.dry.(catalog_item_type['id'], logo_file)
    return
  end
  json_response = @catalog_item_types_interface.(catalog_item_type['id'], logo_file)
  render_response(json_response, options, catalog_item_type_object_key) do
    print_green_success "Updated catalog item type #{catalog_item_type['name']} logo"
    return _get(catalog_item_type["id"], {}, options)
  end
end