Class: Ridley::SandboxResource

Inherits:
Resource
  • Object
show all
Defined in:
lib/ridley/resources/sandbox_resource.rb

Instance Method Summary collapse

Methods inherited from Resource

#connection, #from_file, #from_json, #new, representation, represented_by, resource_path, set_resource_path

Constructor Details

#initialize(connection_registry, client_name, client_key, options = {}) ⇒ SandboxResource

Returns a new instance of SandboxResource.



8
9
10
11
12
# File 'lib/ridley/resources/sandbox_resource.rb', line 8

def initialize(connection_registry, client_name, client_key, options = {})
  super(connection_registry)
  options   = options.reverse_merge(pool_size: 4)
  @uploader = SandboxUploader.pool(size: options.delete(:pool_size), args: [ client_name, client_key, options ])
end

Instance Method Details

#all(*args) ⇒ Object



80
81
82
# File 'lib/ridley/resources/sandbox_resource.rb', line 80

def all(*args)
  abort RuntimeError.new("action not supported")
end

#commit(object) ⇒ Hash



44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/ridley/resources/sandbox_resource.rb', line 44

def commit(object)
  chef_id = object.respond_to?(:chef_id) ? object.chef_id : object
  request(:put, "#{self.class.resource_path}/#{chef_id}", JSON.fast_generate(is_completed: true))
rescue AbortError => ex
  case ex.cause
  when Ridley::Errors::HTTPBadRequest; abort Ridley::Errors::SandboxCommitError.new(ex.message)
  when Ridley::Errors::HTTPNotFound; abort Ridley::Errors::ResourceNotFound.new(ex.message)
  when Ridley::Errors::HTTPUnauthorized, Ridley::Errors::HTTPForbidden
    abort Ridley::Errors::PermissionDenied.new(ex.message)
  else; abort(ex.cause)
  end
end

#create(checksums = []) ⇒ Array<Ridley::SandboxResource>

Create a new Sandbox on the client’s Chef Server. A Sandbox requires an array of file checksums which lets the Chef Server know what the signature of the contents to be uploaded will look like.

Examples:

using the Ridley client to create a sandbox

client.sandbox.create([
  "385ea5490c86570c7de71070bce9384a",
  "f6f73175e979bd90af6184ec277f760c",
  "2e03dd7e5b2e6c8eab1cf41ac61396d5"
])

Parameters:

  • client (Ridley::Client)
  • checksums (Array) (defaults to: [])

    a hash of file checksums

Returns:



30
31
32
33
34
35
# File 'lib/ridley/resources/sandbox_resource.rb', line 30

def create(checksums = [])
  sumhash = { checksums: Hash.new }.tap do |chks|
    Array(checksums).each { |chk| chks[:checksums][chk] = nil }
  end
  new(request(:post, self.class.resource_path, JSON.fast_generate(sumhash)))
end

#delete(*args) ⇒ Object



88
89
90
# File 'lib/ridley/resources/sandbox_resource.rb', line 88

def delete(*args)
  abort RuntimeError.new("action not supported")
end

#delete_all(*args) ⇒ Object



92
93
94
# File 'lib/ridley/resources/sandbox_resource.rb', line 92

def delete_all(*args)
  abort RuntimeError.new("action not supported")
end

#find(*args) ⇒ Object



84
85
86
# File 'lib/ridley/resources/sandbox_resource.rb', line 84

def find(*args)
  abort RuntimeError.new("action not supported")
end

#update(*args) ⇒ Object



76
77
78
# File 'lib/ridley/resources/sandbox_resource.rb', line 76

def update(*args)
  abort RuntimeError.new("action not supported")
end

#upload(object, checksums) ⇒ Array<Hash>

Concurrently upload all of the files in the given sandbox

Examples:

SandboxUploader.upload(sandbox,
  "e5a0f6b48d0712382295ff30bec1f9cc" => "/Users/reset/code/rbenv-cookbook/recipes/default.rb",
  "de6532a7fbe717d52020dc9f3ae47dbe" => "/Users/reset/code/rbenv-cookbook/recipes/ohai_plugin.rb"
)

Parameters:

Returns:

  • (Array<Hash>)


70
71
72
73
74
# File 'lib/ridley/resources/sandbox_resource.rb', line 70

def upload(object, checksums)
  checksums.collect do |chk_id, path|
    uploader.future(:upload, object, chk_id, path)
  end.map(&:value)
end