Class: Fog::Compute::DigitalOcean::Servers

Inherits:
Fog::Collection show all
Defined in:
lib/fog/digitalocean/models/compute/servers.rb

Instance Attribute Summary

Attributes inherited from Fog::Collection

#service

Instance Method Summary collapse

Methods inherited from Fog::Collection

#clear, #create, #destroy, #initialize, #inspect, #load, model, #model, #new, #reload, #table, #to_json

Methods included from Attributes::ClassMethods

#_load, #aliases, #attribute, #attributes, #identity, #ignore_attributes, #ignored_attributes

Methods included from Fog::Core::DeprecatedConnectionAccessors

#connection, #connection=, #prepare_service_value

Methods included from Attributes::InstanceMethods

#_dump, #attributes, #dup, #identity, #identity=, #merge_attributes, #new_record?, #persisted?, #requires, #requires_one

Constructor Details

This class inherits a constructor from Fog::Collection

Instance Method Details

#all(filters = {}) ⇒ Object



12
13
14
15
# File 'lib/fog/digitalocean/models/compute/servers.rb', line 12

def all(filters = {})
  data = service.list_servers.body['droplets']
  load(data)
end

#bootstrap(new_attributes = {}) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/fog/digitalocean/models/compute/servers.rb', line 17

def bootstrap(new_attributes = {})
  server = new(new_attributes)

  check_keys(new_attributes)

  credential = Fog.respond_to?(:credential) && Fog.credential || :default
  name       = "fog_#{credential}"
  ssh_key    = service.ssh_keys.detect { |key| key.name == name }
  if ssh_key.nil?
    ssh_key = service.ssh_keys.create(
      :name        => name,
      :ssh_pub_key => (new_attributes[:public_key] || File.read(new_attributes[:public_key_path]))
    )
  end
  server.ssh_keys = [ssh_key]

  server.save
  server.wait_for { ready? }

  if new_attributes[:private_key]
    server.setup :key_data => [new_attributes[:private_key]]
  else
    server.setup :keys => [new_attributes[:private_key_path]]
  end

  server
end

#get(id) ⇒ Object



45
46
47
48
49
50
# File 'lib/fog/digitalocean/models/compute/servers.rb', line 45

def get(id)
  server = service.get_server_details(id).body['droplet']
  new(server) if server
rescue Fog::Errors::NotFound
  nil
end