Class: ChefDK::CLI

Inherits:
Object
  • Object
show all
Includes:
Chef::Mixin::ShellOut, Helpers, Mixlib::CLI
Defined in:
lib/chef-dk/cli.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Helpers

#chefdk_home, #err, #git_bin_dir, #git_windows_bin_dir, #msg, #omnibus_apps_dir, #omnibus_bin_dir, #omnibus_chefdk_location, #omnibus_embedded_bin_dir, #omnibus_env, #omnibus_install?, #omnibus_root, #stderr, #stdout, #system_command, #usr_bin_path, #usr_bin_prefix

Constructor Details

#initialize(argv) ⇒ CLI

Returns a new instance of CLI.



56
57
58
59
# File 'lib/chef-dk/cli.rb', line 56

def initialize(argv)
  @argv = argv
  super() # mixlib-cli #initialize doesn't allow arguments
end

Instance Attribute Details

#argvObject (readonly)

Returns the value of attribute argv.



54
55
56
# File 'lib/chef-dk/cli.rb', line 54

def argv
  @argv
end

Instance Method Details

#commands_mapObject



132
133
134
# File 'lib/chef-dk/cli.rb', line 132

def commands_map
  ChefDK.commands_map
end

#exit(n) ⇒ Object



128
129
130
# File 'lib/chef-dk/cli.rb', line 128

def exit(n)
  Kernel.exit(n)
end

#handle_optionsObject

If no subcommand is given, then this class is handling the CLI request.



88
89
90
91
92
93
94
95
96
# File 'lib/chef-dk/cli.rb', line 88

def handle_options
  parse_options(argv)
  if config[:version]
    show_version
  else
    show_help
  end
  exit 0
end

#have_command?(name) ⇒ Boolean

Returns:

  • (Boolean)


136
137
138
# File 'lib/chef-dk/cli.rb', line 136

def have_command?(name)
  commands_map.have_command?(name)
end

#instantiate_subcommand(name) ⇒ Object



152
153
154
# File 'lib/chef-dk/cli.rb', line 152

def instantiate_subcommand(name)
  commands_map.instantiate(name)
end

#option?(param) ⇒ Boolean

Returns:

  • (Boolean)


148
149
150
# File 'lib/chef-dk/cli.rb', line 148

def option?(param)
  param =~ /^-/
end

#run(enforce_license: false) ⇒ Object



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
# File 'lib/chef-dk/cli.rb', line 61

def run(enforce_license: false)
  sanity_check!

  subcommand_name, *subcommand_params = argv

  #
  # Runs the appropriate subcommand if the given parameters contain any
  # subcommands.
  #
  if subcommand_name.nil? || option?(subcommand_name)
    handle_options
  elsif have_command?(subcommand_name)
    subcommand = instantiate_subcommand(subcommand_name)
    exit_code = subcommand.run_with_default_options(enforce_license, subcommand_params)
    exit normalized_exit_code(exit_code)
  else
    err "Unknown command `#{subcommand_name}'."
    show_help
    exit 1
  end
rescue OptionParser::InvalidOption => e
  err(e.message)
  show_help
  exit 1
end

#show_helpObject



116
117
118
119
120
121
122
123
124
125
126
# File 'lib/chef-dk/cli.rb', line 116

def show_help
  msg(banner)
  msg("\nAvailable Commands:")

  justify_length = subcommands.map(&:length).max + 2
  subcommand_specs.each do |name, spec|
    next if spec.hidden

    msg("    #{"#{name}".ljust(justify_length)}#{spec.description}")
  end
end

#show_versionObject



98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'lib/chef-dk/cli.rb', line 98

def show_version
  msg("#{ChefDK::Dist::PRODUCT} version: #{ChefDK::VERSION}")
  { "#{ChefDK::Dist::INFRA_CLIENT_PRODUCT}": "#{ChefDK::Dist::INFRA_CLIENT_CLI}",
    "#{ChefDK::Dist::INSPEC_PRODUCT}": "#{ChefDK::Dist::INSPEC_CLI}",
    "Test Kitchen": "kitchen",
    "Foodcritic": "foodcritic",
    "Cookstyle": "cookstyle",
  }.each do |name, cli|
    result = Bundler.with_clean_env { shell_out("#{cli} --version") }
    if result.exitstatus != 0
      msg("#{name} version: ERROR")
    else
      version = result.stdout.lines.first.scan(/(?:master\s)?[\d+\.\(\)]+\S+/).join("\s")
      msg("#{name} version: #{version}")
    end
  end
end

#subcommand_specsObject



144
145
146
# File 'lib/chef-dk/cli.rb', line 144

def subcommand_specs
  commands_map.command_specs
end

#subcommandsObject



140
141
142
# File 'lib/chef-dk/cli.rb', line 140

def subcommands
  commands_map.command_names
end