Sha256: 4957a37e4bfb5c3027deecc446360489534a07194f201e1c86ce6cd730528f5f

Contents?: true

Size: 1.6 KB

Versions: 10

Compression:

Stored size: 1.6 KB

Contents

# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements.  See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.  The
# ASF licenses this file to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance with the
# License.  You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
# License for the specific language governing permissions and limitations
# under the License.

module Deltacloud::EC2
  module Errors

    def report_error(code)
      error = (request.env['sinatra.error'] || @exception)
      code = 500 if not code and not error.class.method_defined? :code
      Nokogiri::XML::Builder.new do |xml|
        xml.send(:Response) {
          xml.send(:Errors) {
            xml.send(:Code, error_for_code(code))
            xml.send(:Message, error.respond_to?(:message) ? error.message : '')
          }
          xml.send(:RequestID, request_id)
        }
      end.to_xml
    end

    def request_id
      Digest::MD5.hexdigest("#{request.env['REMOTE_ADDR']}#{request.env['HTTP_USER_AGENT']}#{Time.now.to_i}#{rand(250)}")
    end

    def error_for_code(code)
      case code
        when 401 then 'AuthFailure'
        when 500 then 'InternalError'
        else "Unavailable (#{code})"
      end
    end

  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
deltacloud-core-1.1.3 lib/ec2/helpers/errors.rb
deltacloud-core-1.1.2 lib/ec2/helpers/errors.rb
deltacloud-core-1.1.1 lib/ec2/helpers/errors.rb
deltacloud-core-1.1.0 lib/ec2/helpers/errors.rb
deltacloud-core-1.0.5 lib/ec2/helpers/errors.rb
deltacloud-core-1.0.4 lib/ec2/helpers/errors.rb
deltacloud-core-1.0.3 lib/ec2/helpers/errors.rb
deltacloud-core-1.0.2 lib/ec2/helpers/errors.rb
deltacloud-core-1.0.1 lib/ec2/helpers/errors.rb
deltacloud-core-1.0.0 lib/ec2/helpers/errors.rb