Class: FaradayMiddleware::RaiseHttpException
- Inherits:
-
Faraday::Middleware
- Object
- Faraday::Middleware
- FaradayMiddleware::RaiseHttpException
- Defined in:
- lib/faraday/raise_http_exeption.rb
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#initialize(app) ⇒ RaiseHttpException
constructor
A new instance of RaiseHttpException.
Constructor Details
#initialize(app) ⇒ RaiseHttpException
Returns a new instance of RaiseHttpException.
26 27 28 29 |
# File 'lib/faraday/raise_http_exeption.rb', line 26 def initialize(app) super app @parser = nil end |
Instance Method Details
#call(env) ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# File 'lib/faraday/raise_http_exeption.rb', line 5 def call(env) @app.call(env).on_complete do |response| case response[:status].to_i when 400 raise Exchanges::BadRequest, (response) when 401 raise Exchanges::Unauthorized, (response) when 404 raise Exchanges::NotFound, (response) when 500 raise Exchanges::InternalServerError, (response, "Something is technically wrong.") when 502 raise Exchanges::BadGateway, (response, "The server returned an invalid or incomplete response.") when 503 raise Exchanges::ServiceUnavailable, (response, "Exchanges is rate limiting your requests.") when 504 raise Exchanges::GatewayTimeout, (response, "504 Gateway Time-out") end end end |