Class: DPL::Provider::ChefSupermarket

Inherits:
DPL::Provider show all
Defined in:
lib/dpl/provider/chef_supermarket.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#cookbookObject (readonly)

Returns the value of attribute cookbook.



10
11
12
# File 'lib/dpl/provider/chef_supermarket.rb', line 10

def cookbook
  @cookbook
end

#cookbook_categoryObject (readonly)



9
10
11
# File 'lib/dpl/provider/chef_supermarket.rb', line 9

def cookbook_category
  @cookbook_category
end

#cookbook_nameObject (readonly)



9
10
11
# File 'lib/dpl/provider/chef_supermarket.rb', line 9

def cookbook_name
  @cookbook_name
end

Instance Method Details

#check_appObject



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# File 'lib/dpl/provider/chef_supermarket.rb', line 23

def check_app
  @cookbook_name = options[:name] || options[:cookbook_name] || options[:app]
  @cookbook_category = options[:category] || options[:cookbook_category]
  unless cookbook_category
    error "Missing cookbook_category option\n" +
      "see https://docs.getchef.com/knife_cookbook_site.html#id12"
  end

  log "Validating cookbook #{cookbook_name}"
  # Check that cookbook exist and is valid
  # So we assume cookbook path is '..'
  cl = ::Chef::CookbookLoader.new '..'
  @cookbook = cl[cookbook_name]
  ::Chef::CookbookUploader.new(cookbook, '..').validate_cookbooks
end

#check_authObject



16
17
18
19
20
21
# File 'lib/dpl/provider/chef_supermarket.rb', line 16

def check_auth
  error "Missing user_id option" unless options[:user_id]
  error "Missing client_key option" unless options[:client_key]
  ::Chef::Config[:client_key] = options[:client_key]
  error "#{options[:client_key]} does not exist" unless ::File.exist?(options[:client_key])
end

#needs_key?Boolean

Returns:

  • (Boolean)


12
13
14
# File 'lib/dpl/provider/chef_supermarket.rb', line 12

def needs_key?
  false
end

#push_appObject



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# File 'lib/dpl/provider/chef_supermarket.rb', line 39

def push_app
  log "Creating cookbook build directory"
  tmp_cookbook_dir = Chef::CookbookSiteStreamingUploader.create_build_dir(cookbook)
  log "Making tarball in #{tmp_cookbook_dir}"
  system("tar -czf #{cookbook_name}.tgz #{cookbook_name}", :chdir => tmp_cookbook_dir)

  uri = "https://supermarket.chef.io/api/v1/cookbooks"

  log "Uploading to #{uri}"
  category_string = { 'category'=>cookbook_category }.to_json
  http_resp = ::Chef::CookbookSiteStreamingUploader.post(
    uri,
    options[:user_id],
    options[:client_key],
    {
      :tarball => File.open("#{tmp_cookbook_dir}/#{cookbook_name}.tgz"),
      :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/
        error "The same version of this cookbook already exists on the Opscode Cookbook Site."
      else
        error "#{res['error_messages'][0]}"
      end
    else
      error "Unknown error while sharing cookbook\n" +
        "Server response: #{http_resp.body}"
    end
  end

  log "Upload complete."
  ::FileUtils.rm_rf tmp_cookbook_dir
end