Class: FaradayMiddleware::RaiseHttpException

Inherits:
Faraday::Middleware
  • Object
show all
Defined in:
lib/qbo_api/raise_http_exception.rb

Instance Method Summary collapse

Constructor Details

#initialize(app) ⇒ RaiseHttpException

Returns a new instance of RaiseHttpException.



30
31
32
# File 'lib/qbo_api/raise_http_exception.rb', line 30

def initialize(app)
  super app
end

Instance Method Details

#call(env) ⇒ Object



8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/qbo_api/raise_http_exception.rb', line 8

def call(env)
  @app.call(env).on_complete do |response|
    case response.status
    when 200
    when 400
      raise QboApi::BadRequest.new(error_message(response))
    when 401
      raise QboApi::Unauthorized.new(error_message(response))
    when 403
      raise QboApi::Forbidden.new(error_message(response))
    when 404
      raise QboApi::NotFound.new(error_message(response))
    when 429
      raise QboApi::TooManyRequests.new(error_message(response))
    when 500
      raise QboApi::InternalServerError.new(error_message(response))
    when 503
      raise QboApi::ServiceUnavailable.new(error_message(response))
    end
  end
end