Class: Morpheus::Cli::EditProfileCommand

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

Overview

Command for editing the .morpheus_profile initialization script

Instance Attribute Summary

Attributes included from CliCommand

#no_prompt

Instance Method Summary collapse

Methods included from CliCommand

#apply_options, #build_common_options, #build_get_options, #build_list_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, #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_subcommand_description, #handle_subcommand, included, #interactive?, #my_help_command, #my_terminal, #my_terminal=, #parse_bytes_param, #parse_get_options!, #parse_id_list, #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

#handle(args) ⇒ Object

set_command_hidden



9
10
11
12
13
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
52
53
54
55
# File 'lib/morpheus/cli/commands/edit_profile_command.rb', line 9

def handle(args)
  options = {}
  editor = ENV['EDITOR'] || 'nano'
  filename = Morpheus::Cli::DotFile.morpheus_profile_filename
  optparse = Morpheus::Cli::OptionParser.new do|opts|
    opts.banner = "Usage: morpheus #{command_name}"
    opts.on( '-e', '--editor PROGRAM', "Editor program to use. The default is $EDITOR." ) do |val|
      editor = val
    end
    build_common_options(opts, options, [])
    opts.footer = <<-EOT
Edit your .morpheus_profile script located in the morpheus home directory.
This script runs whenever the morpheus terminal command is executed.
It provides a way to initialize your cli environment for all morpheus commands.

Example:

# disable coloring to exclude ansi characters in output
coloring off -q

# Enable debugging to print extra output for troubleshooting
debug on

EOT
  end
  optparse.parse!(args)

  if !editor
    print_error Morpheus::Terminal.angry_prompt
    puts_error "You have not defined an EDITOR."
    puts_error "Try export EDITOR=emacs"
    #puts "Trying nano..."
    #editor = "nano"
    return 1
  end
  puts "opening #{filename} for editing"
  system(editor, filename)
  if !$?.success?
    print_error Morpheus::Terminal.angry_prompt
    puts_error "edit command failed with #{$?.exitstatus}: #{editor} #{filename}"
    return $?.exitstatus
  end
  if Morpheus::Cli::Shell.has_instance?
    puts "use 'reload' to re-execute your startup script"
  end
  return 0 # $?
end