Exception: Fog::Rackspace::Errors::ServiceError

Inherits:
Errors::Error
  • Object
show all
Defined in:
lib/fog/rackspace/core.rb

Instance Attribute Summary collapse

Attributes inherited from Errors::Error

#verbose

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#response_dataObject (readonly)

Returns the value of attribute response_data.



15
16
17
# File 'lib/fog/rackspace/core.rb', line 15

def response_data
  @response_data
end

#status_codeObject (readonly)

Returns the value of attribute status_code.



15
16
17
# File 'lib/fog/rackspace/core.rb', line 15

def status_code
  @status_code
end

#transaction_idObject (readonly)

Returns the value of attribute transaction_id.



15
16
17
# File 'lib/fog/rackspace/core.rb', line 15

def transaction_id
  @transaction_id
end

Class Method Details

.extract_message(data) ⇒ Object



53
54
55
56
57
58
59
# File 'lib/fog/rackspace/core.rb', line 53

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

.slurp(error, service = nil) ⇒ Object



22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/fog/rackspace/core.rb', line 22

def self.slurp(error, service=nil)
  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.set_transaction_id(error, service)
  new_error
end

Instance Method Details

#set_transaction_id(error, service) ⇒ Object



48
49
50
51
# File 'lib/fog/rackspace/core.rb', line 48

def set_transaction_id(error, service)
  return unless service && service.respond_to?(:request_id_header) && error.response
  @transaction_id = error.response.headers[service.request_id_header]
end

#to_sObject



17
18
19
20
# File 'lib/fog/rackspace/core.rb', line 17

def to_s
  status = status_code ? "HTTP #{status_code}" : "HTTP <Unknown>"
  "[#{status} | #{transaction_id}] #{super}"
end