Class: Chef::Knife::Raw

Inherits:
Chef::Knife show all
Defined in:
lib/chef/knife/raw.rb

Defined Under Namespace

Classes: RawInputServerAPI

Instance Attribute Summary

Attributes inherited from Chef::Knife

#name_args, #ui

Instance Method Summary collapse

Methods inherited from Chef::Knife

#api_key, #apply_computed_config, category, chef_config_dir, common_name, #config_file_settings, config_loader, #configure_chef, #create_object, #delete_object, dependency_loaders, deps, #format_rest_error, guess_category, #humanize_exception, #humanize_http_exception, inherited, #initialize, load_commands, load_config, load_deps, #maybe_setup_fips, #merge_configs, msg, #noauth_rest, #parse_options, reset_config_loader!, reset_subcommands!, #rest, run, #run_with_pretty_exceptions, #server_url, #show_usage, snake_case_name, subcommand_category, subcommand_class_from, subcommand_files, subcommand_loader, subcommands, subcommands_by_category, #test_mandatory_field, ui, unnamed?, use_separate_defaults?, #username

Methods included from Mixin::ConvertToClassName

#constantize, #convert_to_class_name, #convert_to_snake_case, #filename_to_qualified_string, #normalize_snake_case_name, #snake_case_basename

Methods included from Mixin::PathSanity

#enforce_path_sanity

Constructor Details

This class inherits a constructor from Chef::Knife

Instance Method Details

#runObject



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
90
91
92
93
94
95
96
97
98
99
# File 'lib/chef/knife/raw.rb', line 55

def run
  if name_args.length == 0
    show_usage
    ui.fatal("You must provide the path you want to hit on the server")
    exit(1)
  elsif name_args.length > 1
    show_usage
    ui.fatal("You must specify only a single path")
    exit(1)
  end

  path = name_args[0]
  data = false
  if config[:input]
    data = IO.read(config[:input])
  end
  begin
    method = config[:method].to_sym

    headers = { "Content-Type" => "application/json" }

    if config[:proxy_auth]
      headers["x-ops-request-source"] = "web"
    end

    if config[:pretty]
      chef_rest = RawInputServerAPI.new
      result = chef_rest.request(method, name_args[0], headers, data)
      unless result.is_a?(String)
        result = Chef::JSONCompat.to_json_pretty(result)
      end
    else
      chef_rest = RawInputServerAPI.new(:raw_output => true)
      result = chef_rest.request(method, name_args[0], headers, data)
    end
    output result
  rescue Timeout::Error => e
    ui.error "Server timeout"
    exit 1
  rescue Net::HTTPServerException => e
    ui.error "Server responded with error #{e.response.code} \"#{e.response.message}\""
    ui.error "Error Body: #{e.response.body}" if e.response.body && e.response.body != ""
    exit 1
  end
end