Sha256: 162dc96dc5360ab7dcf15fb8545cd9b082316d2bff0c2626e730b1981b477292

Contents?: true

Size: 1.17 KB

Versions: 5

Compression:

Stored size: 1.17 KB

Contents

module Fog
  module Rackspace
    module Errors

      def self.included(mod)
        mod.class_eval <<-'EOS', __FILE__, __LINE__
          class NotFound < Fog::Service::NotFound
            attr_reader :region, :status_code, :transaction_id

            def to_s
              status = status_code ? "HTTP #{status_code}" : "HTTP <Unknown>"
              message = region ? "resource not found in #{region} region" : super
              "[#{status} | #{transaction_id}] #{message}"
            end

            def self.slurp(error, service=nil)
              exception = NotFound.new
              exception.instance_variable_set(:@region, service.region) if service && service.respond_to?(:region)
              exception.instance_variable_set(:@status_code, error.response.status) rescue nil
              exception.set_transaction_id(error, service)
              exception
            end

            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

          end
        EOS
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
fog-1.22.0 lib/fog/rackspace/errors.rb
fog-1.21.0 lib/fog/rackspace/errors.rb
fog-maestrodev-1.20.0.20140305101839 lib/fog/rackspace/errors.rb
fog-maestrodev-1.20.0.20140305101305 lib/fog/rackspace/errors.rb
fog-1.20.0 lib/fog/rackspace/errors.rb