2011-08-31 16:52:53 -04:00
|
|
|
require(File.expand_path(File.join(File.dirname(__FILE__), 'core')))
|
2010-12-16 14:24:52 -05:00
|
|
|
|
2009-10-10 22:05:17 -04:00
|
|
|
module Fog
|
|
|
|
module Rackspace
|
2010-09-07 15:21:16 -04:00
|
|
|
extend Fog::Provider
|
|
|
|
|
2011-08-16 22:33:15 -04:00
|
|
|
module Errors
|
|
|
|
class ServiceError < Fog::Errors::Error
|
|
|
|
attr_reader :response_data
|
|
|
|
|
|
|
|
def self.slurp(error)
|
|
|
|
if error.response.body.empty?
|
|
|
|
data = nil
|
|
|
|
message = nil
|
|
|
|
else
|
|
|
|
data = MultiJson.decode(error.response.body)
|
|
|
|
message = data['message']
|
|
|
|
end
|
|
|
|
|
|
|
|
new_error = super(error, message)
|
|
|
|
new_error.instance_variable_set(:@response_data, data)
|
|
|
|
new_error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class InternalServerError < ServiceError; end
|
2011-08-27 18:46:15 -04:00
|
|
|
class Conflict < ServiceError; end
|
|
|
|
class NotFound < ServiceError; end
|
2011-08-27 22:06:46 -04:00
|
|
|
class ServiceUnavailable < ServiceError; end
|
2011-08-16 22:33:15 -04:00
|
|
|
|
|
|
|
class BadRequest < ServiceError
|
|
|
|
#TODO - Need to find a bette way to print out these validation errors when they are thrown
|
|
|
|
attr_reader :validation_errors
|
|
|
|
|
|
|
|
def self.slurp(error)
|
|
|
|
new_error = super(error)
|
|
|
|
unless new_error.response_data.nil?
|
|
|
|
new_error.instance_variable_set(:@validation_errors, new_error.response_data['validationErrors'])
|
|
|
|
end
|
|
|
|
new_error
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-08-24 15:22:49 -04:00
|
|
|
service(:cdn, 'rackspace/cdn')
|
2011-08-24 21:16:01 -04:00
|
|
|
service(:compute, 'rackspace/compute')
|
2011-08-29 11:37:01 -04:00
|
|
|
service(:dns, 'rackspace/dns')
|
2011-08-24 15:12:29 -04:00
|
|
|
service(:storage, 'rackspace/storage')
|
|
|
|
service(:load_balancers, 'rackspace/load_balancers')
|
2010-09-07 15:21:16 -04:00
|
|
|
|
2011-09-12 11:01:48 -04:00
|
|
|
def self.authenticate(options, connection_options = {})
|
2010-08-19 15:28:10 -04:00
|
|
|
rackspace_auth_url = options[:rackspace_auth_url] || "auth.api.rackspacecloud.com"
|
2011-06-15 16:19:58 -04:00
|
|
|
url = rackspace_auth_url.match(/^https?:/) ? \
|
|
|
|
rackspace_auth_url : 'https://' + rackspace_auth_url
|
2011-07-01 16:04:42 -04:00
|
|
|
uri = URI.parse(url)
|
2011-09-12 11:01:48 -04:00
|
|
|
connection = Fog::Connection.new(url, false, connection_options)
|
2010-06-12 16:21:32 -04:00
|
|
|
@rackspace_api_key = options[:rackspace_api_key]
|
|
|
|
@rackspace_username = options[:rackspace_username]
|
2010-03-19 21:29:42 -04:00
|
|
|
response = connection.request({
|
2011-07-01 16:04:42 -04:00
|
|
|
:expects => [200, 204],
|
2010-03-19 21:29:42 -04:00
|
|
|
:headers => {
|
|
|
|
'X-Auth-Key' => @rackspace_api_key,
|
|
|
|
'X-Auth-User' => @rackspace_username
|
|
|
|
},
|
2011-07-01 16:04:42 -04:00
|
|
|
:host => uri.host,
|
2010-03-19 21:29:42 -04:00
|
|
|
:method => 'GET',
|
2011-07-01 16:04:42 -04:00
|
|
|
:path => (uri.path and not uri.path.empty?) ? uri.path : 'v1.0'
|
2010-03-19 21:29:42 -04:00
|
|
|
})
|
|
|
|
response.headers.reject do |key, value|
|
|
|
|
!['X-Server-Management-Url', 'X-Storage-Url', 'X-CDN-Management-Url', 'X-Auth-Token'].include?(key)
|
2009-11-08 01:29:25 -05:00
|
|
|
end
|
2009-10-10 22:05:17 -04:00
|
|
|
end
|
2011-09-16 23:46:22 -04:00
|
|
|
|
|
|
|
# CGI.escape, but without special treatment on spaces
|
|
|
|
def self.escape(str,extra_exclude_chars = '')
|
|
|
|
str.gsub(/([^a-zA-Z0-9_.-#{extra_exclude_chars}]+)/) do
|
|
|
|
'%' + $1.unpack('H2' * $1.bytesize).join('%').upcase
|
|
|
|
end
|
|
|
|
end
|
2009-10-10 22:05:17 -04:00
|
|
|
end
|
|
|
|
end
|