Class: Morpheus::Cli::PluginsCommand

Inherits:
Object
  • Object
show all
Includes:
CliCommand, RestCommand
Defined in:
lib/morpheus/cli/commands/plugins.rb

Instance Attribute Summary

Attributes included from CliCommand

#no_prompt

Instance Method Summary collapse

Methods included from RestCommand

#_get, #_get_type, #add, #connect, #get, #get_type, #handle, included, #list, #list_types, #registered_interfaces, #remove, #render_response_for_get_type, #rest_arg, #rest_column_definitions, #rest_find_by_name_or_id, #rest_has_name, #rest_has_type, #rest_interface, #rest_interface_name, #rest_key, #rest_label, #rest_label_plural, #rest_list_column_definitions, #rest_list_key, #rest_name, #rest_object_key, #rest_option_context_map, #rest_perms_config, #rest_type_arg, #rest_type_column_definitions, #rest_type_find_by_name_or_id, #rest_type_interface, #rest_type_interface_name, #rest_type_key, #rest_type_label, #rest_type_label_plural, #rest_type_list_column_definitions, #rest_type_list_key, #rest_type_name, #rest_type_object_key, #update

Methods included from CliCommand

#add_query_parameter, #apply_options, #build_common_options, #build_get_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, #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

#check_updates(args) ⇒ Object



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

def check_updates(args)
  options = {}
  params = {}
  filename = nil
  optparse = Morpheus::Cli::OptionParser.new do|opts|
    opts.banner = subcommand_usage("[name] [file]")
    build_standard_post_options(opts, options)
    opts.footer = <<-EOT
Check for installed plugins that have available updates.
EOT
  end
  optparse.parse!(args)
  verify_args!(args:args, optparse:optparse, count:0)
  connect(options)
  params.merge!(parse_query_options(options))
  payload = parse_payload(options) do |data|
  end
  @plugins_interface.setopts(options)
  if options[:dry_run]
    print_dry_run @plugins_interface.dry.check_updates(payload, params)
    return
  end
  json_response = @plugins_interface.check_updates(payload, params)
  render_response(json_response, options) do
    plugins_to_update = json_response['pluginsToUpdate'] || []
    if plugins_to_update.size == 1
      print_green_success("1 plugin has an available update")
    else
      print_green_success("#{plugins_to_update.size} plugins have available updates")
    end
    if plugins_to_update.size > 0
      print_h2 "Plugins To Update", options
      puts as_pretty_table(plugins_to_update, [:id, :name])
    end
  end
  return 0, nil
end

#upload(args) ⇒ Object



14
15
16
17
18
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
# File 'lib/morpheus/cli/commands/plugins.rb', line 14

def upload(args)
  options = {}
  params = {}
  filename = nil
  optparse = Morpheus::Cli::OptionParser.new do|opts|
    opts.banner = subcommand_usage("[name] [file]")
    build_standard_post_options(opts, options)
    opts.footer = <<-EOT
Upload a plugin file.
[file] is required. This is the path of the .jar file to upload
This can be used to install and register a new plugin and also
to update an existing plugin to a new version.
EOT
  end
  optparse.parse!(args)
  verify_args!(args:args, optparse:optparse, count:1)
  connect(options)
  filename = args[0]
  filename = File.expand_path(filename)
  if !File.exist?(filename)
    raise_command_error "File not found: #{filename}"
  elsif !File.file?(filename)
    raise_command_error "File is a directory: #{filename}"
  end
  plugin_file = File.new(filename, 'rb')
  @plugins_interface.setopts(options)
  if options[:dry_run]
    print_dry_run @plugins_interface.dry.upload(plugin_file)
    return
  end
  json_response = @plugins_interface.upload(plugin_file)
  render_response(json_response, options) do
    plugin = json_response[rest_object_key]
    print_green_success "Uploaded plugin #{plugin['name']} (#{plugin['version']})"
    # _get(plugin['id'], {}, options)
  end
  return 0, nil
end