Sha256: c7c52afacb7ac3159837f143d5a20e00e73bd685713d76852c7e06959284cf3e

Contents?: true

Size: 1.55 KB

Versions: 1

Compression:

Stored size: 1.55 KB

Contents

require 'faraday'

# @private
module FaradayMiddleware
  # @private
  class RaiseHttpException < Faraday::Middleware
    def call(env)
      @app.call(env).on_complete do |response|
        case response[:status].to_i
        when 400
          raise Rhymba::BadRequest, error_message_400(response)
        when 404
          raise Rhymba::NotFound, error_message_400(response)
        when 500
          raise Rhymba::InternalServerError, error_message_500(response, "Something is technically wrong.")
        when 503
          raise Rhymba::ServiceUnavailable, error_message_500(response, "Rhymba is rate limiting your requests.")
        end
      end
    end

    def initialize(app)
      super app
      @parser = nil
    end

    private

    def error_message_400(response)
      "#{response[:method].to_s.upcase} #{response[:url].to_s}: #{response[:status]}#{error_body(response[:body])}"
    end

    def error_body(body)
      # body gets passed as a string, not sure if it is passed as something else from other spots?
      if not body.nil? and not body.empty? and body.kind_of?(String)
        # removed multi_json thanks to wesnolte's commit
        body = ::JSON.parse(body)
      end

      if body.nil?
        nil
      elsif body['meta'] and body['meta']['error_message'] and not body['meta']['error_message'].empty?
        ": #{body['meta']['error_message']}"
      end
    end

    def error_message_500(response, body=nil)
      "#{response[:method].to_s.upcase} #{response[:url].to_s}: #{[response[:status].to_s + ':', body].compact.join(' ')}"
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rhymba-api-0.0.1 lib/faraday/raise_http_exception.rb