mirror of
https://github.com/fog/fog.git
synced 2022-11-09 13:51:43 -05:00
d713739d97
Prevent an error in extracting the error message from the JSON response from discarding the successfully parsed JSON response body. For example, the parsed error response body from a failed PUT request to store a SLO manifest object would be: { 'Errors' => [['path', 'error'], ['path', 'error']] }
128 lines
4.7 KiB
Ruby
128 lines
4.7 KiB
Ruby
require 'fog/core'
|
|
require 'fog/rackspace/mock_data'
|
|
require 'fog/rackspace/service'
|
|
require 'fog/rackspace/errors'
|
|
|
|
module Fog
|
|
module Rackspace
|
|
extend Fog::Provider
|
|
|
|
US_AUTH_ENDPOINT = 'https://identity.api.rackspacecloud.com/v2.0' unless defined? US_AUTH_ENDPOINT
|
|
UK_AUTH_ENDPOINT = 'https://lon.identity.api.rackspacecloud.com/v2.0' unless defined? UK_AUTH_ENDPOINT
|
|
|
|
module Errors
|
|
class ServiceError < Fog::Errors::Error
|
|
attr_reader :response_data, :status_code
|
|
|
|
def to_s
|
|
status_code ? "[HTTP #{status_code}] #{super}" : super
|
|
end
|
|
|
|
def self.slurp(error)
|
|
data = nil
|
|
message = nil
|
|
status_code = nil
|
|
|
|
if error.response
|
|
status_code = error.response.status
|
|
unless error.response.body.empty?
|
|
begin
|
|
data = Fog::JSON.decode(error.response.body)
|
|
message = extract_message(data)
|
|
rescue => e
|
|
Fog::Logger.warning("Received exception '#{e}' while decoding>> #{error.response.body}")
|
|
message = error.response.body
|
|
data = error.response.body
|
|
end
|
|
end
|
|
end
|
|
|
|
new_error = super(error, message)
|
|
new_error.instance_variable_set(:@response_data, data)
|
|
new_error.instance_variable_set(:@status_code, status_code)
|
|
new_error
|
|
end
|
|
|
|
private
|
|
|
|
def self.extract_message(data)
|
|
if data.is_a?(Hash)
|
|
message = data.values.first['message'] if data.values.first.is_a?(Hash)
|
|
message ||= data['message']
|
|
end
|
|
message || data.inspect
|
|
end
|
|
end
|
|
|
|
class InternalServerError < ServiceError; end
|
|
class Conflict < ServiceError; end
|
|
class ServiceUnavailable < ServiceError; end
|
|
|
|
class BadRequest < ServiceError
|
|
#TODO - Need to find a better 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? or new_error.response_data['badRequest'].nil?
|
|
new_error.instance_variable_set(:@validation_errors, new_error.response_data['badRequest']['validationErrors'])
|
|
end
|
|
new_error
|
|
end
|
|
end
|
|
end
|
|
|
|
service(:block_storage, 'rackspace/block_storage', 'BlockStorage')
|
|
service(:cdn, 'rackspace/cdn', 'CDN')
|
|
service(:compute, 'rackspace/compute', 'Compute')
|
|
service(:compute_v2, 'rackspace/compute_v2', 'Compute v2')
|
|
service(:dns, 'rackspace/dns', 'DNS')
|
|
service(:storage, 'rackspace/storage', 'Storage')
|
|
service(:load_balancers, 'rackspace/load_balancers', 'LoadBalancers')
|
|
service(:identity, 'rackspace/identity', 'Identity')
|
|
service(:databases, 'rackspace/databases', 'Databases')
|
|
|
|
def self.authenticate(options, connection_options = {})
|
|
rackspace_auth_url = options[:rackspace_auth_url]
|
|
rackspace_auth_url ||= options[:rackspace_endpoint] == Fog::Compute::RackspaceV2::LON_ENDPOINT ? "lon.auth.api.rackspacecloud.com" : "auth.api.rackspacecloud.com"
|
|
url = rackspace_auth_url.match(/^https?:/) ? \
|
|
rackspace_auth_url : 'https://' + rackspace_auth_url
|
|
uri = URI.parse(url)
|
|
connection = Fog::Connection.new(url, false, connection_options)
|
|
@rackspace_api_key = options[:rackspace_api_key]
|
|
@rackspace_username = options[:rackspace_username]
|
|
response = connection.request({
|
|
:expects => [200, 204],
|
|
:headers => {
|
|
'X-Auth-Key' => @rackspace_api_key,
|
|
'X-Auth-User' => @rackspace_username
|
|
},
|
|
:host => uri.host,
|
|
:method => 'GET',
|
|
:path => (uri.path and not uri.path.empty?) ? uri.path : 'v1.0'
|
|
})
|
|
response.headers.reject do |key, value|
|
|
!['X-Server-Management-Url', 'X-Storage-Url', 'X-CDN-Management-Url', 'X-Auth-Token'].include?(key)
|
|
end
|
|
end
|
|
|
|
def self.json_response?(response)
|
|
return false unless response && response.headers
|
|
response.headers['Content-Type'] =~ %r{application/json}i ? true : false
|
|
end
|
|
|
|
def self.normalize_url(endpoint)
|
|
return nil unless endpoint
|
|
str = endpoint.chomp " "
|
|
str = str.chomp "/"
|
|
str.downcase
|
|
end
|
|
|
|
# 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
|
|
end
|
|
end
|