Parent

Methods

Included Modules

Files

Class/Module Index [+]

Quicksearch

Chef::Knife::CookbookSiteShare

Public Instance Methods

do_upload(cookbook_filename, cookbook_category, user_id, user_secret_filename) click to toggle source
# File lib/chef/knife/cookbook_site_share.rb, line 87
def do_upload(cookbook_filename, cookbook_category, user_id, user_secret_filename)
   uri = "http://cookbooks.opscode.com/api/v1/cookbooks"

   category_string = { 'category'=>cookbook_category }.to_json

   http_resp = Chef::CookbookSiteStreamingUploader.post(uri, user_id, user_secret_filename, {
     :tarball => File.open(cookbook_filename),
     :cookbook => category_string
   })

   res = Chef::JSONCompat.from_json(http_resp.body)
   if http_resp.code.to_i != 201
     if res['error_messages']
       if res['error_messages'][0] =~ /Version already exists/
         ui.error "The same version of this cookbook already exists on the Opscode Cookbook Site."
         exit(1)
       else
         ui.error "#{res['error_messages'][0]}"
         exit(1)
       end
     else
       ui.error "Unknown error while sharing cookbook"
       ui.error "Server response: #{http_resp.body}"
       exit(1)
     end
   end
   res
 end
run() click to toggle source
# File lib/chef/knife/cookbook_site_share.rb, line 43
def run
  if @name_args.length < 2
    show_usage
    ui.fatal("You must specify the cookbook name and the category you want to share this cookbook to.")
    exit 1
  end

  config[:cookbook_path] ||= Chef::Config[:cookbook_path]

  cookbook_name = @name_args[0]
  category = @name_args[1]
  cl = Chef::CookbookLoader.new(config[:cookbook_path])
  if cl.cookbook_exists?(cookbook_name)
    cookbook = cl[cookbook_name]
    Chef::CookbookUploader.new(cookbook,config[:cookbook_path]).validate_cookbooks
    tmp_cookbook_dir = Chef::CookbookSiteStreamingUploader.create_build_dir(cookbook)
    begin
      Chef::Log.debug("Temp cookbook directory is #{tmp_cookbook_dir.inspect}")
      ui.info("Making tarball #{cookbook_name}.tgz")
      shell_out!("tar -czf #{cookbook_name}.tgz #{cookbook_name}", :cwd => tmp_cookbook_dir)
    rescue => e
      ui.error("Error making tarball #{cookbook_name}.tgz: #{e.message}. Increase log verbosity (-VV) for more information.")
      Chef::Log.debug("\n#{e.backtrace.join("\n")}")
      exit(1)
    end

    begin
      do_upload("#{tmp_cookbook_dir}/#{cookbook_name}.tgz", category, Chef::Config[:node_name], Chef::Config[:client_key])
      ui.info("Upload complete!")
      Chef::Log.debug("Removing local staging directory at #{tmp_cookbook_dir}")
      FileUtils.rm_rf tmp_cookbook_dir
    rescue => e
      ui.error("Error uploading cookbook #{cookbook_name} to the Opscode Cookbook Site: #{e.message}. Increase log verbosity (-VV) for more information.")
      Chef::Log.debug("\n#{e.backtrace.join("\n")}")
      exit(1)
    end

  else
    ui.error("Could not find cookbook #{cookbook_name} in your cookbook path.")
    exit(1)
  end

end

[Validate]

Generated with the Darkfish Rdoc Generator 2.