Class: Chef::Knife::SupermarketInstall
- Inherits:
-
Chef::Knife
- Object
- Chef::Knife
- Chef::Knife::SupermarketInstall
- Defined in:
- lib/chef/knife/supermarket_install.rb
Direct Known Subclasses
Constant Summary
Constants inherited from Chef::Knife
CHEF_ORGANIZATION_MANAGEMENT, OFFICIAL_PLUGINS, OPSCODE_HOSTED_CHEF_ACCESS_CONTROL
Instance Attribute Summary collapse
-
#cookbook_name ⇒ Object
readonly
Returns the value of attribute cookbook_name.
-
#vendor_path ⇒ Object
readonly
Returns the value of attribute vendor_path.
Attributes inherited from Chef::Knife
Instance Method Summary collapse
- #clear_existing_files(cookbook_path) ⇒ Object
- #convert_path(upstream_file) ⇒ Object
- #download_cookbook_to(download_path) ⇒ Object
- #extract_cookbook(upstream_file, version) ⇒ Object
- #parse_name_args! ⇒ Object
-
#preferred_metadata ⇒ Chef::Cookbook::Metadata
Get the preferred metadata path on disk.
- #run ⇒ Object
Methods inherited from Chef::Knife
#api_key, #apply_computed_config, category, chef_config_dir, #cli_keys, common_name, #config_file_settings, config_loader, #config_source, #configure_chef, #create_object, #delete_object, dependency_loaders, deps, #format_rest_error, guess_category, #humanize_exception, #humanize_http_exception, inherited, #initialize, list_commands, 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
Constructor Details
This class inherits a constructor from Chef::Knife
Instance Attribute Details
#cookbook_name ⇒ Object (readonly)
Returns the value of attribute cookbook_name.
69 70 71 |
# File 'lib/chef/knife/supermarket_install.rb', line 69 def cookbook_name @cookbook_name end |
#vendor_path ⇒ Object (readonly)
Returns the value of attribute vendor_path.
70 71 72 |
# File 'lib/chef/knife/supermarket_install.rb', line 70 def vendor_path @vendor_path end |
Instance Method Details
#clear_existing_files(cookbook_path) ⇒ Object
153 154 155 156 |
# File 'lib/chef/knife/supermarket_install.rb', line 153 def clear_existing_files(cookbook_path) ui.info("Removing pre-existing version.") FileUtils.rmtree(cookbook_path) if File.directory?(cookbook_path) end |
#convert_path(upstream_file) ⇒ Object
158 159 160 161 162 163 164 165 |
# File 'lib/chef/knife/supermarket_install.rb', line 158 def convert_path(upstream_file) # converts a Windows path (C:\foo) to a mingw path (/c/foo) if ENV["MSYSTEM"] == "MINGW32" upstream_file.sub(/^([[:alpha:]]):/, '/\1') else Shellwords.escape upstream_file end end |
#download_cookbook_to(download_path) ⇒ Object
139 140 141 142 143 144 145 146 |
# File 'lib/chef/knife/supermarket_install.rb', line 139 def download_cookbook_to(download_path) downloader = Chef::Knife::CookbookSiteDownload.new downloader.config[:file] = download_path downloader.config[:supermarket_site] = config[:supermarket_site] downloader.name_args = name_args downloader.run downloader end |
#extract_cookbook(upstream_file, version) ⇒ Object
148 149 150 151 |
# File 'lib/chef/knife/supermarket_install.rb', line 148 def extract_cookbook(upstream_file, version) ui.info("Uncompressing #{@cookbook_name} version #{version}.") Mixlib::Archive.new(convert_path(upstream_file)).extract(@install_path, perms: false) end |
#parse_name_args! ⇒ Object
126 127 128 129 130 131 132 133 134 135 136 137 |
# File 'lib/chef/knife/supermarket_install.rb', line 126 def parse_name_args! if name_args.empty? ui.error("Please specify a cookbook to download and install.") exit 1 elsif name_args.size >= 2 unless name_args.last.match(/^(\d+)(\.\d+){1,2}$/) && name_args.size == 2 ui.error("Installing multiple cookbooks at once is not supported.") exit 1 end end name_args.first end |
#preferred_metadata ⇒ Chef::Cookbook::Metadata
Get the preferred metadata path on disk. Chef prefers the metadata.rb over the metadata.json.
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 |
# File 'lib/chef/knife/supermarket_install.rb', line 173 def md = Chef::Cookbook::Metadata.new rb = File.join(@install_path, @cookbook_name, "metadata.rb") if File.exist?(rb) md.from_file(rb) return md end json = File.join(@install_path, @cookbook_name, "metadata.json") if File.exist?(json) json = IO.read(json) md.from_json(json) return md end raise Chef::Exceptions::MetadataNotFound.new(@install_path, @cookbook_name) end |
#run ⇒ Object
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 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
# File 'lib/chef/knife/supermarket_install.rb', line 72 def run if config[:cookbook_path] Chef::Config[:cookbook_path] = config[:cookbook_path] else config[:cookbook_path] = Chef::Config[:cookbook_path] end @cookbook_name = parse_name_args! # Check to ensure we have a valid source of cookbooks before continuing # @install_path = File.(Array(config[:cookbook_path]).first) ui.info "Installing #{@cookbook_name} to #{@install_path}" @repo = CookbookSCMRepo.new(@install_path, ui, config) # cookbook_path = File.join(vendor_path, name_args[0]) upstream_file = File.join(@install_path, "#{@cookbook_name}.tar.gz") @repo.sanity_check unless config[:use_current_branch] @repo.reset_to_default_state @repo.prepare_to_import(@cookbook_name) end downloader = download_cookbook_to(upstream_file) clear_existing_files(File.join(@install_path, @cookbook_name)) extract_cookbook(upstream_file, downloader.version) # TODO: it'd be better to store these outside the cookbook repo and # keep them around, e.g., in ~/Library/Caches on OS X. ui.info("Removing downloaded tarball") File.unlink(upstream_file) if @repo.finalize_updates_to(@cookbook_name, downloader.version) unless config[:use_current_branch] @repo.reset_to_default_state end @repo.merge_updates_from(@cookbook_name, downloader.version) else unless config[:use_current_branch] @repo.reset_to_default_state end end unless config[:no_deps] .dependencies.each_key do |cookbook| # Doesn't do versions.. yet nv = self.class.new nv.config = config nv.name_args = [ cookbook ] nv.run end end end |