mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
114 lines
3.6 KiB
Ruby
114 lines
3.6 KiB
Ruby
require File.expand_path(File.join(File.dirname(__FILE__), '..', 'rackspace'))
|
|
|
|
module Fog
|
|
module Rackspace
|
|
class BlockStorage < Fog::Service
|
|
|
|
class ServiceError < Fog::Rackspace::Errors::ServiceError; end
|
|
class InternalServerError < Fog::Rackspace::Errors::InternalServerError; end
|
|
class BadRequest < Fog::Rackspace::Errors::BadRequest; end
|
|
|
|
DFW_ENDPOINT = 'https://dfw.blockstorage.api.rackspacecloud.com/v1'
|
|
LON_ENDPOINT = 'https://lon.blockstorage.api.rackspacecloud.com/v1'
|
|
ORD_ENDPOINT = 'https://ord.blockstorage.api.rackspacecloud.com/v1'
|
|
|
|
requires :rackspace_api_key, :rackspace_username
|
|
recognizes :rackspace_auth_url
|
|
recognizes :rackspace_endpoint
|
|
|
|
model_path 'fog/rackspace/models/block_storage'
|
|
model :volume
|
|
collection :volumes
|
|
|
|
model :volume_type
|
|
collection :volume_types
|
|
model :snapshot
|
|
collection :snapshots
|
|
|
|
model :snapshot
|
|
collection :snapshots
|
|
|
|
request_path 'fog/rackspace/requests/block_storage'
|
|
request :create_volume
|
|
request :delete_volume
|
|
request :get_volume
|
|
request :list_volumes
|
|
|
|
request :get_volume_type
|
|
request :list_volume_types
|
|
|
|
request :create_snapshot
|
|
request :delete_snapshot
|
|
request :get_snapshot
|
|
request :list_snapshots
|
|
|
|
class Mock
|
|
def request(params)
|
|
Fog::Mock.not_implemented
|
|
end
|
|
end
|
|
|
|
class Real
|
|
def initialize(options = {})
|
|
@rackspace_api_key = options[:rackspace_api_key]
|
|
@rackspace_username = options[:rackspace_username]
|
|
@rackspace_auth_url = options[:rackspace_auth_url]
|
|
@rackspace_must_reauthenticate = false
|
|
@connection_options = options[:connection_options] || {}
|
|
|
|
endpoint = options[:rackspace_endpoint] || DFW_ENDPOINT
|
|
uri = URI.parse(endpoint)
|
|
|
|
@host = uri.host
|
|
@persistent = options[:persistent] || false
|
|
@path = uri.path
|
|
@port = uri.port
|
|
@scheme = uri.scheme
|
|
|
|
authenticate
|
|
|
|
@connection = Fog::Connection.new(uri.to_s, @persistent, @connection_options)
|
|
end
|
|
|
|
def request(params)
|
|
begin
|
|
response = @connection.request(params.merge!({
|
|
:headers => {
|
|
'Content-Type' => 'application/json',
|
|
'X-Auth-Token' => @auth_token
|
|
}.merge!(params[:headers] || {}),
|
|
:host => @host,
|
|
:path => "#{@path}/#{params[:path]}"
|
|
}))
|
|
rescue Excon::Errors::NotFound => error
|
|
raise NotFound.slurp error
|
|
rescue Excon::Errors::BadRequest => error
|
|
raise BadRequest.slurp error
|
|
rescue Excon::Errors::InternalServerError => error
|
|
raise InternalServerError.slurp error
|
|
rescue Excon::Errors::HTTPStatusError => error
|
|
raise ServiceError.slurp error
|
|
end
|
|
unless response.body.empty?
|
|
response.body = Fog::JSON.decode(response.body)
|
|
end
|
|
response
|
|
end
|
|
|
|
private
|
|
|
|
def authenticate
|
|
options = {
|
|
:rackspace_api_key => @rackspace_api_key,
|
|
:rackspace_username => @rackspace_username,
|
|
:rackspace_auth_url => @rackspace_auth_url
|
|
}
|
|
credentials = Fog::Rackspace.authenticate(options, @connection_options)
|
|
@auth_token = credentials['X-Auth-Token']
|
|
account_id = credentials['X-Server-Management-Url'].match(/.*\/([\d]+)$/)[1]
|
|
@path = "#{@path}/#{account_id}"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|