Class: Xero::Api::FaradayMiddleware::RaiseHttpException

Inherits:
Faraday::Middleware
  • Object
show all
Defined in:
lib/xero/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/xero/api/raise_http_exception.rb', line 30

def initialize(app)
  super app
end

Instance Method Details

#call(env) ⇒ Object



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

def call(env)
  @app.call(env).on_complete do |response|
    case response.status
    when 200
    when 204
    when 400
      raise Xero::Api::BadRequest.new(error_message(response))
    when 401
      raise Xero::Api::Unauthorized.new(error_message(response))
    when 404
      raise Xero::Api::NotFound.new(error_message(response))
    when 412
      raise Xero::Api::PreconditionFailed.new(error_message(response))
    when 500
      raise Xero::Api::InternalError.new(error_message(response))
    when 501
      raise Xero::Api::NotImplemented.new(error_message(response))
    when 503
      raise Xero::Api::ServiceUnavailable.new(error_message(response))
    end
  end
end