1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/compute/linode.rb

128 lines
3.5 KiB
Ruby
Raw Normal View History

module Fog
module Linode
class Compute < Fog::Service
requires :linode_api_key
recognizes :port, :scheme, :persistent
2011-01-07 21:14:39 -05:00
recognizes :provider # remove post deprecation
2011-01-07 19:52:09 -05:00
model_path 'fog/compute/models/linode'
2011-02-28 16:25:38 -05:00
model :flavor
collection :flavors
model :image
collection :images
model :server
collection :servers
2011-03-01 11:34:29 -05:00
model :kernel
collection :kernels
2011-03-01 12:00:48 -05:00
model :data_center
collection :data_centers
2011-03-01 16:37:27 -05:00
model :stack_script
collection :stack_scripts
model :ip
collection :ips
2011-01-07 19:52:09 -05:00
request_path 'fog/compute/requests/linode'
request :avail_datacenters
request :avail_distributions
request :avail_kernels
request :avail_linodeplans
request :avail_stackscripts
2011-03-01 16:37:27 -05:00
request :linode_boot
request :linode_ip_list
request :linode_ip_addprivate
request :linode_config_list
request :linode_create
request :linode_delete
request :linode_list
request :linode_reboot
2011-03-01 16:37:27 -05:00
request :linode_disk_create
request :linode_disk_createfromdistribution
request :linode_disk_createfromstackscript
request :linode_config_create
request :stackscript_list
# request :linode_resize
# request :linode_shutdown
2011-03-01 16:37:27 -05:00
request :linode_update
class Mock
def self.data
@data ||= Hash.new do |hash, key|
hash[key] = {}
end
end
2011-05-17 22:40:17 -04:00
def self.reset
@data = nil
end
def initialize(options={})
2011-01-07 21:14:39 -05:00
unless options.delete(:provider)
location = caller.first
warning = "[yellow][WARN] Fog::Linode::Compute.new is deprecated, use Fog::Compute.new(:provider => 'Linode') instead[/]"
warning << " [light_black](" << location << ")[/] "
Formatador.display_line(warning)
end
@linode_api_key = options[:linode_api_key]
2011-05-19 18:35:33 -04:00
end
def data
self.class.data[@linode_api_key]
end
def reset_data
self.class.data.delete(@linode_api_key)
end
end
class Real
def initialize(options={})
2011-01-07 21:14:39 -05:00
unless options.delete(:provider)
location = caller.first
warning = "[yellow][WARN] Fog::Linode::Compute.new is deprecated, use Fog::Compute.new(:provider => 'Linode') instead[/]"
warning << " [light_black](" << location << ")[/] "
Formatador.display_line(warning)
end
require 'json'
@linode_api_key = options[:linode_api_key]
@host = options[:host] || "api.linode.com"
@port = options[:port] || 443
@scheme = options[:scheme] || 'https'
@connection = Fog::Connection.new("#{@scheme}://#{@host}:#{@port}", options[:persistent])
end
def reload
@connection.reset
end
def request(params)
params[:query] ||= {}
params[:query].merge!(:api_key => @linode_api_key)
response = @connection.request(params.merge!({:host => @host}))
unless response.body.empty?
response.body = JSON.parse(response.body)
if data = response.body['ERRORARRAY'].first
error = case data['ERRORCODE']
when 5
Fog::Linode::Compute::NotFound
else
Fog::Linode::Compute::Error
end
raise error.new(data['ERRORMESSAGE'])
end
end
response
end
end
end
end
end