Class: Chef::Knife::CookbookShow

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

Instance Attribute Summary

Attributes inherited from Chef::Knife

#name_args, #ui

Instance Method Summary collapse

Methods inherited from Chef::Knife

#api_key, category, common_name, #configure_chef, #create_object, #delete_object, deps, #format_rest_error, guess_category, #highlight_config_error, #humanize_exception, #humanize_http_exception, inherited, #initialize, list_commands, load_commands, load_deps, msg, #noauth_rest, #parse_options, #read_config_file, reset_subcommands!, #rest, run, #run_with_pretty_exceptions, #server_url, #show_usage, snake_case_name, subcommand_category, subcommand_class_from, subcommand_loader, subcommands, subcommands_by_category, ui, unnamed?, #username

Methods included from Mixin::ConvertToClassName

#convert_to_class_name, #convert_to_snake_case, #filename_to_qualified_string, #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



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
90
91
92
93
94
95
# File 'lib/chef/knife/cookbook_show.rb', line 53

def run 
  case @name_args.length
  when 4 # We are showing a specific file
    node = Hash.new
    node[:fqdn] = config[:fqdn] if config.has_key?(:fqdn)
    node[:platform] = config[:platform] if config.has_key?(:platform)
    node[:platform_version] = config[:platform_version] if config.has_key?(:platform_version)

    class << node
      def attribute?(name)
        has_key?(name)
      end
    end

    cookbook_name, segment, filename = @name_args[0], @name_args[2], @name_args[3]
    cookbook_version = @name_args[1] == 'latest' ? '_latest' : @name_args[1]

    cookbook = rest.get_rest("cookbooks/#{cookbook_name}/#{cookbook_version}")
    manifest_entry = cookbook.preferred_manifest_record(node, segment, filename)
    temp_file = rest.get_rest(manifest_entry[:url], true)

    # the temp file is cleaned up elsewhere
    temp_file.open if temp_file.closed?
    pretty_print(temp_file.read)

  when 3 # We are showing a specific part of the cookbook
    cookbook_version = @name_args[1] == 'latest' ? '_latest' : @name_args[1]
    result = rest.get_rest("cookbooks/#{@name_args[0]}/#{cookbook_version}")
    output(result.manifest[@name_args[2]])
  when 2 # We are showing the whole cookbook data
    cookbook_version = @name_args[1] == 'latest' ? '_latest' : @name_args[1]
    output(rest.get_rest("cookbooks/#{@name_args[0]}/#{cookbook_version}"))
  when 1 # We are showing the cookbook versions (all of them)
    cookbook_name = @name_args[0]
    env           = config[:environment]
    api_endpoint  = env ? "environments/#{env}/cookbooks/#{cookbook_name}" : "cookbooks/#{cookbook_name}"
    output(format_cookbook_list_for_display(rest.get_rest(api_endpoint)))
  when 0
    show_usage
    ui.fatal("You must specify a cookbook name")
    exit 1
  end
end